Fix missing default None for add_episode_bulk (#101)
Fix missing default None for add_episode and add_episode_bulk --- For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/getzep/graphiti?shareId=XXXX-XXXX-XXXX-XXXX).
This commit is contained in:
parent
1a447d75a2
commit
3f12254916
1 changed files with 1 additions and 1 deletions
|
|
@ -412,7 +412,7 @@ class Graphiti:
|
|||
except Exception as e:
|
||||
raise e
|
||||
|
||||
async def add_episode_bulk(self, bulk_episodes: list[RawEpisode], group_id: str | None):
|
||||
async def add_episode_bulk(self, bulk_episodes: list[RawEpisode], group_id: str | None = None):
|
||||
"""
|
||||
Process multiple episodes in bulk and update the graph.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue