import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { ChatTokenLogprob } from "./chattokenlogprob.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; /** * Log probabilities for the completion */ export type ChatTokenLogprobs = { /** * Log probabilities for content tokens */ content: Array | null; /** * Log probabilities for refusal tokens */ refusal?: Array | null | undefined; }; /** @internal */ export declare const ChatTokenLogprobs$inboundSchema: z.ZodType; export declare function chatTokenLogprobsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=chattokenlogprobs.d.ts.map