Files
oh-my-opencode/dist/plugin-state.d.ts
T

11 lines
340 B
TypeScript
Raw Normal View History

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;