llmwire - v2.2.0
    Preparing search index...

    Interface ToolCallChunk

    One complete tool call, once its arguments have all arrived. Also listed on the done chunk.

    interface ToolCallChunk {
        modelUsed?: string;
        toolCall: ToolCall;
        type: "tool-call";
    }
    Index
    modelUsed?: string
    toolCall: ToolCall
    type: "tool-call"