diff options
| author | Keith Ballinger <[email protected]> | 2025-06-06 22:54:37 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-06 22:54:37 -0700 |
| commit | 0c868746777e95255ce870aff4a61fb584d60a62 (patch) | |
| tree | 07fd51b91eee0df77d7014828308facaea03778f /packages/cli/src | |
| parent | 76ec9122c0dd36f0535a74c65811c0f7bd138f4d (diff) | |
Add batch editing capabilities to Edit Tool (#648)
Co-authored-by: N. Taylor Mullen <[email protected]>
Diffstat (limited to 'packages/cli/src')
| -rw-r--r-- | packages/cli/src/gemini.tsx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/packages/cli/src/gemini.tsx b/packages/cli/src/gemini.tsx index f3b912bf..627f2915 100644 --- a/packages/cli/src/gemini.tsx +++ b/packages/cli/src/gemini.tsx @@ -29,7 +29,6 @@ import { ShellTool, WebFetchTool, WebSearchTool, - WriteFileTool, } from '@gemini-code/core'; export async function main() { @@ -167,14 +166,13 @@ 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, WriteFileTool.Name]; + const interactiveTools = [ShellTool.Name, EditTool.Name]; const nonInteractiveTools = existingCoreTools.filter( (tool) => !interactiveTools.includes(tool), ); |
