export interface ModelCacheState { modelContextLimitsCache: Map; anthropicContext1MEnabled: boolean; } export function createModelCacheState(): ModelCacheState { return { modelContextLimitsCache: new Map(), anthropicContext1MEnabled: false, }; }