refactor(core): Centralize 'write_file' tool name (#10694)

This commit is contained in:
Abhi
2025-10-09 00:33:31 -04:00
committed by GitHub
parent 3ea5581ad7
commit 3d24575239
8 changed files with 24 additions and 16 deletions
+2 -2
View File
@@ -20,7 +20,7 @@ import {
EditTool,
MemoryTool,
ShellTool,
WriteFileTool,
WRITE_FILE_TOOL_NAME,
WebFetchTool,
WebSearchTool,
} from '@google/gemini-cli-core';
@@ -48,7 +48,7 @@ const WRITE_TOOLS = new Set([
EditTool.Name,
MemoryTool.Name,
ShellTool.Name,
WriteFileTool.Name,
WRITE_FILE_TOOL_NAME,
WebFetchTool.Name,
]);