返回模型列表
Ministral 8B
mistralmistral/ministral-8b
供应商自营与 TheRouter 服务形态的差异
供应商自己运营时
Mistral 原始 Ministral-8B-Instruct-2410 checkpoint 是已弃用、仅文本、研究许可模型;较新的 Ministral 3 8B 后继版本增加了原生视觉和商用可用性。
在 TheRouter 上
TheRouter 保留 mistral/ministral-8b slug 作为 OpenAI 兼容的文本/聊天路由;但本权威页将原始 checkpoint 的视觉、吞吐量和输出上限细节视为未披露,除非对实时路由另行验证。
API 使用指南
Chat 调用
标准文本到文本对话。Ministral 8B 擅长高吞吐对话负载。
cURL
curl https://api.therouter.ai/v1/chat/completions \
-H "Authorization: Bearer $THEROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "mistral/ministral-8b",
"messages": [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "What is the capital of France?"}
]
}'流式输出
逐 token 流式输出,在面向用户的应用中获得更低的感知延迟。
cURL
curl https://api.therouter.ai/v1/chat/completions \
-H "Authorization: Bearer $THEROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "mistral/ministral-8b",
"messages": [{"role": "user", "content": "Write a short poem."}],
"stream": true
}'函数调用
Ministral 8B 接受了针对性后训练以优化函数调用。即使在多工具循环中也能保持稳定延迟。
cURL
curl https://api.therouter.ai/v1/chat/completions \
-H "Authorization: Bearer $THEROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "mistral/ministral-8b",
"messages": [
{"role": "user", "content": "What is the weather like in London?"}
],
"tools": [{
"type": "function",
"function": {
"name": "get_weather",
"description": "Get the current weather for a city",
"parameters": {
"type": "object",
"properties": {
"city": {"type": "string", "description": "City name"}
},
"required": ["city"]
}
}
}]
}'事实档案 — 本页每条断言可在此回溯来源
| 来源 | URL | 采集于 | |
|---|---|---|---|
| 发布日期 | mistral.ai ↗ | 2026-05-27 | 已核实 |
| 架构 | mistral.ai ↗ | 2026-05-27 | 已核实 |
| 上下文窗口 | mistral.ai ↗ | 2026-05-27 | 已核实 |
| 最大输出 | docs.mistral.ai ↗ | 2026-08-24 | 未知 |
| 许可 | huggingface.co ↗ | 2026-05-27 | 已核实 |
| 硬件要求 | huggingface.co ↗ | 2026-08-24 | 未知 |
| 状态 | docs.mistral.ai ↗ | 2026-05-27 | 已核实 |
| MMLU | mistral.ai ↗ | 2026-05-27 | 已核实 |
| HumanEval | mistral.ai ↗ | 2026-08-24 | 未知 |
| GSM8K | mistral.ai ↗ | 2026-05-27 | 已核实 |
| AGIEval | mistral.ai ↗ | 2026-05-27 | 未知 |
| Mistral 发布 Ministral 3 系列,弃用原始 2410 checkpoint | docs.mistral.ai ↗ | 2026-05-27 | 已核实 |
| Mistral 推出 Les Ministraux——为边缘和端侧 AI 设计的 Ministral 3B 和 8B | mistral.ai/news ↗ | 2026-05-27 | 已核实 |
| Ministral 8B 可以免费商用吗? | huggingface.co ↗ | 2026-05-27 | 待核实 |
| Ministral 8B 和 Ministral 3 8B 有什么区别? | docs.mistral.ai ↗ | 2026-05-27 | 待核实 |
| Ministral 8B 在 TheRouter 上支持视觉吗? | mistral.ai ↗ | 2026-05-27 | 待核实 |