Skip to content

Commit 0198228

Browse files
committed
Add MiMo V2 Pro/Omni models and family entries
Register two new MiMo V2 models and update model family values. Added "mimo-pro" and "mimo-omni" to ModelFamilyValues in packages/core/src/family.ts, and added corresponding TOML model descriptors under providers/opencode-go/models: mimo-v2-pro.toml and mimo-v2-omni.toml. The Pro model includes very large context (1,048,576) and tiered costs for >200k context, while the Omni model exposes multimodal input (text, image, audio, pdf) and a large 262,144 context. Both files set metadata (release_date, last_updated, knowledge cutoff, open_weights) and define interleaved reasoning field, costs, limits, and modalities.
1 parent 8ee9ea1 commit 0198228

3 files changed

Lines changed: 59 additions & 0 deletions

File tree

packages/core/src/family.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,8 @@ export const ModelFamilyValues = [
196196

197197
// Mimo
198198
"mimo",
199+
"mimo-pro",
200+
"mimo-omni",
199201
"mimo-pro-free",
200202
"mimo-omni-free",
201203
"mimo-flash-free",
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name = "MiMo V2 Omni"
2+
family = "mimo-omni"
3+
release_date = "2026-03-18"
4+
last_updated = "2026-03-18"
5+
attachment = true
6+
reasoning = true
7+
temperature = true
8+
tool_call = true
9+
knowledge = "2024-12"
10+
open_weights = true
11+
12+
[interleaved]
13+
field = "reasoning_content"
14+
15+
[cost]
16+
input = 0.40
17+
output = 2.00
18+
cache_read = 0.08
19+
20+
[limit]
21+
context = 262_144
22+
output = 64_000
23+
24+
[modalities]
25+
input = ["text", "image", "audio", "pdf"]
26+
output = ["text"]
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name = "MiMo V2 Pro"
2+
family = "mimo-pro"
3+
release_date = "2026-03-18"
4+
last_updated = "2026-03-18"
5+
attachment = true
6+
reasoning = true
7+
temperature = true
8+
tool_call = true
9+
knowledge = "2024-12"
10+
open_weights = true
11+
12+
[interleaved]
13+
field = "reasoning_content"
14+
15+
[cost]
16+
input = 1.00
17+
output = 3.00
18+
cache_read = 0.20
19+
20+
[cost.context_over_200k]
21+
input = 2.00
22+
output = 6.00
23+
cache_read = 0.40
24+
25+
[limit]
26+
context = 1_048_576
27+
output = 64_000
28+
29+
[modalities]
30+
input = ["text"]
31+
output = ["text"]

0 commit comments

Comments
 (0)