GGUF quantization of mistralai/Devstral-Small-2-24B-Instruct-2512 — a 24B dense multimodal coding model built on Mistral-Small-3.1 with 393K context, vision support, and tool calling.
Quantized to NVFP4 format for efficient inference with minimal quality loss.
About NVFP4
NVFP4 is NVIDIA's native 4-bit floating-point format (E4M3) for Blackwell GPUs. It stores weights in FP4 with a shared per-block scale, enabling native Blackwell tensor core acceleration with no dequantization overhead during inference.
1# Text + Image2llama-cli -m devstral-small-2-nvfp4.gguf \3 --mmproj mmproj-devstral-small-2-f16.gguf \4 --image photo.jpg \5 -p "Describe this image in detail"\6 -n 51278# Text only9llama-cli -m devstral-small-2-nvfp4.gguf \10 -p "Write a Python function to sort a list"\11 -n 5121213# OpenAI-compatible server14llama-server -m devstral-small-2-nvfp4.gguf \15 --mmproj mmproj-devstral-small-2-f16.gguf \16 --port 8080
llama-cpp-python
python
1from llama_cpp import Llama
23llm = Llama.from_pretrained(4 repo_id="FreedomAISVR/Devstral-Small-2-NVFP4-GGUF",5 filename="devstral-small-2-nvfp4.gguf",6 n_gpu_layers=-1,7)89response = llm.create_chat_completion([10{"role":"user","content":"Write a Python function to sort a list"}11])12print(response["choices"][0]["message"]["content"])