import type { OllamaCreateModelInput, OllamaModelParameter } from "./local-runtime.ts"; export declare const ORNITH_9B_OLLAMA_REF = "hf.co/deepreinforce-ai/Ornith-1.0-9B-GGUF:Q4_K_M"; interface OllamaRuntimeProfile { id: "qwen3.5" | "qwen3.5-ornith"; template: string; renderer: string; parser: string; parameters: Readonly>; } export interface ManagedOllamaModelPlan { name: string; create: Omit; profileId?: OllamaRuntimeProfile["id"]; } /** * Plan the single Pi-owned derived model used for both context sizing and runtime-specific model * requirements. Keeping both concerns in one structured create request prevents a later * context-only derivation from silently dropping a required renderer/parser profile. */ export declare function planManagedOllamaModel(args: { sourceRef: string; modelInfo: Readonly>; numCtx?: number; }): ManagedOllamaModelPlan | undefined; export {}; //# sourceMappingURL=managed-ollama-model.d.ts.map