Назад к моделям
Ministral 14B
mistralmistral/ministral-14b
Гид по API
Chat completion
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 3 | mistral.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 | к проверке |