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

Class LLMResponse

mini_agent/schema/schema.py:48–55  ·  view source on GitHub ↗

LLM response.

Source from the content-addressed store, hash-verified

46
47
48class LLMResponse(BaseModel):
49 """LLM response."""
50
51 content: str
52 thinking: str | None = None # Extended thinking blocks
53 tool_calls: list[ToolCall] | None = None
54 finish_reason: str
55 usage: TokenUsage | None = None # Token usage from API response

Callers 3

generateMethod · 0.90
_parse_responseMethod · 0.85
_parse_responseMethod · 0.85

Calls

no outgoing calls

Tested by 1

generateMethod · 0.72