Ministral 3 3B 2512

Mistral chatvisiontool_use

API ID: mistralai/ministral-3b-2512

Input Price
$0.10
/1M tokens
Output Price
$0.10
/1M tokens

About Ministral 3 3B 2512

Ministral 3B is Mistral AI's most compact model, designed for edge deployment and resource-constrained environments. With just 3 billion parameters, it runs efficiently on mobile devices and embedded systems while maintaining useful capability. The model handles basic conversation, simple tasks, and content generation effectively despite its small size. Ministral 3B features optimized architecture for minimal resource usage and fast inference. It's ideal for on-device AI, IoT applications, and scenarios where larger models aren't feasible. For developers building AI into the smallest devices, Ministral 3B provides capable AI in a tiny package. It represents Mistral's commitment to making AI accessible across all deployment scenarios.

๐Ÿ’ฐ
Price Ranking
#610 lowest price among 950 Chat models

Model Specifications

Context Length
131k
Max Output
โ€”
Release Date
2025-12-02
Capabilities
chat vision tool_use
Input Modalities
textimage
Output Modalities
text

Best For

  • Image analysis, document understanding, visual Q&A
  • Conversations, content writing, general assistance

๐Ÿ’ฐ Real-World Cost Examples

Estimated monthly costs for common use cases

Personal AI Assistant
$0.07
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$2.40
/month
1000 tickets/day, ~800 tokens each

Mistral Model Lineup

Compare all models from Mistral to find the best fit

Model Input Output Context Capabilities
Ministral 3 3B 2512 Current Free Free 131k chat vision tool_use
Pixtral 12B Free Free 4k chat vision
Mistral 7B Instruct v0.3 Free Free 33k chat
Mistral 7B Instruct Free Free 33k chat
Mixtral 8x22B (base) Free Free 66k chat
Mixtral 8x22B (base) Free Free 66k chat

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

Zhipu AI GLM 4 32B
Input: $0.10
Output: $0.10
Context: 33k
Microsoft Phi 4
Input: $0.06
Output: $0.14
Context: 16k
NVIDIA Nemotron Nano 9B V2
Input: $0.04
Output: $0.16
Context: 131k
Other Trinity Mini
Input: $0.04
Output: $0.15
Context: 131k

๐Ÿš€ Quick Start

Get started with Ministral 3 3B 2512 API

OpenAI-compatible SDK
from openai import OpenAI

client = OpenAI(
    base_url="https://api.provider.com/v1",
    api_key="YOUR_API_KEY"
)

response = client.chat.completions.create(
    model="mistralai/ministral-3b-2512",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)