import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Limits for the embedding model */ export type EmbeddingModelLimits = { /** * Maximum number of inputs allowed in a single batch request */ maxBatchSize: number; /** * Maximum tokens per individual input (derived from contextWindow) */ maxInputTokens: number; /** * Maximum characters per individual input (contextWindow * 2) */ maxInputLength: number; }; /** @internal */ export declare const EmbeddingModelLimits$inboundSchema: z.ZodType; /** @internal */ export type EmbeddingModelLimits$Outbound = { max_batch_size: number; max_input_tokens: number; max_input_length: number; }; /** @internal */ export declare const EmbeddingModelLimits$outboundSchema: z.ZodType; export declare function embeddingModelLimitsToJSON(embeddingModelLimits: EmbeddingModelLimits): string; export declare function embeddingModelLimitsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=embeddingmodellimits.d.ts.map