Free Mimo V2.5 (Multimodal) on Xiaomi
Xiaomi's standard multimodal model.
About the Model
为什么选择 MiMo 2.5?
MiMo 2.5 是小米自研的旗舰级多模态大语言模型,在中文语义理解、复杂推理以及端侧多设备协同上具备卓越表现。
How to Access for Free (via Xiaomi)
Free basis (Why is it free?)
This is a paid multi-modal model, and we have also passed the new activity for you to get a long-term free test quota:
[Additional benefits] Although this model itself is free, if you also want to experience other paid top models of Xiaomi (such as MIMO V2.5 dialogue model), I am currently using the MIMO open platform, register as a new user through my invitation code, you can get the $2 API Experience gold. • Invitation code: tue76x • Registration link: https://platform.xiaomimimo.com?ref=tue76x • Exchange method: Click the entrance to the lower left of the console to fill in after registration, and the experience bonus Valid for 40 days.
Try it in your browser
Pick a model, paste your own free key, and run. Your key is sent once to call the provider and never stored on our servers.
Pick a model, paste your own free key, and run. Your key is sent once to call the provider and never stored on our servers.
Code Examples
import os
from openai import OpenAI
client = OpenAI(
api_key=os.environ.get("MIMO_API_KEY"),
base_url="https://api.xiaomimimo.com/v1"
)
completion = client.chat.completions.create(
model="mimo-v2.5",
messages=[
{
"role": "user",
"content": [
{"type": "text", "text": "What's in this image?"},
{
"type": "image_url",
"image_url": {
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Gfp-wisconsin-madison-the-nature-boardwalk.jpg/2560px-Gfp-wisconsin-madison-the-nature-boardwalk.jpg",
},
},
],
}
],
)
print(completion.choices[0].message.content)
Community Feedback
Comments are tied to your GitHub account — sign in to join the discussion.