diff --git a/src/vs/workbench/contrib/void/browser/chatThreadService.ts b/src/vs/workbench/contrib/void/browser/chatThreadService.ts index af93090d..7b0fe613 100644 --- a/src/vs/workbench/contrib/void/browser/chatThreadService.ts +++ b/src/vs/workbench/contrib/void/browser/chatThreadService.ts @@ -638,8 +638,7 @@ class ChatThreadService extends Disposable implements IChatThreadService { - // TOOL_TODO!!!!!!!!! call the builtin versus the MCP tool here and stringify - + // TOOL_TODO!!!!!!!!! call the builtin versus the MCP tool here (finish filling in the comment below and replace it out with the tool call and stringify functions further below) // const isBuiltInTool = (toolNames as string[]).includes(toolName) // const callToolFn = (toolName: string, toolParams: BuiltinToolCallParams[ToolName]) => { // if (isBuiltInTool) { diff --git a/src/vs/workbench/contrib/void/common/mcpService.ts b/src/vs/workbench/contrib/void/common/mcpService.ts index a892aa39..f516822d 100644 --- a/src/vs/workbench/contrib/void/common/mcpService.ts +++ b/src/vs/workbench/contrib/void/common/mcpService.ts @@ -36,7 +36,7 @@ export interface IMCPService { getCurrentMCPToolNames(): InternalToolInfo[]; - // TOOL_TODO!!!! implement getMCPTools here, which gets merged with builtins in prompts + // TOOL_TODO!!!! implement getMCPTools here, which gets merged with builtins in prompts.ts. Should generally be the same shape as voidTools in prompts.ts. callMCPTool(toolData: MCPToolCallParams): Promise<{ result: MCPGenericToolResponse }>;