fix(main): InfraSettings 默认值同步 retry_base=20 retry_max=120

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-07-09 22:16:22 -04:00
parent 1f83da9eb7
commit 4ebdf0b0ba
+2 -2
View File
@@ -42,8 +42,8 @@ class InfraSettings(BaseSettings):
llm_timeout: float = 120.0 llm_timeout: float = 120.0
llm_max_retries: int = 3 llm_max_retries: int = 3
llm_retry_base_delay: float = 2.0 llm_retry_base_delay: float = 20.0
llm_retry_max_delay: float = 30.0 llm_retry_max_delay: float = 120.0
llm_circuit_breaker_threshold: int = 48 llm_circuit_breaker_threshold: int = 48
llm_circuit_breaker_cooldown: float = 60.0 llm_circuit_breaker_cooldown: float = 60.0
llm_ttft_timeout: float = 30.0 llm_ttft_timeout: float = 30.0