import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { EmbeddingModelLimits, EmbeddingModelLimits$Outbound } from "./embeddingmodellimits.js"; /** * Information about an embedding model and its limits */ export type EmbeddingModel = { /** * Qualified model identifier in provider:model format */ id: string; /** * Provider identifier (e.g., 'meetkai') */ provider: string; /** * Model identifier within the provider */ model: string; /** * Limits for the embedding model */ limits: EmbeddingModelLimits; }; /** @internal */ export declare const EmbeddingModel$inboundSchema: z.ZodType; /** @internal */ export type EmbeddingModel$Outbound = { id: string; provider: string; model: string; limits: EmbeddingModelLimits$Outbound; }; /** @internal */ export declare const EmbeddingModel$outboundSchema: z.ZodType; export declare function embeddingModelToJSON(embeddingModel: EmbeddingModel): string; export declare function embeddingModelFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=embeddingmodel.d.ts.map