/** * This file was auto-generated by Fern from our API Definition. */ import * as serializers from "../index"; import * as Vellum from "../../api/index"; import * as core from "../../core"; import { FinishReasonEnum } from "./FinishReasonEnum"; import { NormalizedLogProbs } from "./NormalizedLogProbs"; import { VellumVariableType } from "./VellumVariableType"; export declare const EnrichedNormalizedCompletion: core.serialization.ObjectSchema; export declare namespace EnrichedNormalizedCompletion { interface Raw { id: string; external_id?: (string | null) | null; text: string; finish_reason?: (FinishReasonEnum.Raw | null) | null; logprobs?: (NormalizedLogProbs.Raw | null) | null; model_version_id?: (string | null) | null; prompt_version_id: string; type?: VellumVariableType.Raw | null; deployment_release_tag: string; model_name: string; } }