Type Alias ChatCompletionResponse

ChatCompletionResponse: {
    choices: ChatCompletionChoice[];
    request_id: string;
    usage: ChatCompletionUsage;
}

The response from the LLM Gateway's chat completions endpoint.