From 074549217afb8014f97f6231fa4a7ed4fea1a58f Mon Sep 17 00:00:00 2001 From: Cintu07 <178455858+Cintu07@users.noreply.github.com> Date: Wed, 22 Jul 2026 01:31:36 +0530 Subject: [PATCH] fix(pipecat): use client.add, memories.add was removed in supermemory 3.x --- packages/pipecat-sdk-python/src/supermemory_pipecat/service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/pipecat-sdk-python/src/supermemory_pipecat/service.py b/packages/pipecat-sdk-python/src/supermemory_pipecat/service.py index eb9d5fb6..fe1b0249 100644 --- a/packages/pipecat-sdk-python/src/supermemory_pipecat/service.py +++ b/packages/pipecat-sdk-python/src/supermemory_pipecat/service.py @@ -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}")