MCPcopy Create free account
hub / github.com/MiniMax-AI/Mini-Agent / RetryConfig

Class RetryConfig

mini_agent/config.py:12–19  ·  view source on GitHub ↗

Retry configuration

Source from the content-addressed store, hash-verified

10
11
12class 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
22class LLMConfig(BaseModel):

Callers 1

from_yamlMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected