All models

Ministral 3

by Mistral AI

Chat Vision Tools Thinking

Ministral 3 is Mistral AI's compact instruction model family, offered in several sizes with tool use and image understanding. It's engineered for efficient, low-latency inference on modest hardware while retaining strong general capability, making it a good edge and on-device option.

Publisher
Mistral AI
Context window
256K tokens
Sizes
14B, 3B, 8B
Licence
Apache 2.0
Model card on Hugging Face

Run Ministral 3

Install it on a Pendra worker, then call it through the OpenAI-compatible API with a pdr_sk_ key.

Chat

from pendra import Pendra

client = Pendra(api_key="pdr_sk_...")

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

print(response.choices[0].message.content)

Vision

from pendra import Pendra

client = Pendra(api_key="pdr_sk_...")

response = client.chat.completions.create(
    model="ministral-3:14b",
    messages=[
        {
            "role": "user",
            "content": [
                {"type": "text", "text": "What's in this image?"},
                {"type": "image_url", "image_url": {"url": "https://example.com/photo.jpg"}},
            ],
        }
    ],
)

print(response.choices[0].message.content)

Run Ministral 3 on your own UK infrastructure

Deploy a worker, install Ministral 3, and start serving it through one sovereign API endpoint.