LLM configuration
| 20 | |
| 21 | |
| 22 | class LLMConfig(BaseModel): |
| 23 | """LLM configuration""" |
| 24 | |
| 25 | api_key: str |
| 26 | api_base: str = "https://api.minimax.io" |
| 27 | model: str = "MiniMax-M2.5" |
| 28 | provider: str = "anthropic" # "anthropic" or "openai" |
| 29 | retry: RetryConfig = Field(default_factory=RetryConfig) |
| 30 | |
| 31 | |
| 32 | class AgentConfig(BaseModel): |