export declare const DEFAULT_MODEL = "gpt-4o-mini"; /** Returns the active fine-tuned model ID, or DEFAULT_MODEL if none set. */ export declare function getActiveModel(): string; /** Persists the active fine-tuned model ID to the economy data root (config.json). */ export declare function setActiveModel(id: string): void; /** Clears the active model, falling back to DEFAULT_MODEL. */ export declare function clearActiveModel(): void; //# sourceMappingURL=model-config.d.ts.map