All models

Mistral Large 3

by Mistral AI

Chat Vision Tools

Mistral Large 3 is Mistral AI's frontier open-weight model, a mixture-of-experts design that activates a fraction of its parameters per token so inference cost tracks the active size rather than the full one. It reads images as well as text, uses tools natively, and handles a 256K-token context for demanding reasoning and long-document work.

Publisher
Mistral AI
Context window
256K tokens
Sizes
675B
Licence
Apache 2.0
Model card on Hugging Face

Run Mistral Large 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="mistral-large-3:675b",
    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="mistral-large-3:675b",
    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 Mistral Large 3 on your own UK infrastructure

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