version: v0.3.4.dev3
This commit is contained in:
parent
f58ba86e7c
commit
236a84dd65
4 changed files with 4 additions and 3 deletions
|
|
@ -193,7 +193,7 @@ export default function Notebook({ notebook, updateNotebook, runCell }: Notebook
|
|||
output: <CellResult content={cell.result} />
|
||||
</div>
|
||||
)}
|
||||
{cell.error && (
|
||||
{!!cell.error?.length && (
|
||||
<div className="px-2 py-2">
|
||||
error: {cell.error}
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@ async def save_data_item_to_storage(data_item: Union[BinaryIO, str, Any]) -> str
|
|||
abs_path.is_file()
|
||||
except (OSError, ValueError):
|
||||
# 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}")
|
||||
abs_path = Path("")
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
[project]
|
||||
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."
|
||||
authors = [
|
||||
{ name = "Vasilije Markovic" },
|
||||
|
|
|
|||
2
uv.lock
generated
2
uv.lock
generated
|
|
@ -811,7 +811,7 @@ wheels = [
|
|||
|
||||
[[package]]
|
||||
name = "cognee"
|
||||
version = "0.3.4.dev2"
|
||||
version = "0.3.4.dev3"
|
||||
source = { editable = "." }
|
||||
dependencies = [
|
||||
{ name = "aiofiles" },
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue