From 1ca9df0626aca328cc332af143741dd0a1b46f41 Mon Sep 17 00:00:00 2001 From: Kevin Lin Date: Mon, 8 Dec 2025 11:06:12 -0800 Subject: [PATCH] feat: Add `memory_apply_patch` to base tools (#6491) add memory apply patch --- letta/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/letta/constants.py b/letta/constants.py index 2c11d968..bc320934 100644 --- a/letta/constants.py +++ b/letta/constants.py @@ -93,7 +93,7 @@ SEND_MESSAGE_TOOL_NAME = "send_message" BASE_TOOLS = [SEND_MESSAGE_TOOL_NAME, "conversation_search", "archival_memory_insert", "archival_memory_search"] DEPRECATED_LETTA_TOOLS = ["archival_memory_insert", "archival_memory_search"] # Base memory tools CAN be edited, and are added by default by the server -BASE_MEMORY_TOOLS = ["core_memory_append", "core_memory_replace", "memory"] +BASE_MEMORY_TOOLS = ["core_memory_append", "core_memory_replace", "memory", "memory_apply_patch"] # New v2 collection of the base memory tools (effecitvely same as sleeptime set), to pair with memgpt_v2 prompt BASE_MEMORY_TOOLS_V2 = [ "memory_replace",