Files
oh-my-openagent/dist/plugin-state.d.ts
2026-03-14 04:56:50 +00:00

11 lines
340 B
TypeScript

export type VisionCapableModel = {
providerID: string;
modelID: string;
};
export interface ModelCacheState {
modelContextLimitsCache: Map<string, number>;
visionCapableModelsCache?: Map<string, VisionCapableModel>;
anthropicContext1MEnabled: boolean;
}
export declare function createModelCacheState(): ModelCacheState;