Interface ChatCompletionChunkDelta

interface ChatCompletionChunkDelta {
    content?: null | string;
    refusal?: null | string;
    role?: "assistant";
    tool_calls?: {
        function?: { arguments?: string; name?: string };
        id?: string;
        index: number;
        type?: "function";
    }[];
}

Properties

content?: null | string
refusal?: null | string
role?: "assistant"
tool_calls?: {
    function?: { arguments?: string; name?: string };
    id?: string;
    index: number;
    type?: "function";
}[]