From 3a93ea2f3894d141fee2753a39c75ce8c483cdf8 Mon Sep 17 00:00:00 2001 From: Charles Packer Date: Thu, 12 Feb 2026 17:53:43 -0800 Subject: [PATCH] fix: drop conversation_search from default toolset (#946) Co-authored-by: Letta --- src/agent/defaults.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/agent/defaults.ts b/src/agent/defaults.ts index d7613c9..0ce5134 100644 --- a/src/agent/defaults.ts +++ b/src/agent/defaults.ts @@ -43,7 +43,7 @@ export const DEFAULT_AGENT_CONFIGS: Record = { name: "Incognito", description: INCOGNITO_DESCRIPTION, initBlocks: [], // No personal memory blocks - baseTools: ["web_search", "conversation_search", "fetch_webpage"], // No memory tool + baseTools: ["web_search", "fetch_webpage"], // No memory tool }, };