/** * Execution Tools Handler * * This module handles calls to execution-related tools. */ import { ToolCallResult } from '../../types/index.js'; /** * Handle execution tool calls * * @param toolName Name of the tool being called * @param args Arguments passed to the tool * @returns Tool call result */ export default function executionHandler(toolName: string, args: Record): Promise;