/** * Local Embedding Runtime Adapter * * Bridges `@huggingface/transformers` local embedding inference to the * framework's current embedding runtime interface. This allows `embed()` and * `embedMany()` to work with local models seamlessly. * * @module provider/local */ import type { EmbeddingRuntime } from "../types.js"; /** * Create a local embedding runtime for the given model ID. * * The returned object implements the current embedding runtime interface, making it * compatible with all framework embedding functions and the Veryfront * embedding/RAG primitives. */ export declare function createLocalEmbeddingModel(modelId?: string): EmbeddingRuntime; //# sourceMappingURL=embedding-runtime-adapter.d.ts.map