Interface ToolCall

interface ToolCall {
    id: string;
    type: "function";
    function: {
        name: string;
        arguments: string;
        execution_context: "frontend" | "backend";
    };
}

Properties

Properties

id: string
type: "function"
function: {
    name: string;
    arguments: string;
    execution_context: "frontend" | "backend";
}