* Prepare code * Fix tests * As -> AS, remove trailing spaces * Enable more tests for FalkorDB * Fix more cypher queries * Return all created nodes and edges * Add Neo4j service to unit tests workflow - Introduced Neo4j as a service in the GitHub Actions workflow for unit tests. - Configured Neo4j with appropriate ports, authentication, and health checks. - Updated test steps to include waiting for Neo4j and running integration tests against it. - Set environment variables for Neo4j connection in both non-integration and integration test steps. * Update Neo4j authentication in unit tests workflow - Changed Neo4j authentication password from 'test' to 'testpass' in the GitHub Actions workflow. - Updated health check command to reflect the new password. - Ensured consistency across all test steps that utilize Neo4j credentials. * fix health check * Fix Neo4j integration tests in CI workflow Remove reference to non-existent test_neo4j_driver.py file from test command. Integration tests now run via parametrized tests using the drivers list. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com> * Add OPENAI_API_KEY to Neo4j integration tests Neo4j integration tests require OpenAI API access for LLM functionality. Add the secret environment variable to enable these tests to run properly. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com> * Fix Neo4j Cypher syntax error in BFS search queries Replace parameter substitution in relationship pattern ranges (*1..$depth) with direct string interpolation (*1..{bfs_max_depth}). Neo4j doesn't allow parameter maps in MATCH pattern ranges - they must be literal values. Fixed in both node_bfs_search and edge_bfs_search functions. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com> * Fix variable name mismatch in edge_bfs_search query Change relationship variable from 'r' to 'e' to match ENTITY_EDGE_RETURN constant expectations. The ENTITY_EDGE_RETURN constant references variable 'e' for relationships, but the query was using 'r', causing "Variable e not defined" errors. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com> * Isolate database tests in CI workflow - FalkorDB tests: Add DISABLE_NEO4J=1 and remove Neo4j env vars - Neo4j tests: Keep current setup without DISABLE_NEO4J flag This ensures proper test isolation where each test suite only runs against its intended database backend. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com> --------- Co-authored-by: Siddhartha Sahu <sid@kuzudb.com> Co-authored-by: Claude <noreply@anthropic.com>
486 lines
14 KiB
Python
486 lines
14 KiB
Python
"""
|
|
Copyright 2024, Zep Software, Inc.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
"""
|
|
|
|
import logging
|
|
from abc import ABC, abstractmethod
|
|
from datetime import datetime
|
|
from time import time
|
|
from typing import Any
|
|
from uuid import uuid4
|
|
|
|
from pydantic import BaseModel, Field
|
|
from typing_extensions import LiteralString
|
|
|
|
from graphiti_core.driver.driver import GraphDriver
|
|
from graphiti_core.embedder import EmbedderClient
|
|
from graphiti_core.errors import EdgeNotFoundError, GroupsEdgesNotFoundError
|
|
from graphiti_core.helpers import parse_db_date
|
|
from graphiti_core.models.edges.edge_db_queries import (
|
|
COMMUNITY_EDGE_RETURN,
|
|
ENTITY_EDGE_RETURN,
|
|
EPISODIC_EDGE_RETURN,
|
|
EPISODIC_EDGE_SAVE,
|
|
get_community_edge_save_query,
|
|
get_entity_edge_save_query,
|
|
)
|
|
from graphiti_core.nodes import Node
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class Edge(BaseModel, ABC):
|
|
uuid: str = Field(default_factory=lambda: str(uuid4()))
|
|
group_id: str = Field(description='partition of the graph')
|
|
source_node_uuid: str
|
|
target_node_uuid: str
|
|
created_at: datetime
|
|
|
|
@abstractmethod
|
|
async def save(self, driver: GraphDriver): ...
|
|
|
|
async def delete(self, driver: GraphDriver):
|
|
result = await driver.execute_query(
|
|
"""
|
|
MATCH (n)-[e:MENTIONS|RELATES_TO|HAS_MEMBER {uuid: $uuid}]->(m)
|
|
DELETE e
|
|
""",
|
|
uuid=self.uuid,
|
|
)
|
|
|
|
logger.debug(f'Deleted Edge: {self.uuid}')
|
|
|
|
return result
|
|
|
|
def __hash__(self):
|
|
return hash(self.uuid)
|
|
|
|
def __eq__(self, other):
|
|
if isinstance(other, Node):
|
|
return self.uuid == other.uuid
|
|
return False
|
|
|
|
@classmethod
|
|
async def get_by_uuid(cls, driver: GraphDriver, uuid: str): ...
|
|
|
|
|
|
class EpisodicEdge(Edge):
|
|
async def save(self, driver: GraphDriver):
|
|
result = await driver.execute_query(
|
|
EPISODIC_EDGE_SAVE,
|
|
episode_uuid=self.source_node_uuid,
|
|
entity_uuid=self.target_node_uuid,
|
|
uuid=self.uuid,
|
|
group_id=self.group_id,
|
|
created_at=self.created_at,
|
|
)
|
|
|
|
logger.debug(f'Saved edge to Graph: {self.uuid}')
|
|
|
|
return result
|
|
|
|
@classmethod
|
|
async def get_by_uuid(cls, driver: GraphDriver, uuid: str):
|
|
records, _, _ = await driver.execute_query(
|
|
"""
|
|
MATCH (n:Episodic)-[e:MENTIONS {uuid: $uuid}]->(m:Entity)
|
|
RETURN
|
|
"""
|
|
+ EPISODIC_EDGE_RETURN,
|
|
uuid=uuid,
|
|
routing_='r',
|
|
)
|
|
|
|
edges = [get_episodic_edge_from_record(record) for record in records]
|
|
|
|
if len(edges) == 0:
|
|
raise EdgeNotFoundError(uuid)
|
|
return edges[0]
|
|
|
|
@classmethod
|
|
async def get_by_uuids(cls, driver: GraphDriver, uuids: list[str]):
|
|
records, _, _ = await driver.execute_query(
|
|
"""
|
|
MATCH (n:Episodic)-[e:MENTIONS]->(m:Entity)
|
|
WHERE e.uuid IN $uuids
|
|
RETURN
|
|
"""
|
|
+ EPISODIC_EDGE_RETURN,
|
|
uuids=uuids,
|
|
routing_='r',
|
|
)
|
|
|
|
edges = [get_episodic_edge_from_record(record) for record in records]
|
|
|
|
if len(edges) == 0:
|
|
raise EdgeNotFoundError(uuids[0])
|
|
return edges
|
|
|
|
@classmethod
|
|
async def get_by_group_ids(
|
|
cls,
|
|
driver: GraphDriver,
|
|
group_ids: list[str],
|
|
limit: int | None = None,
|
|
uuid_cursor: str | None = None,
|
|
):
|
|
cursor_query: LiteralString = 'AND e.uuid < $uuid' if uuid_cursor else ''
|
|
limit_query: LiteralString = 'LIMIT $limit' if limit is not None else ''
|
|
|
|
records, _, _ = await driver.execute_query(
|
|
"""
|
|
MATCH (n:Episodic)-[e:MENTIONS]->(m:Entity)
|
|
WHERE e.group_id IN $group_ids
|
|
"""
|
|
+ cursor_query
|
|
+ """
|
|
RETURN
|
|
"""
|
|
+ EPISODIC_EDGE_RETURN
|
|
+ """
|
|
ORDER BY e.uuid DESC
|
|
"""
|
|
+ limit_query,
|
|
group_ids=group_ids,
|
|
uuid=uuid_cursor,
|
|
limit=limit,
|
|
routing_='r',
|
|
)
|
|
|
|
edges = [get_episodic_edge_from_record(record) for record in records]
|
|
|
|
if len(edges) == 0:
|
|
raise GroupsEdgesNotFoundError(group_ids)
|
|
return edges
|
|
|
|
|
|
class EntityEdge(Edge):
|
|
name: str = Field(description='name of the edge, relation name')
|
|
fact: str = Field(description='fact representing the edge and nodes that it connects')
|
|
fact_embedding: list[float] | None = Field(default=None, description='embedding of the fact')
|
|
episodes: list[str] = Field(
|
|
default=[],
|
|
description='list of episode ids that reference these entity edges',
|
|
)
|
|
expired_at: datetime | None = Field(
|
|
default=None, description='datetime of when the node was invalidated'
|
|
)
|
|
valid_at: datetime | None = Field(
|
|
default=None, description='datetime of when the fact became true'
|
|
)
|
|
invalid_at: datetime | None = Field(
|
|
default=None, description='datetime of when the fact stopped being true'
|
|
)
|
|
attributes: dict[str, Any] = Field(
|
|
default={}, description='Additional attributes of the edge. Dependent on edge name'
|
|
)
|
|
|
|
async def generate_embedding(self, embedder: EmbedderClient):
|
|
start = time()
|
|
|
|
text = self.fact.replace('\n', ' ')
|
|
self.fact_embedding = await embedder.create(input_data=[text])
|
|
|
|
end = time()
|
|
logger.debug(f'embedded {text} in {end - start} ms')
|
|
|
|
return self.fact_embedding
|
|
|
|
async def load_fact_embedding(self, driver: GraphDriver):
|
|
records, _, _ = await driver.execute_query(
|
|
"""
|
|
MATCH (n:Entity)-[e:RELATES_TO {uuid: $uuid}]->(m:Entity)
|
|
RETURN e.fact_embedding AS fact_embedding
|
|
""",
|
|
uuid=self.uuid,
|
|
routing_='r',
|
|
)
|
|
|
|
if len(records) == 0:
|
|
raise EdgeNotFoundError(self.uuid)
|
|
|
|
self.fact_embedding = records[0]['fact_embedding']
|
|
|
|
async def save(self, driver: GraphDriver):
|
|
edge_data: dict[str, Any] = {
|
|
'source_uuid': self.source_node_uuid,
|
|
'target_uuid': self.target_node_uuid,
|
|
'uuid': self.uuid,
|
|
'name': self.name,
|
|
'group_id': self.group_id,
|
|
'fact': self.fact,
|
|
'fact_embedding': self.fact_embedding,
|
|
'episodes': self.episodes,
|
|
'created_at': self.created_at,
|
|
'expired_at': self.expired_at,
|
|
'valid_at': self.valid_at,
|
|
'invalid_at': self.invalid_at,
|
|
}
|
|
|
|
edge_data.update(self.attributes or {})
|
|
|
|
result = await driver.execute_query(
|
|
get_entity_edge_save_query(driver.provider),
|
|
edge_data=edge_data,
|
|
)
|
|
|
|
logger.debug(f'Saved edge to Graph: {self.uuid}')
|
|
|
|
return result
|
|
|
|
@classmethod
|
|
async def get_by_uuid(cls, driver: GraphDriver, uuid: str):
|
|
records, _, _ = await driver.execute_query(
|
|
"""
|
|
MATCH (n:Entity)-[e:RELATES_TO {uuid: $uuid}]->(m:Entity)
|
|
RETURN
|
|
"""
|
|
+ ENTITY_EDGE_RETURN,
|
|
uuid=uuid,
|
|
routing_='r',
|
|
)
|
|
|
|
edges = [get_entity_edge_from_record(record) for record in records]
|
|
|
|
if len(edges) == 0:
|
|
raise EdgeNotFoundError(uuid)
|
|
return edges[0]
|
|
|
|
@classmethod
|
|
async def get_by_uuids(cls, driver: GraphDriver, uuids: list[str]):
|
|
if len(uuids) == 0:
|
|
return []
|
|
|
|
records, _, _ = await driver.execute_query(
|
|
"""
|
|
MATCH (n:Entity)-[e:RELATES_TO]->(m:Entity)
|
|
WHERE e.uuid IN $uuids
|
|
RETURN
|
|
"""
|
|
+ ENTITY_EDGE_RETURN,
|
|
uuids=uuids,
|
|
routing_='r',
|
|
)
|
|
|
|
edges = [get_entity_edge_from_record(record) for record in records]
|
|
|
|
return edges
|
|
|
|
@classmethod
|
|
async def get_by_group_ids(
|
|
cls,
|
|
driver: GraphDriver,
|
|
group_ids: list[str],
|
|
limit: int | None = None,
|
|
uuid_cursor: str | None = None,
|
|
with_embeddings: bool = False,
|
|
):
|
|
cursor_query: LiteralString = 'AND e.uuid < $uuid' if uuid_cursor else ''
|
|
limit_query: LiteralString = 'LIMIT $limit' if limit is not None else ''
|
|
with_embeddings_query: LiteralString = (
|
|
""",
|
|
e.fact_embedding AS fact_embedding
|
|
"""
|
|
if with_embeddings
|
|
else ''
|
|
)
|
|
|
|
records, _, _ = await driver.execute_query(
|
|
"""
|
|
MATCH (n:Entity)-[e:RELATES_TO]->(m:Entity)
|
|
WHERE e.group_id IN $group_ids
|
|
"""
|
|
+ cursor_query
|
|
+ """
|
|
RETURN
|
|
"""
|
|
+ ENTITY_EDGE_RETURN
|
|
+ with_embeddings_query
|
|
+ """
|
|
ORDER BY e.uuid DESC
|
|
"""
|
|
+ limit_query,
|
|
group_ids=group_ids,
|
|
uuid=uuid_cursor,
|
|
limit=limit,
|
|
routing_='r',
|
|
)
|
|
|
|
edges = [get_entity_edge_from_record(record) for record in records]
|
|
|
|
if len(edges) == 0:
|
|
raise GroupsEdgesNotFoundError(group_ids)
|
|
return edges
|
|
|
|
@classmethod
|
|
async def get_by_node_uuid(cls, driver: GraphDriver, node_uuid: str):
|
|
records, _, _ = await driver.execute_query(
|
|
"""
|
|
MATCH (n:Entity {uuid: $node_uuid})-[e:RELATES_TO]-(m:Entity)
|
|
RETURN
|
|
"""
|
|
+ ENTITY_EDGE_RETURN,
|
|
node_uuid=node_uuid,
|
|
routing_='r',
|
|
)
|
|
|
|
edges = [get_entity_edge_from_record(record) for record in records]
|
|
|
|
return edges
|
|
|
|
|
|
class CommunityEdge(Edge):
|
|
async def save(self, driver: GraphDriver):
|
|
result = await driver.execute_query(
|
|
get_community_edge_save_query(driver.provider),
|
|
community_uuid=self.source_node_uuid,
|
|
entity_uuid=self.target_node_uuid,
|
|
uuid=self.uuid,
|
|
group_id=self.group_id,
|
|
created_at=self.created_at,
|
|
)
|
|
|
|
logger.debug(f'Saved edge to Graph: {self.uuid}')
|
|
|
|
return result
|
|
|
|
@classmethod
|
|
async def get_by_uuid(cls, driver: GraphDriver, uuid: str):
|
|
records, _, _ = await driver.execute_query(
|
|
"""
|
|
MATCH (n:Community)-[e:HAS_MEMBER {uuid: $uuid}]->(m)
|
|
RETURN
|
|
"""
|
|
+ COMMUNITY_EDGE_RETURN,
|
|
uuid=uuid,
|
|
routing_='r',
|
|
)
|
|
|
|
edges = [get_community_edge_from_record(record) for record in records]
|
|
|
|
return edges[0]
|
|
|
|
@classmethod
|
|
async def get_by_uuids(cls, driver: GraphDriver, uuids: list[str]):
|
|
records, _, _ = await driver.execute_query(
|
|
"""
|
|
MATCH (n:Community)-[e:HAS_MEMBER]->(m)
|
|
WHERE e.uuid IN $uuids
|
|
RETURN
|
|
"""
|
|
+ COMMUNITY_EDGE_RETURN,
|
|
uuids=uuids,
|
|
routing_='r',
|
|
)
|
|
|
|
edges = [get_community_edge_from_record(record) for record in records]
|
|
|
|
return edges
|
|
|
|
@classmethod
|
|
async def get_by_group_ids(
|
|
cls,
|
|
driver: GraphDriver,
|
|
group_ids: list[str],
|
|
limit: int | None = None,
|
|
uuid_cursor: str | None = None,
|
|
):
|
|
cursor_query: LiteralString = 'AND e.uuid < $uuid' if uuid_cursor else ''
|
|
limit_query: LiteralString = 'LIMIT $limit' if limit is not None else ''
|
|
|
|
records, _, _ = await driver.execute_query(
|
|
"""
|
|
MATCH (n:Community)-[e:HAS_MEMBER]->(m)
|
|
WHERE e.group_id IN $group_ids
|
|
"""
|
|
+ cursor_query
|
|
+ """
|
|
RETURN
|
|
"""
|
|
+ COMMUNITY_EDGE_RETURN
|
|
+ """
|
|
ORDER BY e.uuid DESC
|
|
"""
|
|
+ limit_query,
|
|
group_ids=group_ids,
|
|
uuid=uuid_cursor,
|
|
limit=limit,
|
|
routing_='r',
|
|
)
|
|
|
|
edges = [get_community_edge_from_record(record) for record in records]
|
|
|
|
return edges
|
|
|
|
|
|
# Edge helpers
|
|
def get_episodic_edge_from_record(record: Any) -> EpisodicEdge:
|
|
return EpisodicEdge(
|
|
uuid=record['uuid'],
|
|
group_id=record['group_id'],
|
|
source_node_uuid=record['source_node_uuid'],
|
|
target_node_uuid=record['target_node_uuid'],
|
|
created_at=parse_db_date(record['created_at']), # type: ignore
|
|
)
|
|
|
|
|
|
def get_entity_edge_from_record(record: Any) -> EntityEdge:
|
|
edge = EntityEdge(
|
|
uuid=record['uuid'],
|
|
source_node_uuid=record['source_node_uuid'],
|
|
target_node_uuid=record['target_node_uuid'],
|
|
fact=record['fact'],
|
|
fact_embedding=record.get('fact_embedding'),
|
|
name=record['name'],
|
|
group_id=record['group_id'],
|
|
episodes=record['episodes'],
|
|
created_at=parse_db_date(record['created_at']), # type: ignore
|
|
expired_at=parse_db_date(record['expired_at']),
|
|
valid_at=parse_db_date(record['valid_at']),
|
|
invalid_at=parse_db_date(record['invalid_at']),
|
|
attributes=record['attributes'],
|
|
)
|
|
|
|
edge.attributes.pop('uuid', None)
|
|
edge.attributes.pop('source_node_uuid', None)
|
|
edge.attributes.pop('target_node_uuid', None)
|
|
edge.attributes.pop('fact', None)
|
|
edge.attributes.pop('name', None)
|
|
edge.attributes.pop('group_id', None)
|
|
edge.attributes.pop('episodes', None)
|
|
edge.attributes.pop('created_at', None)
|
|
edge.attributes.pop('expired_at', None)
|
|
edge.attributes.pop('valid_at', None)
|
|
edge.attributes.pop('invalid_at', None)
|
|
|
|
return edge
|
|
|
|
|
|
def get_community_edge_from_record(record: Any):
|
|
return CommunityEdge(
|
|
uuid=record['uuid'],
|
|
group_id=record['group_id'],
|
|
source_node_uuid=record['source_node_uuid'],
|
|
target_node_uuid=record['target_node_uuid'],
|
|
created_at=parse_db_date(record['created_at']), # type: ignore
|
|
)
|
|
|
|
|
|
async def create_entity_edge_embeddings(embedder: EmbedderClient, edges: list[EntityEdge]):
|
|
if len(edges) == 0:
|
|
return
|
|
fact_embeddings = await embedder.create_batch([edge.fact for edge in edges])
|
|
for edge, fact_embedding in zip(edges, fact_embeddings, strict=True):
|
|
edge.fact_embedding = fact_embedding
|