Member Junction
    Preparing search index...

    Interface AzureChatCompletionResponse

    Response from Azure AI chat completions

    interface AzureChatCompletionResponse {
        choices: AzureChatCompletionChoice[];
        created: number;
        id: string;
        model: string;
        object: string;
        usage: AzureTokenUsage;
    }
    Index

    Properties

    The completion choices

    created: number

    Creation timestamp

    id: string

    Unique identifier for this chat completion

    model: string

    Model used for completion

    object: string

    Object type, always "chat.completion"

    Token usage information