fix: dedupe

This commit is contained in:
cpacker
2025-11-24 11:05:18 -08:00
parent f2ed25bfeb
commit c4a1ceb4e8
2 changed files with 22 additions and 43 deletions

View File

@@ -46,7 +46,7 @@ export function getInternalToolName(serverName: string): string {
return serverName;
}
const ANTHROPIC_DEFAULT_TOOLS: ToolName[] = [
export const ANTHROPIC_DEFAULT_TOOLS: ToolName[] = [
"Bash",
"BashOutput",
"Edit",
@@ -61,7 +61,7 @@ const ANTHROPIC_DEFAULT_TOOLS: ToolName[] = [
"Write",
];
const OPENAI_DEFAULT_TOOLS: ToolName[] = [
export const OPENAI_DEFAULT_TOOLS: ToolName[] = [
"shell_command",
"shell",
"read_file",
@@ -71,7 +71,7 @@ const OPENAI_DEFAULT_TOOLS: ToolName[] = [
"update_plan",
];
const GEMINI_DEFAULT_TOOLS: ToolName[] = [
export const GEMINI_DEFAULT_TOOLS: ToolName[] = [
"run_shell_command",
"read_file_gemini",
"list_directory",