feat(kiro): add simulated cache provider toggle

This commit is contained in:
mayrain
2026-05-19 10:47:17 +08:00
parent b4d17a392a
commit d88f092dd1
5 changed files with 45 additions and 0 deletions
+1
View File
@@ -48,6 +48,7 @@ function normalizeProviderSummary(
...provider,
chat_pii_redaction: normalizeChatPiiRedactionProvider(provider.chat_pii_redaction),
pool_advanced: normalizePoolAdvanced(provider.pool_advanced),
kiro_simulated_cache_enabled: provider.kiro_simulated_cache_enabled ?? false,
}
}
@@ -675,6 +675,7 @@ export interface ProviderWithEndpointsSummary {
failover_rules?: FailoverRulesConfig | null
ops_configured: boolean // 是否配置了扩展操作(余额监控等)
ops_architecture_id?: string // 扩展操作使用的架构 ID(如 cubence, anyrouter
kiro_simulated_cache_enabled?: boolean
created_at: string
updated_at: string
}