4 lines
198 B
TypeScript
4 lines
198 B
TypeScript
import { ToolContext } from './context';
|
|
export declare const ALL_TOOLS: any[];
|
|
export declare function executeTool(name: string, args: Record<string, unknown>, ctx: ToolContext): Promise<unknown>;
|