/** * Local Embedding Engine * * Singleton wrapper around `@huggingface/transformers` for server-side * local embedding generation. Uses the `feature-extraction` pipeline * with mean pooling and normalization. * * @module provider/local */ /** * Generate embeddings for an array of texts using a local model. * * Uses mean pooling and L2 normalization to produce unit vectors, * matching the behavior of cloud embedding APIs. */ export declare function embedTexts(modelId: string, texts: string[]): Promise; //# sourceMappingURL=local-embedding-engine.d.ts.map