export interface ToolCallPayload {
    type: "tool_call";
    /** Unique ID for this tool call */
    tool_call_id: string;
    /** Name of the tool to execute */
    tool_name: string;
    /** Parameters for tool execution */
    parameters: Record<string, unknown>;
}
