All models

Devstral 2

by Mistral AI

Chat Tools

Devstral 2 is Mistral AI's large coding model, built for software-engineering agents that explore and modify real repositories rather than answer isolated questions. At 123B dense parameters with a 256K-token context and native tool use, it targets long-running agentic development work. It ships under a modified MIT licence that permits commercial use.

Publisher
Mistral AI
Context window
256K tokens
Sizes
123B
Licence
Custom licence
Model card on Hugging Face

Run Devstral 2

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

from pendra import Pendra

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

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

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

Run Devstral 2 on your own UK infrastructure

Deploy a worker, install Devstral 2, and start serving it through one sovereign API endpoint.