Xiaomi MiMo String Model

Create a MiMo agent without importing the model class, using the `model="xiaomi:<model-id>"` string shorthand.

string_model.py
"""
Xiaomi MiMo String Model
========================

Create a MiMo agent without importing the model class, using the
`model="xiaomi:<model-id>"` string shorthand.
"""

from agno.agent import Agent

# ---------------------------------------------------------------------------
# Create Agent
# ---------------------------------------------------------------------------

agent = Agent(model="xiaomi:mimo-v2.5-pro", markdown=True)

# ---------------------------------------------------------------------------
# Run Agent
# ---------------------------------------------------------------------------
if __name__ == "__main__":
    agent.print_response(
        "Explain why tool-calling agents need conversation history.",
        stream=True,
    )

Run the Example

Set up your virtual environment

uv venv --python 3.12
source .venv/bin/activate

Install dependencies

uv pip install -U agno openai

Export your Xiaomi MiMo API key

export MIMO_API_KEY="your_mimo_api_key_here"

Run the example

Save the code above as string_model.py, then run:

python string_model.py

Full source: cookbook/90_models/xiaomi/string_model.py