Instructions to use unsloth/Qwen3.8-Flash-Next-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 unsloth/Qwen3.8-Flash-Next-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 unsloth/Qwen3.8-Flash-Next-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: llama cli -hf unsloth/Qwen3.8-Flash-Next-GGUF:UD-Q4_K_XL
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf unsloth/Qwen3.8-Flash-Next-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: llama cli -hf unsloth/Qwen3.8-Flash-Next-GGUF:UD-Q4_K_XL
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 unsloth/Qwen3.8-Flash-Next-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: ./llama-cli -hf unsloth/Qwen3.8-Flash-Next-GGUF:UD-Q4_K_XL
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 unsloth/Qwen3.8-Flash-Next-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: ./build/bin/llama-cli -hf unsloth/Qwen3.8-Flash-Next-GGUF:UD-Q4_K_XL
Use Docker
docker model run hf.co/unsloth/Qwen3.8-Flash-Next-GGUF:UD-Q4_K_XL
- LM Studio
- Jan
- vLLM
How to use unsloth/Qwen3.8-Flash-Next-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "unsloth/Qwen3.8-Flash-Next-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "unsloth/Qwen3.8-Flash-Next-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/unsloth/Qwen3.8-Flash-Next-GGUF:UD-Q4_K_XL
- Ollama
How to use unsloth/Qwen3.8-Flash-Next-GGUF with Ollama:
ollama run hf.co/unsloth/Qwen3.8-Flash-Next-GGUF:UD-Q4_K_XL
- Unsloth Desktop
- Pi
How to use unsloth/Qwen3.8-Flash-Next-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf unsloth/Qwen3.8-Flash-Next-GGUF:UD-Q4_K_XL
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "unsloth/Qwen3.8-Flash-Next-GGUF:UD-Q4_K_XL" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use unsloth/Qwen3.8-Flash-Next-GGUF with Docker Model Runner:
docker model run hf.co/unsloth/Qwen3.8-Flash-Next-GGUF:UD-Q4_K_XL
- Lemonade
How to use unsloth/Qwen3.8-Flash-Next-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull unsloth/Qwen3.8-Flash-Next-GGUF:UD-Q4_K_XL
Run and chat with the model
lemonade run user.Qwen3.8-Flash-Next-GGUF-UD-Q4_K_XL
List all available models
lemonade list
- Hermes Agent
How to use unsloth/Qwen3.8-Flash-Next-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 unsloth/Qwen3.8-Flash-Next-GGUF:UD-Q4_K_XL
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 unsloth/Qwen3.8-Flash-Next-GGUF:UD-Q4_K_XL
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use unsloth/Qwen3.8-Flash-Next-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf unsloth/Qwen3.8-Flash-Next-GGUF:UD-Q4_K_XL
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 "unsloth/Qwen3.8-Flash-Next-GGUF:UD-Q4_K_XL" \ --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"
Run 170 tokens/s Qwen3.8-Flash with MTP! β‘
pinnedπ₯β€οΈ 9
10
#56 opened 6 days ago
by
danielhanchen
All Qwen3.8-Flash quants are here! π₯ Run in Unsloth Desktop!
pinnedβ€οΈ 18
8
#33 opened 12 days ago
by
danielhanchen
Request: a UD quant between IQ4_XS (93.7 GB) and Q4_K_XL (111 GB) for 128 GB unified-memory machines (Strix Halo)
π 1
#67 opened about 3 hours ago
by
bitlamas
UD-IQ1_M on 6GB VRAM (GTX 1660 Ti): numbers, ladder to 128k, hiccups + fixes
1
#66 opened 2 days ago
by
TitanMamo10
Run UD-Q4-K-XL on 16GB VRAM and 32 GB RAM at 10+ tok/s
2
#65 opened 2 days ago
by
Apolog1ze-Dev
Why are PLE/ngram weights quantized at all?
#64 opened 2 days ago
by
yurah
The best model under 200B reaches near-10 exact batch throughput on one laptop CPU
#63 opened 3 days ago
by
shyringo
Qwen3.8-Flash-Next UD-Q2_K_XL: deterministic exact-literal truncation with contrasting long-context fidelity vs Q2_K
#62 opened 3 days ago
by
nkoriyama
Quick share: Got 30β40 t/s on the RTX 5060 Ti 16GB
9
#61 opened 4 days ago
by
QilinWan
Too slow in 2 x H100, got decode 40t/s
3
#60 opened 4 days ago
by
tientitmu
Small gain with MTP
6
#59 opened 5 days ago
by
OmarColocci
Strange URL lookup when using agentic tools with it
1
#58 opened 6 days ago
by
vico44
Claude code cli errors out with llama.cpp
#57 opened 6 days ago
by
heapmaster
Tested new MTP module with UD-Q4_K_XL on Pro 6000 Max-Q
πβ€οΈ 10
2
#55 opened 7 days ago
by
KouKou1986
MTP loading errors with IQ3_XXS quantz
βπ 15
11
#54 opened 7 days ago
by
vico44
can we have a gguf varity where ngram layer 2 is at q8?
#53 opened 8 days ago
by
mayankiit04
Qwen3.8-Flash-Next (qwen4exp) garbage output on Strix Halo (gfx1151) over ROCm 7.x - root cause and verified fix (build from PR #27941)
ππ 8
5
#52 opened 8 days ago
by
k-mktr
Is it possible to made a GGUF without N-gram?
3
#51 opened 8 days ago
by
BVEsun
How can I improve the prefilling speed for this model?
14
#49 opened 9 days ago
by
BipedalBit
Getting 10+ tok/s on a 3060 laptop with 48GB RAM
π₯ 10
1
#48 opened 9 days ago
by
2vibeornot2vibe
context type MTP requested but model doesn't contain MTP layers
π 4
4
#47 opened 9 days ago
by
Manhandle6292
Is it possible to run it with a combined memory setup: 16 GB VRAM + 64 GB RAM + SSD for offloading n-grams?
6
#46 opened 10 days ago
by
testtestad
Qwen3.8-Flash-Next on Strix Halo: ~40 tok/s code at 120K+ context
π 9
4
#45 opened 10 days ago
by
Engardium
Can the 51B n-gram table be kept on NVMe/SSD?
6
#44 opened 10 days ago
by
NamerPRO
I'm a beginner, how do I use GGUF files that contain multiple files?
4
#43 opened 10 days ago
by
jevencheung
Q4_K_XL / llama-server / Hallucination after 150k of filled context
2
#42 opened 10 days ago
by
manisab
Works on my machine
π€― 2
#41 opened 11 days ago
by
emcourtney
Qwen3.8-Flash-Next: deep-context decode slowdown + top_k crash + MTP results (3x RTX 3090, full log)
4
#40 opened 11 days ago
by
karantula
4x slower than it should be? π’
π€π 5
13
#38 opened 11 days ago
by
auf1r2
3060 12 gb
9
#37 opened 11 days ago
by
deluxenew
nice work!
β€οΈπ₯ 3
2
#36 opened 11 days ago
by
smilegirom
Is the n-gram chunk embedded in the gguf(s), and is it ~51GB independent of quantization?
14
#35 opened 12 days ago
by
dagb
Measured: ngram-map-k beats ngram-mod; ngram-cache costs -24% on prose (5060 Ti 16GB + 128GB)
ππ 6
2
#34 opened 12 days ago
by
solarkyle
Frankenstein needs help for settings
6
#32 opened 12 days ago
by
svarognsa
Early report running it on a DGX Spark, 4 concurrent @ 256k bf16 with SSD offload
π 7
4
#31 opened 12 days ago
by
sleepyeldrazi
Bug: Gibberish output on Strix Halo since Unsloth Desktop sets GGML_CUDA_ENABLE_UNIFIED_MEMORY=1 on HIP build
π 1
10
#30 opened 12 days ago
by
adi-0
NVME vs Optane?
3
#29 opened 12 days ago
by
AndyFaceHugger
strix halo 128gb recommendations
21
#28 opened 12 days ago
by
dilavni
Thinking Nightmare
π§ 2
10
#27 opened 12 days ago
by
WhiteDan64
imatrix file
1
#25 opened 12 days ago
by
erazortt
Tested on RTX5070TI 16GB VRAM: 20 t/s
ππ 10
11
#24 opened 12 days ago
by
WhiteDan64
How to keep n-gram table on fast nvme ssd
20
#23 opened 12 days ago
by
mayankiit04
Question about loading the model with RTX 4090 and RTX 6000 pro?
7
#22 opened 12 days ago
by
LukeC110
MTP support in Q4 ?
π 3
5
#21 opened 12 days ago
by
dpachong
Are these quants using Unsloth UD 3.0 or 2.0?
5
#20 opened 13 days ago
by
InfernalDread
While waiting for Q6...
π 1
1
#17 opened 13 days ago
by
auf1r2
Suggestion: Support for Ngram SSD Offloading in Unsloth Desktop
β 28
4
#15 opened 13 days ago
by
wuyule
i wanted to test the new unsloth studio for this model but it hangs all the time
4
#13 opened 13 days ago
by
Manni1000
Is it even worth trying to run the 1-bit version?
9
#12 opened 13 days ago
by
testtestad
Is it possible to offload n-gram to an NVMe SSD?
ππ 31
14
#11 opened 13 days ago
by
lingyezhixing