mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-07 08:26:15 +00:00
fix(pipecat): use client.add, memories.add was removed in supermemory 3.x
This commit is contained in:
parent
86c3ad69d1
commit
074549217a
1 changed files with 1 additions and 1 deletions
|
|
@ -179,7 +179,7 @@ class SupermemoryPipecatService(FrameProcessor):
|
|||
if self.session_id:
|
||||
add_params["custom_id"] = self.session_id
|
||||
|
||||
await self._supermemory_client.memories.add(**add_params)
|
||||
await self._supermemory_client.add(**add_params)
|
||||
|
||||
except Exception as e:
|
||||
logger.error(f"Error storing messages: {e}")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue