mistral plugin registers four contracts: chat completions,
media understanding (Voxtral batch transcription), realtime STT for Voice Call
(Voxtral Realtime), and memory embeddings (mistral-embed).
Getting started
1
Install the plugin
2
Get your API key
Create an API key in the Mistral Console.
3
Run onboarding
4
Set a default model
5
Verify the model is available
Built-in LLM catalog
Browse the plugin catalog row before changing config:
Audio transcription (Voxtral)
Use Voxtral for batch audio transcription through the media understanding pipeline:Voice Call streaming STT
Themistral plugin registers Voxtral Realtime as a Voice Call streaming STT provider.
OpenClaw defaults Mistral realtime STT to
pcm_mulaw at 8 kHz so Voice Call can forward Twilio media frames directly. Use encoding: "pcm_s16le" and a matching sampleRate only if your upstream stream is already raw PCM.Advanced configuration
Adjustable reasoning
Adjustable reasoning
mistral/mistral-small-latest, mistral/mistral-small-2603, and mistral/mistral-medium-3-5 support adjustable reasoning on the Chat Completions API via reasoning_effort (none minimizes extra thinking in the output; high surfaces full thinking traces before the final answer).OpenClaw maps the session thinking level to Mistral’s API:Example model-scoped config for Medium 3.5 reasoning:
Other Mistral catalog models do not use this parameter. Mistral’s native Magistral models are deprecated; use adjustable reasoning on Mistral Small 4 or Mistral Medium 3.5 for current API models.
Memory embeddings
Memory embeddings
Mistral can serve memory embeddings via
/v1/embeddings (default model: mistral-embed):Auth and base URL
Auth and base URL
- Mistral auth uses
MISTRAL_API_KEY(Bearer header). - Provider base URL defaults to
https://api.mistral.ai/v1and accepts the standard OpenAI-compatible chat-completions request shape. - Onboarding default model is
mistral/mistral-large-latest. - Override the base URL under
models.providers.mistral.baseUrlonly when Mistral explicitly publishes a regional endpoint you need.
Related
Model selection
Choosing providers, model refs, and failover behavior.
Media understanding
Audio transcription setup and provider selection.