Vision Mistral

Ministral 3 14B

Mistral Ministral 3 with 14B parameters

14B
Parameters
128K
Context Window
2.5×
Credit Rate
Starter
Min Tier

Overview

Ministral 3 14B delivers exceptional performance for its size, optimized for complex reasoning and extended context processing within the Mistral family. Featuring a 128,000-token context window and FP16 precision, this proprietary model handles long-document analysis and multi-turn conversations with high fidelity. Developers can integrate immediately via standard API endpoints, requiring minimal configuration to start building. The 2.5x credit multiplier ensures cost-effective scaling for production workflows, making it an ideal choice for applications demanding balanced speed and intelligence without excessive overhead. Benchmarks indicate competitive accuracy against larger alternatives, validating its utility for research pipelines requiring efficient inference.

Engineered for global deployment, Ministral 3 14B provides robust native support for Arabic and English, ensuring accurate nuance in regional applications. The proprietary license guarantees commercial stability, while our transparent credit system allows decision-makers to forecast expenses accurately without hidden fees. Whether powering customer support agents or analyzing technical documentation, this model meets enterprise-grade reliability standards. Accessible on the starter tier, it removes barriers to entry for teams validating AI pipelines before committing to larger infrastructure investments. Pricing remains predictable through the credit multiplier, eliminating the need for sales consultations during initial prototyping.

Specifications

Display Name Ministral 3 14B
Family Mistral
Category Vision
Parameters 14B
Context Window 128,000 tokens
Quantization FP16
License PROPRIETARY
Min Tier Starter
Status Available

Pricing

2.5×
credits per token
1K 2,500 Credits
10K 25,000 Credits
100K 250,000 Credits
View Pricing Plans

Code Examples

from openai import OpenAI

client = OpenAI(
    base_url="https://llmapi.resayil.io/v1/",
    api_key="YOUR_API_KEY"
)

response = client.chat.completions.create(
    model="ministral-3:14b",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)

print(response.choices[0].message.content)
const response = await fetch(
    "https://llmapi.resayil.io/v1/chat/completions",
    {
        method: "POST",
        headers: {
            "Content-Type": "application/json",
            "Authorization": "Bearer YOUR_API_KEY"
        },
        body: JSON.stringify({
            model: "ministral-3:14b",
            messages: [
                { role: "user", content: "Hello!" }
            ]
        })
    }
);

const data = await response.json();
console.log(data.choices[0].message.content);
curl https://llmapi.resayil.io/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "ministral-3:14b",
    "messages": [
      {"role": "user", "content": "Hello!"}
    ]
  }'

Use Cases

Summarizing extensive reports and extracting key insights
Answering questions based on large document contexts
Assisting developers with code review and debugging
Analyzing legal contracts for specific clause extraction
Building chatbots capable of handling long conversations

Related Models

Start building with Ministral 3 14B

Get 1,000 free credits when you sign up — no credit card required.