Xiaomi MiMo String Model
Create a MiMo agent without importing the model class, using the `model="xiaomi:<model-id>"` string shorthand.
"""
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/activateInstall dependencies
uv pip install -U agno openaiExport 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.pyFull source: cookbook/90_models/xiaomi/string_model.py