get_nodes_and_edges_by_episode (#292)

update name
This commit is contained in:
Preston Rasmussen 2025-03-13 15:50:03 -04:00 committed by GitHub
parent daf14a6509
commit dff0b3c42e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -707,7 +707,7 @@ class Graphiti:
bfs_origin_node_uuids,
)
async def nodes_and_edges_by_episode(self, episode_uuids: list[str]) -> SearchResults:
async def get_nodes_and_edges_by_episode(self, episode_uuids: list[str]) -> SearchResults:
episodes = await EpisodicNode.get_by_uuids(self.driver, episode_uuids)
edges_list = await semaphore_gather(

View file

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