> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agno.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Xiaomi MiMo Thinking Mode

> Toggle thinking mode with the `use_thinking` flag.

Toggle thinking mode with the `use_thinking` flag. `use_thinking=True` makes the model emit `reasoning_content` before its answer; `use_thinking=False` turns it off for a faster, cheaper response. Leaving it unset (None) uses the model default.

```python thinking_mode.py theme={null}
"""
Xiaomi MiMo Thinking Mode
=========================

Toggle thinking mode with the `use_thinking` flag. `use_thinking=True` makes the
model emit `reasoning_content` before its answer; `use_thinking=False` turns it
off for a faster, cheaper response. Leaving it unset (None) uses the model default.
"""

from agno.agent import Agent
from agno.models.xiaomi import MiMo

# ---------------------------------------------------------------------------
# Thinking enabled - returns reasoning_content
# ---------------------------------------------------------------------------

thinking_agent = Agent(
    model=MiMo(id="mimo-v2.5-pro", use_thinking=True),
    markdown=True,
)

# ---------------------------------------------------------------------------
# Thinking disabled - faster, no reasoning_content
# ---------------------------------------------------------------------------

non_thinking_agent = Agent(
    model=MiMo(id="mimo-v2.5-pro", use_thinking=False),
    markdown=True,
)

# ---------------------------------------------------------------------------
# Run Agents
# ---------------------------------------------------------------------------
if __name__ == "__main__":
    thinking_agent.print_response("Why is the sky blue?", stream=True)

    non_thinking_agent.print_response("Why is the sky blue?", stream=True)
```

## Run the Example

<Steps>
  <Snippet file="create-venv-step.mdx" />

  <Step title="Install dependencies">
    ```bash theme={null}
    uv pip install -U agno openai
    ```
  </Step>

  <Step title="Export your Xiaomi MiMo API key">
    <CodeGroup>
      ```bash Mac/Linux theme={null}
      export MIMO_API_KEY="your_mimo_api_key_here"
      ```

      ```bash Windows theme={null}
      $Env:MIMO_API_KEY="your_mimo_api_key_here"
      ```
    </CodeGroup>
  </Step>

  <Step title="Run the example">
    Save the code above as `thinking_mode.py`, then run:

    ```bash theme={null}
    python thinking_mode.py
    ```
  </Step>
</Steps>

Full source: [cookbook/90\_models/xiaomi/thinking\_mode.py](https://github.com/agno-agi/agno/blob/main/cookbook/90_models/xiaomi/thinking_mode.py)
