From 23229e2ab39dacd65009b69456a78bf69ee327c9 Mon Sep 17 00:00:00 2001 From: prestonrasmussen Date: Wed, 29 Oct 2025 09:35:36 -0400 Subject: [PATCH] update --- graphiti_core/driver/graph_operations/graph_operations.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/graphiti_core/driver/graph_operations/graph_operations.py b/graphiti_core/driver/graph_operations/graph_operations.py index 42e69f58..54a59053 100644 --- a/graphiti_core/driver/graph_operations/graph_operations.py +++ b/graphiti_core/driver/graph_operations/graph_operations.py @@ -82,7 +82,7 @@ class GraphOperationsInterface(BaseModel): batch_size: int = 100, ) -> dict[str, list[float]]: """ - Load embedding vectors for many nodes in batches. Mutates the provided node instances. + Load embedding vectors for many nodes in batches. """ raise NotImplementedError @@ -186,6 +186,6 @@ class GraphOperationsInterface(BaseModel): batch_size: int = 100, ) -> dict[str, list[float]]: """ - Load embedding vectors for many edges in batches. Mutates the provided edge instances. + Load embedding vectors for many edges in batches """ raise NotImplementedError