import type * as SarvamAI from "../index.mjs"; export interface CreateChatCompletionResponse { /** A unique identifier for the chat completion. */ id: string; /** A list of chat completion choices. Can be more than one if `n` is greater than 1. */ choices: SarvamAI.Choice[]; /** The Unix timestamp (in seconds) of when the chat completion was created. */ created: number; /** The model used for the chat completion. */ model: string; /** The object type, which is always `chat.completion`. */ object: "chat.completion"; service_tier?: string | undefined; system_fingerprint?: string | undefined; usage?: SarvamAI.CompletionUsage | undefined; }