Vision Mistral

Ministral 3 3B

Mistral Ministral 3 with 3B parameters — compact and fast

3B
Parameters
128K
Context Window
1.5×
Credit Rate
Starter
Min Tier

Overview

Ministral 3 3B delivers exceptional speed and efficiency for high-throughput applications requiring rapid inference. With a massive 128,000 token context window, it handles extensive documents and long conversation histories without latency spikes. Developers can integrate this model via our standard API endpoints, enabling first calls within minutes using familiar SDKs and standard authentication protocols. Its 3B parameter count ensures low latency while maintaining robust reasoning capabilities suitable for complex summarization and classification tasks. This compact architecture allows researchers to deploy powerful inference pipelines where larger models prove cost-prohibitive or unnecessarily heavy for specific benchmarks.

Production teams value its proprietary license and starter tier accessibility for immediate deployment. The model supports multilingual interactions, including strong Arabic language capabilities, making it ideal for customer support agents and localized content generation. Cost efficiency is managed through a transparent 1.5x credit multiplier, providing a predictable balance between performance and expenditure for budget planning. This ensures scalable deployment for enterprise workflows without compromising on response quality or compliance standards. Whether building real-time chatbots or analyzing large datasets, this model offers a reliable foundation for next-generation AI solutions that demand both speed and linguistic versatility across diverse user bases.

Specifications

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

Pricing

1.5×
credits per token
1K 1,500 Credits
10K 15,000 Credits
100K 150,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:3b",
    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:3b",
            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:3b",
    "messages": [
      {"role": "user", "content": "Hello!"}
    ]
  }'

Use Cases

Summarizing long documents and reports quickly
Handling real time customer support chatbot interactions
Extracting key data from large text files
Fast drafting of emails and messages
Analyzing extensive logs for error patterns

Related Models

Start building with Ministral 3 3B

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