Interface CollectedResponse

interface CollectedResponse {
    extra: Record<string, unknown>;
    text: string;
    toolCalls: FunctionCall[];
    usage?: CompletionUsage;
}

Properties

extra: Record<string, unknown>

Provider-specific extra data accumulated across chunks (e.g., xAI encrypted reasoning, Google thought signatures).

text: string
toolCalls: FunctionCall[]