Interface ChatCompletionChunk

interface ChatCompletionChunk {
    content: string;
    finishReason?: null | string;
    jobID: string;
    role?: string;
    tool_calls?: ToolCallDelta[];
    usage?: ChatTokenUsage;
}

Properties

content: string
finishReason?: null | string
jobID: string
role?: string
tool_calls?: ToolCallDelta[]

Tool call deltas streamed incrementally during function calling.