diff options
| author | matt korwel <[email protected]> | 2025-06-08 19:07:25 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-08 19:07:25 -0700 |
| commit | 37edbd8c18c19d28c290f6dc2c5d54add0144479 (patch) | |
| tree | e044d0c06c53799b005c3fa6190ed109c6033103 /packages/core/src/config | |
| parent | ccdd1df03935163d5fa39a36873a50c33c17b3a6 (diff) | |
Rollforward AST changes to unblock Sandboxing (#863)
Diffstat (limited to 'packages/core/src/config')
| -rw-r--r-- | packages/core/src/config/config.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/packages/core/src/config/config.ts b/packages/core/src/config/config.ts index 4c8fad65..80446848 100644 --- a/packages/core/src/config/config.ts +++ b/packages/core/src/config/config.ts @@ -11,7 +11,6 @@ import process from 'node:process'; import * as os from 'node:os'; import { ContentGeneratorConfig } from '../core/contentGenerator.js'; import { ToolRegistry } from '../tools/tool-registry.js'; -import { CodeParserTool } from '../tools/code_parser.js'; // Added CodeParserTool import { LSTool } from '../tools/ls.js'; import { ReadFileTool } from '../tools/read-file.js'; import { GrepTool } from '../tools/grep.js'; @@ -350,7 +349,6 @@ export function createToolRegistry(config: Config): Promise<ToolRegistry> { registerCoreTool(ShellTool, config); registerCoreTool(MemoryTool); registerCoreTool(WebSearchTool, config); - registerCoreTool(CodeParserTool, targetDir, config); // Added CodeParserTool return (async () => { await registry.discoverTools(); return registry; |
