version: v0.3.4.dev3

This commit is contained in:
Boris Arzentar 2025-09-18 18:08:22 +02:00
parent f58ba86e7c
commit 236a84dd65
No known key found for this signature in database
GPG key ID: D5CC274C784807B7
4 changed files with 4 additions and 3 deletions

View file

@ -193,7 +193,7 @@ export default function Notebook({ notebook, updateNotebook, runCell }: Notebook
output: <CellResult content={cell.result} /> output: <CellResult content={cell.result} />
</div> </div>
)} )}
{cell.error && ( {!!cell.error?.length && (
<div className="px-2 py-2"> <div className="px-2 py-2">
error: {cell.error} error: {cell.error}
</div> </div>

View file

@ -41,6 +41,7 @@ async def save_data_item_to_storage(data_item: Union[BinaryIO, str, Any]) -> str
abs_path.is_file() abs_path.is_file()
except (OSError, ValueError): except (OSError, ValueError):
# In case file path is too long it's most likely not a relative path # In case file path is too long it's most likely not a relative path
abs_path = data_item
logger.debug(f"Data item was too long to be a possible file path: {abs_path}") logger.debug(f"Data item was too long to be a possible file path: {abs_path}")
abs_path = Path("") abs_path = Path("")

View file

@ -1,7 +1,7 @@
[project] [project]
name = "cognee" name = "cognee"
version = "0.3.4.dev2" version = "0.3.4.dev3"
description = "Cognee - is a library for enriching LLM context with a semantic layer for better understanding and reasoning." description = "Cognee - is a library for enriching LLM context with a semantic layer for better understanding and reasoning."
authors = [ authors = [
{ name = "Vasilije Markovic" }, { name = "Vasilije Markovic" },

2
uv.lock generated
View file

@ -811,7 +811,7 @@ wheels = [
[[package]] [[package]]
name = "cognee" name = "cognee"
version = "0.3.4.dev2" version = "0.3.4.dev3"
source = { editable = "." } source = { editable = "." }
dependencies = [ dependencies = [
{ name = "aiofiles" }, { name = "aiofiles" },