From 0c868746777e95255ce870aff4a61fb584d60a62 Mon Sep 17 00:00:00 2001 From: Keith Ballinger Date: Fri, 6 Jun 2025 22:54:37 -0700 Subject: Add batch editing capabilities to Edit Tool (#648) Co-authored-by: N. Taylor Mullen --- packages/cli/src/gemini.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'packages/cli/src') 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), ); -- cgit v1.2.3