Interface RawCompletionResponse

Response when stream=false

interface RawCompletionResponse {
    choices: RawCompletionChoice[];
    created: number;
    id: string;
    model: string;
    object: "text_completion";
    system_fingerprint?: string;
    timings?: ResultTimings;
    usage: ChatCompletionUsage;
}

Properties

created: number
id: string
model: string
object: "text_completion"
system_fingerprint?: string
timings?: ResultTimings