Views
No views yet
Qwen3.5-4B-gabliterated.q8_0.gguf → Main language model (Q8_0 quantization)mmproj-bf16.gguf → Multimodal projector (bf16, recommended default)mmproj-f32.gguf → Multimodal projector (full f32 precision)mmproj-q8_0.gguf → Multimodal projector (q8_0 quantization)config.json, tokenizer.json, tokenizer_config.json → Necessary configuration filesrun_llamacpp.sh → Convenience launch script (see Usage below)1./llama-server \
2 --model Qwen3.5-4B-gabliterated.q8_0.gguf \
3 --mmproj mmproj-bf16.gguf \
4 --host 0.0.0.0 \
5 --port 8033 \
6 -ngl 99 \
7 -ctk q8_0 \
8 -ctv q8_0 \
9 --jinja \
10 --chat-template-kwargs "{\"enable_thinking\": false}" \
11 --temp 0.7 \
12 --top-p 0.80 \
13 --top-k 20 \
14 --min-p 0.0 \
15 --presence-penalty 1.5 \
16 --repeat-penalty 1.0 \
17 -c 81921--chat-template-kwargs "{\"enable_thinking\": true}" \
2--temp 1.0 --top-p 0.95run_llamacpp.sh1# Basic instruct mode (text-only)
2./run_llamacpp.sh
3
4# Instruct mode + precise/reasoning parameters
5./run_llamacpp.sh --precise
6
7# Thinking mode (step-by-step)
8./run_llamacpp.sh --think
9
10# Vision/language mode (loads projector)
11./run_llamacpp.sh --vl
12
13# Combined: thinking + vision
14./run_llamacpp.sh --think --vl
15
16# Thinking + precise + vision (good for detailed image reasoning / coding with visuals)
17./run_llamacpp.sh --think --precise --vlrun_llamacpp.sh if needed:MODEL="Qwen3.5-4B-gabliterated.q8_0.gguf" → Change if you symlink or rename the main GGUF file.MMPROJ="mmproj-bf16.gguf" → Change to mmproj-q8_0.gguf (smaller, slightly lower quality) or mmproj-f32.gguf (highest precision but larger) depending on your downloaded projector variant.LLAMACPP="${HOME}/Local/llama.cpp/build/bin" → Point to your llama.cpp build directory containing llama-server.