Interface ToolCallRequest

Describes a request from the LLM to call a specific tool/function. ToolCallRequest

interface ToolCallRequest {
    id: string;
    name: string;
    arguments: Record<string, any>;
}

Properties

Properties

id: string
name: string
arguments: Record<string, any>