MiMo-V2.6-Pro-UltraSpeed

兼顾 V2.6-Pro 旗舰性能,提供最高 20 倍输出速度,服务强实时交互与对响应速度敏感的生产场景。

模型规格

模态

输入模态文本、图像、视频、音频
输出模态文本

模型能力

全模态理解
深度思考
工具调用
流式输出
联网搜索
结构化输出
上下文缓存

性能

上下文长度1M tokens
最大输出长度128K tokens
RPM / TPM定制服务,请 联系我们

模型价格

人民币

输入(缓存命中)
¥ 0.25元/百万 tokens
输入(缓存未命中)
¥ 30元/百万 tokens
输出
¥ 60元/百万 tokens

美元

输入(缓存命中)
$0.036美元/百万 tokens
输入(缓存未命中)
$4.35美元/百万 tokens
输出
$8.7美元/百万 tokens

模型优势

原生 Pro 性能

V2.6-Pro 旗舰级性能无折扣完全保留,复杂任务体验相同,不因速度牺牲智能

超高速巅峰体验

稳定常态提供 10 倍于 V2.6-Pro 的输出速度,最高超过 900 Tokens/s,满足强实时交互与对响应速度敏感的场景

推荐场景

量化交易

突发新闻推送后,模型在毫秒级内完成市场影响分析并生成交易信号。在市场产生波动前完成决策流,实现真正的低延迟量化响应。

实时风控

在交易结算前的数百毫秒内,完成复杂的欺诈推理与风险评估。摆脱传统规则引擎的局限,兼顾实时响应速度与深度推理能力。

科学研究

支撑大规模假设的即时生成与验证,将人机交互延迟缩短至接近实时。消除等待间歇,保障研究人员科研思维的连续性。

实时编程辅助

提供超越阅读速度的代码生成体验,实现零延迟感的代码补全。复杂重构任务可在瞬间完成,有效提升开发连续性。

接入方式

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.6-pro-ultraspeed",
    messages=[
        {
            "role": "system",
            "content": "You are MiMo, an AI assistant developed by Xiaomi. Today is date: Tuesday, December 16, 2025. Your knowledge cutoff date is December 2024."
        },
        {
            "role": "user",
            "content": [
                {
                    "type": "text",
                    "text": "Generate a modern-style SaaS landing page as a single file containing only HTML, CSS and JavaScript."
                }
            ]
        }
    ],
    max_completion_tokens=131072,
    stream=True
)

print("\n========== [Thinking Content] ==========\n")
answering = False
for chunk in completion:
    if not chunk.choices:
        continue

    delta = chunk.choices[0].delta
    if hasattr(delta, "reasoning_content") and delta.reasoning_content:
        print(delta.reasoning_content, end='', flush=True)

    if hasattr(delta, "content") and delta.content:
        if not answering:
            print("\n\n========== [Answer Content] ==========\n")
            answering = True
        print(delta.content, end='', flush=True)

Copyright©2026 Xiaomi. All Rights Reserved | Cookie Policy | Cookie Preferences

We use cookies and similar technologies of our own to ensure the proper functioning of the website, customize content according to user preferences and analyze users' interactions on the website, as well as their browsing habits. You can find more information in our Cookie Policy. Select an option or go to Cookie Settings to manage your preferences. Learn More.