fix: Syntax error on node crud (#119)

This commit is contained in:
Pavlo Paliychuk 2024-09-17 12:19:20 -04:00 committed by GitHub
parent 19a6ebc6fe
commit ebb1ec2463
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View file

@ -175,7 +175,7 @@ class EpisodicNode(Node):
e.valid_at AS valid_at,
e.uuid AS uuid,
e.name AS name,
e.group_id AS group_id
e.group_id AS group_id,
e.source_description AS source_description,
e.source AS source
""",
@ -230,7 +230,7 @@ class EntityNode(Node):
n.uuid As uuid,
n.name AS name,
n.name_embedding AS name_embedding,
n.group_id AS group_id
n.group_id AS group_id,
n.created_at AS created_at,
n.summary AS summary
""",
@ -307,7 +307,7 @@ class CommunityNode(Node):
n.uuid As uuid,
n.name AS name,
n.name_embedding AS name_embedding,
n.group_id AS group_id
n.group_id AS group_id,
n.created_at AS created_at,
n.summary AS summary
""",
@ -329,7 +329,7 @@ class CommunityNode(Node):
n.uuid As uuid,
n.name AS name,
n.name_embedding AS name_embedding,
n.group_id AS group_id
n.group_id AS group_id,
n.created_at AS created_at,
n.summary AS summary
""",

View file

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