Xiaomi's MiMo V2.5 Pro flagship reasoning model with a 1M-token context — strong math, code and long-document reasoning at provider list price, zero platform fee.
curl https://aiapi-pro.com/v1/chat/completions \
-H "Authorization: Bearer $NOVAI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "mimo-v2.5-pro",
"messages": [{"role":"user","content":"Solve this optimization problem step by step"}]
}'
from openai import OpenAI
client = OpenAI(
base_url="https://aiapi-pro.com/v1",
api_key="YOUR_NOVAI_API_KEY",
)
resp = client.chat.completions.create(
model="mimo-v2.5-pro",
messages=[{"role":"user","content":"Solve this optimization problem step by step"}],
)
print(resp.choices[0].message.content)
Zero platform fee. Credits never expire. OpenAI-compatible API.
Sign Up Free