Project Files
dist / modelCache.d.ts
import { type GeneratorModel } from "./inventory";
export type CachedModelState = {
models: GeneratorModel[];
embedModels: GeneratorModel[];
lastSelected?: string;
lastSelectedEmbed?: string;
inventoryMode?: string;
shimBaseUrl?: string;
};
export declare function readCachedState(): CachedModelState;
export declare function writeCachedState(models: GeneratorModel[], embedModels: GeneratorModel[], lastSelected?: string, lastSelectedEmbed?: string, inventoryMode?: string, shimBaseUrl?: string): Promise<void>;
//# sourceMappingURL=modelCache.d.ts.map