feat: remove conversation_search from main agent default tools (#662)

Co-authored-by: Letta <noreply@letta.com>
This commit is contained in:
Sarah Wooders
2026-01-26 17:49:31 -08:00
committed by GitHub
parent 2edf2bd4b1
commit aa0f440657
2 changed files with 1 additions and 2 deletions

View File

@@ -136,7 +136,6 @@ export async function createAgent(
const defaultBaseTools = options.baseTools ?? [
baseMemoryTool,
"web_search",
"conversation_search",
"fetch_webpage",
];

View File

@@ -89,7 +89,7 @@ OPTIONS
--new Create new conversation (for concurrent sessions)
--new-agent Create new agent directly (skip profile selection)
--init-blocks <list> Comma-separated memory blocks to initialize when using --new-agent (e.g., "persona,skills")
--base-tools <list> Comma-separated base tools to attach when using --new-agent (e.g., "memory,web_search,conversation_search")
--base-tools <list> Comma-separated base tools to attach when using --new-agent (e.g., "memory,web_search,fetch_webpage")
-a, --agent <id> Use a specific agent ID
-n, --name <name> Resume agent by name (from pinned agents, case-insensitive)
-m, --model <id> Model ID or handle (e.g., "opus-4.5" or "anthropic/claude-opus-4-5")