返回模型列表

Ministral 14B

mistralmistral/ministral-14b

API 使用指南

Chat 调用

cURL
curl https://api.therouter.ai/v1/chat/completions \
  -H "Authorization: Bearer $THEROUTER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "mistral/ministral-14b",
    "messages": [{"role": "user", "content": "Explain cascade distillation in two paragraphs."}]
  }'

流式输出

cURL
curl https://api.therouter.ai/v1/chat/completions \
  -H "Authorization: Bearer $THEROUTER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "mistral/ministral-14b",
    "stream": true,
    "messages": [{"role": "user", "content": "List the top 5 open-source LLMs of 2025."}]
  }'

工具/函数调用

cURL
curl https://api.therouter.ai/v1/chat/completions \
  -H "Authorization: Bearer $THEROUTER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "mistral/ministral-14b",
    "messages": [{"role": "user", "content": "What is the weather in Paris?"}],
    "tools": [{
      "type": "function",
      "function": {
        "name": "get_weather",
        "description": "Get current weather for a city",
        "parameters": {
          "type": "object",
          "properties": { "city": { "type": "string" } },
          "required": ["city"]
        }
      }
    }]
  }'

视觉(图片输入)

cURL
curl https://api.therouter.ai/v1/chat/completions \
  -H "Authorization: Bearer $THEROUTER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "mistral/ministral-14b",
    "messages": [{
      "role": "user",
      "content": [
        {"type": "text", "text": "Describe what you see in this image."},
        {"type": "image_url", "image_url": {"url": "https://therouter.ai/assets/vision-sample.png"}}
      ]
    }]
  }'

JSON 结构化输出

cURL
curl https://api.therouter.ai/v1/chat/completions \
  -H "Authorization: Bearer $THEROUTER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "mistral/ministral-14b",
    "response_format": {"type": "json_object"},
    "messages": [{"role": "user", "content": "Return a JSON object with keys: name, capital, population for France."}]
  }'
事实档案 — 本页每条断言可在此回溯来源
来源URL采集于
发布日期mistral.ai ↗2026-05-28已核实
架构mistral.ai ↗2026-05-28已核实
训练数据截止——未知
许可mistral.ai ↗2026-05-28已核实
模型变体mistral.ai ↗2026-05-28已核实
量化支持NVIDIA Developer Blog ↗2026-05-28已核实
Performance vs Mistral Small 3.2 (24B)mistral.ai ↗2026-05-28待核实
Mistral 3 系列发布:Ministral 14B、8B、3B 及 Large 3mistral.ai ↗2026-05-28已核实
NVIDIA 发布 Mistral 3 加速与部署指南NVIDIA Developer Blog ↗2026-05-28已核实
Ministral 14B 和 Mistral Small 有什么区别?mistral.ai ↗2026-05-28待核实
我能在本地运行 Ministral 14B 吗?NVIDIA Developer Blog ↗2026-05-28待核实
Ministral 14B 支持图片输入(视觉)吗?mistral.ai ↗2026-05-28待核实
Ministral 14B 支持哪些语言?mistral.ai ↗2026-05-28待核实
帮助与联系