@@ -2,6 +2,7 @@ import type { ModelInfo } from "../model.js"
22
33// https://developer.puter.com/ai/xiaomi/mimo-v2.5-pro/
44// https://developer.puter.com/ai/xiaomi/mimo-v2.5/
5+ // https://platform.xiaomimimo.com/docs/en-US/quick-start/model-hyperparameters
56//
67// NOTE: mimo-v2-flash is not included here. Its thinking mode defaults to
78// disabled and it doesn't reliably handle reasoning_content passthrough
@@ -21,9 +22,18 @@ export const mimoModels = {
2122 supportsPromptCache : false ,
2223 preserveReasoning : true ,
2324 inputPrice : 1.0 , // $1.00/1M tokens (cache miss, ≤256K)
24- outputPrice : 3.0 , // $3.00/1M tokens
25- cacheReadsPrice : 0.2 , // $0.20/1M tokens (cache hit)
25+ outputPrice : 3.0 , // $3.00/1M tokens (≤256K)
26+ cacheReadsPrice : 0.2 , // $0.20/1M tokens (cache hit, ≤256K )
2627 cacheWritesPrice : 0 , // Free for limited time
28+ // MiMo charges 2x for input >256K context
29+ tiers : [
30+ {
31+ contextWindow : 256_001 ,
32+ inputPrice : 2.0 , // $2.00/1M tokens (>256K)
33+ outputPrice : 6.0 , // $6.00/1M tokens (>256K)
34+ cacheReadsPrice : 0.4 , // $0.40/1M tokens (>256K)
35+ } ,
36+ ] ,
2737 description :
2838 "MiMo V2.5 Pro - Xiaomi's flagship reasoning model with 1M context, deep thinking, tool calling, and structured output." ,
2939 } ,
@@ -34,9 +44,18 @@ export const mimoModels = {
3444 supportsPromptCache : false ,
3545 preserveReasoning : true ,
3646 inputPrice : 0.4 , // $0.40/1M tokens (cache miss, ≤256K)
37- outputPrice : 2.0 , // $2.00/1M tokens
38- cacheReadsPrice : 0.08 , // $0.08/1M tokens (cache hit)
47+ outputPrice : 2.0 , // $2.00/1M tokens (≤256K)
48+ cacheReadsPrice : 0.08 , // $0.08/1M tokens (cache hit, ≤256K )
3949 cacheWritesPrice : 0 , // Free for limited time
50+ // MiMo charges 2x for input >256K context
51+ tiers : [
52+ {
53+ contextWindow : 256_001 ,
54+ inputPrice : 0.8 , // $0.80/1M tokens (>256K)
55+ outputPrice : 4.0 , // $4.00/1M tokens (>256K)
56+ cacheReadsPrice : 0.16 , // $0.16/1M tokens (>256K)
57+ } ,
58+ ] ,
4059 description :
4160 "MiMo V2.5 - Full-modal understanding model (text, image, audio, video) with 1M context, deep thinking, tool calling, and structured output." ,
4261 } ,
0 commit comments