Member Junction
    Preparing search index...

    Interface AzureChatCompletionChunk

    Azure Chat Completion streaming chunk

    interface AzureChatCompletionChunk {
        choices: AzureChatCompletionChunkChoice[];
        created: number;
        id: string;
        model: string;
        object: string;
        usage?: AzureTokenUsage;
    }
    Index

    Properties

    The chunk 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.chunk"

    Optional token usage information