UNPKG

buroventures-harald-code-core

Version:

Harald Code Core - Core functionality for AI-powered coding assistant

13 lines (12 loc) 530 B
/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { ToolCallRequestInfo, ToolCallResponseInfo, ToolRegistry } from '../index.js'; import { Config } from '../config/config.js'; /** * Executes a single tool call non-interactively. * It does not handle confirmations, multiple calls, or live updates. */ export declare function executeToolCall(config: Config, toolCallRequest: ToolCallRequestInfo, toolRegistry: ToolRegistry, abortSignal?: AbortSignal): Promise<ToolCallResponseInfo>;