eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
8 lines (7 loc) • 327 B
TypeScript
import type { LanguageModel } from "ai";
import { type RuntimeModelReference } from "#runtime/agent/bootstrap.js";
/**
* Resolves the framework-owned bootstrap model into a deterministic local
* language model.
*/
export declare function resolveBootstrapRuntimeModel(reference: RuntimeModelReference): LanguageModel | null;