From 709f4127adef41fa8e3fbcc26974d34c98d03acc Mon Sep 17 00:00:00 2001 From: Matthew Zhou Date: Fri, 20 Jun 2025 22:24:57 -0700 Subject: [PATCH] fix: Fix archival memories to only list agent passages (#2954) --- letta/services/tool_executor/core_tool_executor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/letta/services/tool_executor/core_tool_executor.py b/letta/services/tool_executor/core_tool_executor.py index fddd4c6f..11c487d0 100644 --- a/letta/services/tool_executor/core_tool_executor.py +++ b/letta/services/tool_executor/core_tool_executor.py @@ -143,7 +143,7 @@ class LettaCoreToolExecutor(ToolExecutor): try: # Get results using passage manager - all_results = await AgentManager().list_passages_async( + all_results = await AgentManager().list_agent_passages_async( actor=actor, agent_id=agent_state.id, query_text=query,