返回模型列表
Mistral Large 3
mistralmistral/mistral-large-3
API 使用指南
Chat 调用
通过 TheRouter 的 OpenAI 兼容接口做标准对话。Mistral Large 3 是通用对话模型,只需更换 baseURL 即可使用 OpenAI SDK。
cURL
curl https://api.therouter.ai/v1/chat/completions \
-H "Authorization: Bearer $THEROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "mistral/mistral-large-3",
"messages": [{"role": "user", "content": "Explain sparse MoE architectures to a junior developer."}]
}'流式输出
为聊天界面做流式输出。Large 3 的 MoE 架构即使在完整 256K 上下文中也能保持有竞争力的首 token 延迟。
cURL
curl https://api.therouter.ai/v1/chat/completions \
-H "Authorization: Bearer $THEROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "mistral/mistral-large-3",
"stream": true,
"messages": [{"role": "user", "content": "Write a 50-word haiku about GPU clusters."}]
}'工具调用
Mistral Large 3 通过 TheRouter 的标准化接口支持 OpenAI 格式的 function calling 与 tool_choice。
cURL
curl https://api.therouter.ai/v1/chat/completions \
-H "Authorization: Bearer $THEROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "mistral/mistral-large-3",
"messages": [{"role": "user", "content": "What is the weather in Paris?"}],
"tools": [{
"type": "function",
"function": {
"name": "get_weather",
"parameters": {"type": "object", "properties": {"city": {"type": "string"}}}
}
}]
}'结构化 JSON 输出
通过 response_format 强制 JSON 输出。Large 3 对显式结构约定的遵守度很稳定。
cURL
curl https://api.therouter.ai/v1/chat/completions \
-H "Authorization: Bearer $THEROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "mistral/mistral-large-3",
"response_format": {"type": "json_object"},
"messages": [
{"role": "system", "content": "Return JSON with fields: name, age, department."},
{"role": "user", "content": "Extract employee info from this email..."}
]
}'自托管
Large 3 权重可从 Hugging Face 以 Apache 2.0 许可下载。NVFP4 量化和 Blackwell 优化内核可实现单台 8×GPU 节点部署。参考推理使用 vLLM 或 SGLang。
cURL
# Reference vLLM launch. See HF model card for exact tensor-parallel sizing.
python -m vllm.entrypoints.openai.api_server \
--model mistralai/Mistral-Large-3 \
--tensor-parallel-size 8 \
--port 8000
# Then call it through TheRouter as model="mistral/mistral-large-3"
# with TheRouter configured to use your self-hosted endpoint as the upstream.事实档案 — 本页每条断言可在此回溯来源
| 来源 | URL | 采集于 | |
|---|---|---|---|
| 架构 | docs.mistral.ai ↗ | 2026-05-28 | 已核实 |
| 上下文窗口 | docs.mistral.ai ↗ | 2026-05-28 | 已核实 |
| 许可协议 | mistral.ai ↗ | 2026-05-28 | 已核实 |
| 训练基础设施 | mistral.ai ↗ | 2026-05-28 | 已核实 |
| 语言 | www.digitalapplied.com ↗ | 2026-05-28 | 待核实 |
| 量化与自托管效率 | mistral.ai ↗ | 2026-05-28 | 已核实 |
| MMLU (8-language) | mistral.ai ↗ | 2026-05-28 | 已核实 |
| HumanEval (Pass@1) | www.digitalapplied.com ↗ | 2026-05-28 | 已核实 |
| MATH-500 | www.digitalapplied.com ↗ | 2026-05-28 | 已核实 |
| MMLU-Pro | www.digitalapplied.com ↗ | 2026-05-28 | 待核实 |
| GPQA Diamond | www.digitalapplied.com ↗ | 2026-05-28 | 待核实 |
| LMArena (open-source non-reasoning) | mistral.ai ↗ | 2026-05-28 | 已核实 |
| Mistral AI 发布 Mistral 3 系列——Mistral Large 3(675B MoE)采用 Apache 2.0 许可 | mistral.ai/news ↗ | 2026-05-28 | 已核实 |
| Mistral Large 3 模型卡在 docs.mistral.ai 和 Hugging Face 上发布 | docs.mistral.ai ↗ | 2026-05-28 | 已核实 |
| Mistral Large 3(675B)和更小的 Mistral 模型有什么区别? | mistral.ai ↗ | 2026-05-28 | 待核实 |
| Mistral Large 3 可以自托管吗? | huggingface.co ↗ | 2026-05-28 | 待核实 |
| Mistral Large 3 的许可协议是什么? | mistral.ai ↗ | 2026-05-28 | 待核实 |
| Mistral Large 3 支持图像输入吗? | docs.mistral.ai ↗ | 2026-05-28 | 待核实 |