SongGuess
    Preparing search index...

    Type Alias ChatCompletionResponseMessage

    type ChatCompletionResponseMessage = {
        annotations?: ChatCompletionUrlCitation[];
        audio?: ChatCompletionAudio;
        content: string | null;
        function_call?: { arguments: string; name: string } | null;
        refusal: string | null;
        role: "assistant";
        tool_calls?: ChatCompletionMessageToolCall[];
    }
    Index

    Properties

    content: string | null
    function_call?: { arguments: string; name: string } | null
    refusal: string | null
    role: "assistant"