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

Class LLMConfig

mini_agent/config.py:22–29  ·  view source on GitHub ↗

LLM configuration

Source from the content-addressed store, hash-verified

20
21
22class 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
32class AgentConfig(BaseModel):

Callers 2

acp_agentFunction · 0.90
from_yamlMethod · 0.85

Calls

no outgoing calls

Tested by 1

acp_agentFunction · 0.72