@bobmatnyc/ai-code-review
Version:
A TypeScript-based tool for automated code reviews using AI models from Google Gemini, Anthropic Claude, and OpenRouter
14 lines (13 loc) • 434 B
TypeScript
/**
* @fileoverview Tool executor for executing LLM tool calls
*
* This module provides utilities to execute tool calls from LLMs
* and return the results.
*/
/**
* Execute a tool call and return the result
* @param toolName The name of the tool to execute
* @param args The arguments for the tool
* @returns The result of the tool call
*/
export declare function executeToolCall(toolName: string, args: any): Promise<any>;