fix node save errors (#303)

This commit is contained in:
Preston Rasmussen 2025-03-24 13:52:14 -04:00 committed by GitHub
parent f88093bbbe
commit 4e52c57675
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -30,10 +30,10 @@ EPISODIC_NODE_SAVE_BULK = """
"""
ENTITY_NODE_SAVE = """
MERGE (n:Entity {uuid: $uuid})
MERGE (n:Entity {uuid: $entity_data.uuid})
SET n:$($labels)
SET n = $entity_data
WITH n CALL db.create.setNodeVectorProperty(n, "name_embedding", $name_embedding)
WITH n CALL db.create.setNodeVectorProperty(n, "name_embedding", $entity_data.name_embedding)
RETURN n.uuid AS uuid"""
ENTITY_NODE_SAVE_BULK = """

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "graphiti-core"
version = "0.8.1"
version = "0.8.2"
description = "A temporal graph building library"
authors = [
"Paul Paliychuk <paul@getzep.com>",