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/core/src/config/config.ts | |
| parent | 152af28a347186517c46fc0d9ae88eb6fa883267 (diff) | |
Revert "Add batch editing capabilities to Edit Tool (#648)" (#857)
Diffstat (limited to 'packages/core/src/config/config.ts')
| -rw-r--r-- | packages/core/src/config/config.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/core/src/config/config.ts b/packages/core/src/config/config.ts index ff0547b7..4c8fad65 100644 --- a/packages/core/src/config/config.ts +++ b/packages/core/src/config/config.ts @@ -18,6 +18,7 @@ import { GrepTool } from '../tools/grep.js'; import { GlobTool } from '../tools/glob.js'; import { EditTool } from '../tools/edit.js'; import { ShellTool } from '../tools/shell.js'; +import { WriteFileTool } from '../tools/write-file.js'; import { WebFetchTool } from '../tools/web-fetch.js'; import { ReadManyFilesTool } from '../tools/read-many-files.js'; import { MemoryTool, setGeminiMdFilename } from '../tools/memoryTool.js'; @@ -343,6 +344,7 @@ export function createToolRegistry(config: Config): Promise<ToolRegistry> { registerCoreTool(GrepTool, targetDir); registerCoreTool(GlobTool, targetDir, config); registerCoreTool(EditTool, config); + registerCoreTool(WriteFileTool, config); registerCoreTool(WebFetchTool, config); registerCoreTool(ReadManyFilesTool, targetDir, config); registerCoreTool(ShellTool, config); |
