diff options
| author | N. Taylor Mullen <[email protected]> | 2025-06-08 16:20:43 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-08 23:20:43 +0000 |
| commit | d62dad5575a53b5bb8058509563502ca922a4fc5 (patch) | |
| tree | 0820928b5dc87ea9841b22d69efaa656c84ae679 /packages/cli/src/gemini.tsx | |
| parent | 152af28a347186517c46fc0d9ae88eb6fa883267 (diff) | |
Revert "Add batch editing capabilities to Edit Tool (#648)" (#857)
Diffstat (limited to 'packages/cli/src/gemini.tsx')
| -rw-r--r-- | packages/cli/src/gemini.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/cli/src/gemini.tsx b/packages/cli/src/gemini.tsx index 4f30e3da..01bbf73c 100644 --- a/packages/cli/src/gemini.tsx +++ b/packages/cli/src/gemini.tsx @@ -28,6 +28,7 @@ import { ShellTool, WebFetchTool, WebSearchTool, + WriteFileTool, } from '@gemini-cli/core'; export async function main() { @@ -155,13 +156,14 @@ async function loadNonInteractiveConfig( GrepTool.Name, GlobTool.Name, EditTool.Name, + WriteFileTool.Name, WebFetchTool.Name, WebSearchTool.Name, ReadManyFilesTool.Name, ShellTool.Name, MemoryTool.Name, ]; - const interactiveTools = [ShellTool.Name, EditTool.Name]; + const interactiveTools = [ShellTool.Name, EditTool.Name, WriteFileTool.Name]; const nonInteractiveTools = existingCoreTools.filter( (tool) => !interactiveTools.includes(tool), ); |
