/** * This file was auto-generated by Fern from our API Definition. */ import * as serializers from "../../../index"; import * as OctoAI from "../../../../api/index"; import * as core from "../../../../core"; import { ChatCompletionChoice } from "./ChatCompletionChoice"; import { UsageStats } from "./UsageStats"; export declare const ChatCompletionResponse: core.serialization.ObjectSchema; export declare namespace ChatCompletionResponse { interface Raw { choices: ChatCompletionChoice.Raw[]; created: number; id: string; model: string; object?: "chat.completion" | null; usage: UsageStats.Raw; } }