interface ChoiceDelta {
    content?: string;
    role: ChatRole;
    toolCalls?: FunctionCallInfo<any, any>[];
}

Properties

content?: string
role: ChatRole
toolCalls?: FunctionCallInfo<any, any>[]