packages/kilo-docs/pages/ai-providers/mistral.md
Kilo Code supports accessing models through the Mistral AI API, including both standard Mistral models and the code-specialized Codestral model.
Website: https://mistral.ai/
{% tabs %} {% tab label="VSCode (Legacy)" %}
mistral model. If you intend to use codestral-latest, see the "Codestral" section below.{% /tab %} {% tab label="VSCode" %}
Open Settings (gear icon) and go to the Providers tab to add Mistral and enter your API key.
The extension stores this in your kilo.json config file. You can also edit the config file directly — see the CLI tab for the file format.
{% /tab %} {% tab label="CLI" %}
Set the API key as an environment variable or configure it in your kilo.json config file:
Environment variable:
export MISTRAL_API_KEY="your-api-key"
Config file (~/.config/kilo/kilo.json or ./kilo.json):
{
"provider": {
"mistral": {
"env": ["MISTRAL_API_KEY"],
},
},
}
Then set your default model:
{
"model": "mistral/mistral-large-latest",
}
{% /tab %} {% /tabs %}
Mistral's adjustable reasoning support is exposed only for reasoning-capable Mistral Small 4 models: mistral-small-2603 and mistral-small-latest. When one of these models is selected, Kilo offers a high variant that sends reasoningEffort: "high" to the Mistral provider.
Other Mistral models do not get automatic reasoning variants, even if they appear in the same provider. See Mistral's reasoning documentation for provider-level details.
Codestral is a model specifically designed for code generation and interaction. Only for Codestral you could use different endpoints (Default: codestral.mistral.ai). For the La Platforme API Key change the Codestral Base Url to: https://api.mistral.ai
To use Codestral: