import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { EmbeddingModel, EmbeddingModel$Outbound } from "./embeddingmodel.js"; /** * Response containing available embedding models and their limits */ export type EmbeddingModelListResponse = { object?: "list" | undefined; /** * List of available embedding models with their limits */ data: Array; }; /** @internal */ export declare const EmbeddingModelListResponse$inboundSchema: z.ZodType; /** @internal */ export type EmbeddingModelListResponse$Outbound = { object: "list"; data: Array; }; /** @internal */ export declare const EmbeddingModelListResponse$outboundSchema: z.ZodType; export declare function embeddingModelListResponseToJSON(embeddingModelListResponse: EmbeddingModelListResponse): string; export declare function embeddingModelListResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=embeddingmodellistresponse.d.ts.map