[!Note] At Mistral, we don't yet have too much experience with providing GGUF-quantized checkpoints to the community, but want to help improving the ecosystem going forward. If you encounter any problems with the provided checkpoints here, please open a discussion or pull request
Mistral-Small-3.1 the vision encoder was removed.Devstral Small 1.0:Devstral Small 1.1 is still great when paired with OpenHands. This new version also generalizes better to other prompts and coding environments.1pip install -U "huggingface_hub[cli]"
2huggingface-cli download \
3"mistralai/Devstral-Small-2507_gguf" \
4--include "Devstral-Small-2507-Q4_K_M.gguf" \
5--local-dir "mistralai/Devstral-Small-2507_gguf/"./llama-cli -m mistralai/Devstral-Small-2507_gguf/Devstral-Small-2507-Q4_K_M.gguf -cnv./llama-server -m mistralai/Devstral-Small-2507_gguf/Devstral-Small-2507-Q4_K_M.gguf -c 0lms cli ~/.lmstudio/bin/lms bootstraplms import Devstral-Small-2507-Q4_K_M.gguf in the directory where you've downloaded the model checkpoint (e.g. mistralai/Devstral-Small-2507_gguf)Devstral Small 2507. Toggle the status button to start the model, in setting oggle Serve on Local Network to be on.devstral-small-2507 and an api address under API Usage. Keep note of this address, we will use it in the next step.1docker pull docker.all-hands.dev/all-hands-ai/runtime:0.48-nikolaik
2
3docker run -it --rm --pull=always \
4 -e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.48-nikolaik \
5 -e LOG_ALL_EVENTS=true \
6 -v /var/run/docker.sock:/var/run/docker.sock \
7 -v ~/.openhands:/.openhands \
8 -p 3000:3000 \
9 --add-host host.docker.internal:host-gateway \
10 --name openhands-app \
11 docker.all-hands.dev/all-hands-ai/openhands:0.48