import type { EmbeddingModelV3 } from "@ai-sdk/provider"; import type { EmbeddingModel, EmbeddingModelRequest, EmbeddingModelResponse } from "@kernl-sdk/protocol"; /** * EmbeddingModel adapter for the AI SDK EmbeddingModelV3. */ export declare class AISDKEmbeddingModel implements EmbeddingModel { private model; readonly spec: "1.0"; readonly provider: string; readonly modelId: string; readonly maxEmbeddingsPerCall?: number; readonly supportsParallelCalls?: boolean; constructor(model: EmbeddingModelV3); embed(request: EmbeddingModelRequest): Promise; } //# sourceMappingURL=embedding-model.d.ts.map