Member Junction
    Preparing search index...

    Type Alias ChatResultChoice

    A single choice in the chat completion result.

    type ChatResultChoice = {
        finish_reason: string;
        index: number;
        logprobs?: ChatResultLogProbs | null;
        message: ChatCompletionMessage;
    }
    Index

    Properties

    finish_reason: string
    index: number
    logprobs?: ChatResultLogProbs | null