Interface ChatCompletionModel

Describes the response format of a chat request.

ChatCompletionModel

interface ChatCompletionModel {
    choices?: ChoiceModel[];
    id?: string;
    model?: string;
    usage?: UsageModel;
}

Properties

choices?: ChoiceModel[]

ChatCompletionModel

id?: string

ChatCompletionModel

model?: string

ChatCompletionModel

usage?: UsageModel

ChatCompletionModel