/** * Local Model Runtime Adapter * * Bridges `@huggingface/transformers` local inference to the framework's * current model runtime substrate. This allows `streamText()` and * `generateText()` to work with local models seamlessly. * * @module provider/local */ import type { ModelRuntime } from "../types.js"; /** * Create a local model runtime for the given model ID. * * The returned object implements the current runtime interface, making it * compatible with the framework execution path and related hooks. */ export declare function createLocalModel(modelId?: string): ModelRuntime; //# sourceMappingURL=model-runtime-adapter.d.ts.map