fix(pipecat): use client.add, memories.add was removed in supermemory 3.x

This commit is contained in:
Cintu07 2026-07-22 01:31:36 +05:30
parent 86c3ad69d1
commit 074549217a

View file

@ -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}")