import { type EmbedParams, type EmbedStats } from "../../../schemas/index"; export interface EmbedResult { embedding: number[] | number[][]; stats?: EmbedStats; } export declare function embed(params: { modelId: string; text: string; }, requestId?: string): Promise; export declare function embed(params: { modelId: string; text: string[]; }, requestId?: string): Promise; export declare function embed(params: EmbedParams, requestId?: string): Promise; export declare function normalizeVector(vector: Float32Array): number[]; //# sourceMappingURL=embed.d.ts.map