interface ChoiceDelta {
    content?: string;
    extra?: Record<string, unknown>;
    role: ChatRole;
    toolCalls?: FunctionCall[];
}

Properties

content?: string
extra?: Record<string, unknown>
role: ChatRole
toolCalls?: FunctionCall[]