From 37edbd8c18c19d28c290f6dc2c5d54add0144479 Mon Sep 17 00:00:00 2001 From: matt korwel Date: Sun, 8 Jun 2025 19:07:25 -0700 Subject: Rollforward AST changes to unblock Sandboxing (#863) --- packages/core/src/config/config.ts | 2 -- 1 file changed, 2 deletions(-) (limited to 'packages/core/src/config/config.ts') 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 { registerCoreTool(ShellTool, config); registerCoreTool(MemoryTool); registerCoreTool(WebSearchTool, config); - registerCoreTool(CodeParserTool, targetDir, config); // Added CodeParserTool return (async () => { await registry.discoverTools(); return registry; -- cgit v1.2.3