Instructions to use steampunque/Voxtral-Mini-3B-2507-MP-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use steampunque/Voxtral-Mini-3B-2507-MP-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf steampunque/Voxtral-Mini-3B-2507-MP-GGUF:Q6_K_H # Run inference directly in the terminal: llama cli -hf steampunque/Voxtral-Mini-3B-2507-MP-GGUF:Q6_K_H
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf steampunque/Voxtral-Mini-3B-2507-MP-GGUF:Q6_K_H # Run inference directly in the terminal: llama cli -hf steampunque/Voxtral-Mini-3B-2507-MP-GGUF:Q6_K_H
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf steampunque/Voxtral-Mini-3B-2507-MP-GGUF:Q6_K_H # Run inference directly in the terminal: ./llama-cli -hf steampunque/Voxtral-Mini-3B-2507-MP-GGUF:Q6_K_H
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf steampunque/Voxtral-Mini-3B-2507-MP-GGUF:Q6_K_H # Run inference directly in the terminal: ./build/bin/llama-cli -hf steampunque/Voxtral-Mini-3B-2507-MP-GGUF:Q6_K_H
Use Docker
docker model run hf.co/steampunque/Voxtral-Mini-3B-2507-MP-GGUF:Q6_K_H
- LM Studio
- Jan
- Ollama
How to use steampunque/Voxtral-Mini-3B-2507-MP-GGUF with Ollama:
ollama run hf.co/steampunque/Voxtral-Mini-3B-2507-MP-GGUF:Q6_K_H
- Unsloth Studio
How to use steampunque/Voxtral-Mini-3B-2507-MP-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for steampunque/Voxtral-Mini-3B-2507-MP-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for steampunque/Voxtral-Mini-3B-2507-MP-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for steampunque/Voxtral-Mini-3B-2507-MP-GGUF to start chatting
- Pi
How to use steampunque/Voxtral-Mini-3B-2507-MP-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf steampunque/Voxtral-Mini-3B-2507-MP-GGUF:Q6_K_H
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "steampunque/Voxtral-Mini-3B-2507-MP-GGUF:Q6_K_H" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use steampunque/Voxtral-Mini-3B-2507-MP-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf steampunque/Voxtral-Mini-3B-2507-MP-GGUF:Q6_K_H
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "steampunque/Voxtral-Mini-3B-2507-MP-GGUF:Q6_K_H" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use steampunque/Voxtral-Mini-3B-2507-MP-GGUF with Docker Model Runner:
docker model run hf.co/steampunque/Voxtral-Mini-3B-2507-MP-GGUF:Q6_K_H
- Lemonade
How to use steampunque/Voxtral-Mini-3B-2507-MP-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull steampunque/Voxtral-Mini-3B-2507-MP-GGUF:Q6_K_H
Run and chat with the model
lemonade run user.Voxtral-Mini-3B-2507-MP-GGUF-Q6_K_H
List all available models
lemonade list
- Hermes Agent
How to use steampunque/Voxtral-Mini-3B-2507-MP-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf steampunque/Voxtral-Mini-3B-2507-MP-GGUF:Q6_K_H
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default steampunque/Voxtral-Mini-3B-2507-MP-GGUF:Q6_K_H
Run Hermes
hermes
- Atomic Chat
Mixed Precision GGUF layer quantization of Voxtral-Mini-3B-2512 by mistralai
Original model: https://huggingface.co/mistralai/Voxtral-Mini-3B-2507
The hybrid quant employs different quantization levels on a per layer basis to increased flexibility of trading off performance vs file size. Less parameter bits are used at deep layers and more bits at cortex layers to simultaneously optimize quantized size and model performance. The quants are all K to increase processing efficiency on old GPUs or CPUs.
The Q6_K_H layer quant is as follows:
Q5_K_L : attn_v = q8_0 attn_o = q6_k ffn_d = q6_k
Q6_K_S : Q6_K
Q6_K_M : attn_v = q8_0 ffn_d = q8_0
Q6_K_L : attn_v = q8_0 attn_o = q8_0 ffn_d = q8_0
LAYER_TYPES='[
[0 ,"Q6_K_L"],[1 ,"Q6_K_M"],[2 ,"Q6_K_S"],[3 ,"Q5_K_L"],[4 ,"Q5_K_M"],[5 ,"Q5_K_M"],
[6 ,"Q5_K_M"],[7 ,"Q5_K_M"],[8 ,"Q5_K_M"],[9 ,"Q5_K_L"],[10,"Q5_K_L"],[11,"Q5_K_L"],
[12,"Q6_K_S"],[13,"Q5_K_L"],[14,"Q6_K_S"],[15,"Q5_K_L"],[16,"Q6_K_S"],[17,"Q5_K_L"],
[18,"Q6_K_S"],[19,"Q5_K_L"],[20,"Q6_K_S"],[21,"Q6_K_S"],[22,"Q6_K_S"],[23,"Q6_K_S"],
[24,"Q6_K_S"],[25,"Q6_K_S"],[26,"Q6_K_S"],[27,"Q6_K_S"],[28,"Q6_K_M"],[29,"Q6_K_L"]
]'
FLAGS="--token-embedding-type Q6_K --output-tensor-type Q6_K --layer-types-high"
The quant was optimized for reasoning performance across a curated set of test prompts and then checked for performance on BBA eval. This model does not perform well on the curated test prompts and will also hallucinate most knowledge based prompts.
Comparison:
| Quant | size | PPL | Comment |
|---|---|---|---|
| Q6_K | 3.3e9 | 6.9 | - |
| Q6_K_H | 3.2e9 | 6.9 | Hybrid quant with Q6_K embed Q6_K output |
Usage:
This is a audio capable model. It can be used together with its multimedia projector layers to process audio and text inputs and generate text outputs. The mmproj file is made available in this repository. To test audio mode follow the docs in the mtmd readme in the tools directory of the source tree https://github.com/ggml-org/llama.cpp/blob/master/tools/mtmd/README.md .
The unique feature this audio model offers is a built in transcribe mode, which instructs the model to just transcribe a given audio stream with no other prompting.
To trigger the transcribe mode the text "lang:en[TRANSCRIBE] is concatenated to the assistant prompt [/INST]:"
# "<s>[INST][BEGIN_AUDIO]" + "[AUDIO]" * num_expected_frames + "[/INST]lang:en[TRANSCRIBE]"
This prompt can be achieved through the use of prompt injection of "lang:en[TRANSCRIBE] for the beginning of the assistant response, or with a prompt template dedicated to transcription if the inference platform can configure it. Note the [TRANSCRIBE] is a special token in the model vocab and must be tokenized as such to make it work correctly. For other target languages change en to the appropriate language code.
Note that the mtmd in llama.cpp currently does not add the [BEGIN_AUDIO] special token for any Voxtral audio prompt, so the file mtmd.cpp must currently be manually patched as described in https://github.com/ggml-org/llama.cpp/issues/17868 .
--- mtmd.cpp 2025-12-08 13:13:44.202285955 -0500
+++ mtmd.cpp.new 2025-12-08 13:13:29.850285270 -0500
@@ -330,10 +330,10 @@
aud_beg = "<|audio_bos|>";
aud_end = "<|audio_eos|>";
- } else if (proj == PROJECTOR_TYPE_ULTRAVOX) {
+ } else if ((proj == PROJECTOR_TYPE_ULTRAVOX) ||
+ (proj == PROJECTOR_TYPE_VOXTRAL)) {
// [BEGIN_AUDIO] ... (embeddings) ...
aud_beg = "[BEGIN_AUDIO]";
-
}
}
Without the [BEGIN_AUDIO] tag the model performance was found to be quite erratic with audio processing.
A second problem was introduced into llama.cpp at release b7410, which results in truncation of the end of audio clips as described here: https://github.com/ggml-org/llama.cpp/issues/18419 A short test audio file which can be used to diagnose the bug is made available here : https://huggingface.co/steampunque/Voxtral-Mini-3B-2507-Hybrid-GGUF/blob/main/Oppenheimer_Bhagavad-Gita.mp3
Benchmarks:
A full set of audio benchmarks for the model is given here: https://huggingface.co/spaces/steampunque/benchlm
Download the file from below:
| Link | Type | Size/e9 B | Notes |
|---|---|---|---|
| Voxtral-Mini-3B-2507.Q6_K_H.gguf | Q6_K_H | 3.2e9 B | ~Q6_K size |
| Voxtral-Mini-3B-2507.mmproj.gguf | F16 | 1.3e9 B | multimedia projector |
A discussion thread about the hybrid layer quant approach can be found here on the llama.cpp git repository:
- Downloads last month
- 21
6-bit
Model tree for steampunque/Voxtral-Mini-3B-2507-MP-GGUF
Base model
mistralai/Voxtral-Mini-3B-2507