LLM plugin providing access to Mistral models using the Mistral API
Install this plugin in the same environment as LLM:
llm install llm-mistralFirst, obtain an API key for the Mistral API.
Configure the key using the llm keys set mistral command:
llm keys set mistral<paste key here>
You can now access the Mistral hosted models. Run llm models for a list.
To run a prompt through mistral-tiny:
llm -m mistral-tiny 'A sassy name for a pet sasquatch'To start an interactive chat session with mistral-small:
llm chat -m mistral-smallChatting with mistral-small
Type 'exit' or 'quit' to exit
Type '!multi' to enter multiple lines, then '!end' to finish
> three proud names for a pet walrus
1. "Nanuq," the Inuit word for walrus, which symbolizes strength and resilience.
2. "Sir Tuskalot," a playful and regal name that highlights the walrus' distinctive tusks.
3. "Glacier," a name that reflects the walrus' icy Arctic habitat and majestic presence.
To use a system prompt with mistral-medium to explain some code:
cat example.py | llm -m mistral-medium -s 'explain this code'The Pixtral models are capable of interpreting images. You can use those like this:
llm -m pixtral-large 'describe this image' \
-a https://static.simonwillison.net/static/2025/two-pelicans.jpgOutput:
This image features two pelicans in flight against a clear blue sky. Pelicans are large water birds known for their long beaks and distinctive throat pouches, which they use for catching fish. In this photo, the birds are flying close to each other, showcasing their expansive wings and characteristic beaks. The clear sky provides a stark contrast, highlighting the details of their feathers and the graceful curves of their wings. The image captures a moment of synchronicity and elegance in nature.
You can pass filenames instead of URLs.
The Voxtral models - voxtral-small and voxtral-mini - are capable of accepting audio input. This currently only works for URLs to MP3 files hosted online:
llm -m voxtral-small \
-a https://static.simonwillison.net/static/2024/pelican-joke-request.mp3Output:
What do you call a pelican with no teeth? A gum-ican
To see a list of Mistral models that support tools (most of them) run:
llm models --tools -q mistralTry one out like this:
llm -m mistral-medium -T llm_time 'What time is it?' --tdMistral models (with the exception of codestral-mamba) also support schemas:
llm -m mistral-small --schema 'name,bio:one sentence' 'invent a cool dog'Output:
{
"name": "CyberHound",
"bio": "A futuristic dog with glowing cybernetic enhancements and the ability to hack into any system."
}All three models accept the following options, using -o name value syntax:
-o temperature 0.7: The sampling temperature, between 0 and 1. Higher increases randomness, lower values are more focused and deterministic.-o top_p 0.1: 0.1 means consider only tokens in the top 10% probability mass. Use this or temperature but not both.-o max_tokens 20: Maximum number of tokens to generate in the completion.-o safe_mode 1: Turns on safe mode, which adds a system prompt to add guardrails to the model output.-o random_seed 123: Set an integer random seed to generate deterministic results.-o prefix 'Prefix here: Set a prefix that will be used for the start of the response. Try{to encourage JSON orGlaDOS:to encourage a roleplay from a specific character.
Run llm models for a full list of Mistral models. This plugin configures the following alias shortcuts:
mistral-tinyformistral/mistral-tinymistral-nemoformistral/open-mistral-nemomistral-small-2312formistral/mistral-small-2312mistral-small-2402formistral/mistral-small-2402mistral-small-2409formistral/mistral-small-2409mistral-small-2501formistral/mistral-small-2501magistral-small-2506formistral/magistral-small-2506magistral-smallformistral/magistral-small-latestmistral-smallformistral/mistral-small-latestmistral-medium-2312formistral/mistral-medium-2312mistral-medium-2505formistral/mistral-medium-2505magistral-medium-2506formistral/magistral-medium-2506magistral-mediumformistral/magistral-medium-latestmistral-mediumformistral/mistral-medium-latestmistral-largeformistral/mistral-large-latestcodestral-mambaformistral/codestral-mamba-latestcodestralformistral/codestral-latestministral-3bformistral/ministral-3b-latestministral-8bformistral/ministral-8b-latestpixtral-12bformistral/pixtral-12b-latestpixtral-largeformistral/pixtral-large-latestdevstral-smallformistral/devstral-small-latestvoxtral-miniformistral/voxtral-mini-2507voxtral-smallformistral/voxtral-small-2507
Mistral sometimes release new models.
To make those models available to an existing installation of llm-mistral run this command:
llm mistral refreshThis will fetch and cache the latest list of available models. They should then become available in the output of the llm models command.
The Mistral Embeddings API can be used to generate 1,024 dimensional embeddings for any text.
To embed a single string:
llm embed -m mistral-embed -c 'this is text'This will return a JSON array of 1,024 floating point numbers.
Mistral's Codestral Embed is an embedding model that specializes in code. LLM supports that in four different sizes:
llm embed -m mistral/codestral-embed-256 -c 'code...'
llm embed -m mistral/codestral-embed-512 -c 'code...'
llm embed -m mistral/codestral-embed-1024 -c 'code...'
llm embed -m mistral/codestral-embed-1536 -c 'code...'
llm embed -m mistral/codestral-embed-3072 -c 'code...'The number is the size of the vector that will be returned.
You can also use codestral-embed which is an alias for the default size, codestral-embed-1536.
The [LLM documentation](https://llm.datasette.io/en/stable/embeddings/index.html) has more, including how to embed in bulk and store the results in a SQLite database.
See [LLM now provides tools for working with embeddings](https://simonwillison.net/2023/Sep/4/llm-embeddings/) and [Embeddings: What they are and why they matter](https://simonwillison.net/2023/Oct/23/embeddings/) for more about embeddings.
## Development
To set up this plugin locally, first checkout the code. Then create a new virtual environment:
```bash
cd llm-mistral
python3 -m venv venv
source venv/bin/activateNow install the dependencies and test dependencies:
llm install -e '.[test]'To run the tests:
pytest