chore(provider): add mimo-v2-pro-free and mimo-v2-omni-free models#2628
chore(provider): add mimo-v2-pro-free and mimo-v2-omni-free models#2628amitksingh1490 merged 2 commits intomainfrom
Conversation
🤖 Augment PR SummarySummary: Adds two new Xiaomi MiMo V2 “free” models to the provider catalog so they can be selected/used in Forgecode. Changes:
🤖 Was this summary useful? React with 👍 or 👎 |
| }, | ||
| { | ||
| "id": "mimo-v2-pro-free", | ||
| "name": "Mimo V2 pro Free", |
| }, | ||
| { | ||
| "id": "mimo-v2-omni-free", | ||
| "name": "Mimi V2 omni Free", |
| { | ||
| "id": "mimo-v2-omni-free", | ||
| "name": "Mimi V2 omni Free", | ||
| "description": "MiMo-V2-Omni is a frontier omni-modal model that natively processes image, video, and audio inputs within a unified architecture", |
There was a problem hiding this comment.
The description says this model natively processes image/video/audio, but input_modalities only lists text and image; consider aligning the description with the modalities your app actually supports/exposes.
Severity: medium
🤖 Was this useful? React with 👍 or 👎, or 🚀 if it prevented an incident/outage.
| }, | ||
| { | ||
| "id": "mimo-v2-omni-free", | ||
| "name": "Mimi V2 omni Free", |
There was a problem hiding this comment.
Typo in model name: "Mimi" should be "Mimo" to match the id "mimo-v2-omni-free" and the description which refers to "MiMo-V2-Omni".
"name": "Mimo V2 omni Free",| "name": "Mimi V2 omni Free", | |
| "name": "Mimo V2 omni Free", |
Spotted by Graphite
Is this helpful? React 👍 or 👎 to let us know.
| "tools_supported": true, | ||
| "supports_parallel_tool_calls": true, | ||
| "supports_reasoning": true, | ||
| "input_modalities": ["text", "image"] |
There was a problem hiding this comment.
Missing input modalities. The description states the model "natively processes image, video, and audio inputs" but input_modalities only includes ["text", "image"]. This should include "video" and "audio" to match the described capabilities.
"input_modalities": ["text", "image", "video", "audio"]| "input_modalities": ["text", "image"] | |
| "input_modalities": ["text", "image", "video", "audio"] |
Spotted by Graphite
Is this helpful? React 👍 or 👎 to let us know.
fixes #2619