Retry configuration
| 10 | |
| 11 | |
| 12 | class RetryConfig(BaseModel): |
| 13 | """Retry configuration""" |
| 14 | |
| 15 | enabled: bool = True |
| 16 | max_retries: int = 3 |
| 17 | initial_delay: float = 1.0 |
| 18 | max_delay: float = 60.0 |
| 19 | exponential_base: float = 2.0 |
| 20 | |
| 21 | |
| 22 | class LLMConfig(BaseModel): |