Instructions to use Nielk38/Qwen3.8-Flash-Next-GGUF-SPLIT 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 Nielk38/Qwen3.8-Flash-Next-GGUF-SPLIT 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 Nielk38/Qwen3.8-Flash-Next-GGUF-SPLIT:UD-Q2_K_XL # Run inference directly in the terminal: llama cli -hf Nielk38/Qwen3.8-Flash-Next-GGUF-SPLIT:UD-Q2_K_XL
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Nielk38/Qwen3.8-Flash-Next-GGUF-SPLIT:UD-Q2_K_XL # Run inference directly in the terminal: llama cli -hf Nielk38/Qwen3.8-Flash-Next-GGUF-SPLIT:UD-Q2_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 Nielk38/Qwen3.8-Flash-Next-GGUF-SPLIT:UD-Q2_K_XL # Run inference directly in the terminal: ./llama-cli -hf Nielk38/Qwen3.8-Flash-Next-GGUF-SPLIT:UD-Q2_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 Nielk38/Qwen3.8-Flash-Next-GGUF-SPLIT:UD-Q2_K_XL # Run inference directly in the terminal: ./build/bin/llama-cli -hf Nielk38/Qwen3.8-Flash-Next-GGUF-SPLIT:UD-Q2_K_XL
Use Docker
docker model run hf.co/Nielk38/Qwen3.8-Flash-Next-GGUF-SPLIT:UD-Q2_K_XL
- LM Studio
- Jan
- vLLM
How to use Nielk38/Qwen3.8-Flash-Next-GGUF-SPLIT with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Nielk38/Qwen3.8-Flash-Next-GGUF-SPLIT" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Nielk38/Qwen3.8-Flash-Next-GGUF-SPLIT", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Nielk38/Qwen3.8-Flash-Next-GGUF-SPLIT:UD-Q2_K_XL
- Ollama
How to use Nielk38/Qwen3.8-Flash-Next-GGUF-SPLIT with Ollama:
ollama run hf.co/Nielk38/Qwen3.8-Flash-Next-GGUF-SPLIT:UD-Q2_K_XL
- Unsloth Desktop
- Pi
How to use Nielk38/Qwen3.8-Flash-Next-GGUF-SPLIT with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Nielk38/Qwen3.8-Flash-Next-GGUF-SPLIT:UD-Q2_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": "Nielk38/Qwen3.8-Flash-Next-GGUF-SPLIT:UD-Q2_K_XL" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use Nielk38/Qwen3.8-Flash-Next-GGUF-SPLIT with Docker Model Runner:
docker model run hf.co/Nielk38/Qwen3.8-Flash-Next-GGUF-SPLIT:UD-Q2_K_XL
- Lemonade
How to use Nielk38/Qwen3.8-Flash-Next-GGUF-SPLIT with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Nielk38/Qwen3.8-Flash-Next-GGUF-SPLIT:UD-Q2_K_XL
Run and chat with the model
lemonade run user.Qwen3.8-Flash-Next-GGUF-SPLIT-UD-Q2_K_XL
List all available models
lemonade list
- Hermes Agent
How to use Nielk38/Qwen3.8-Flash-Next-GGUF-SPLIT with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Nielk38/Qwen3.8-Flash-Next-GGUF-SPLIT:UD-Q2_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 Nielk38/Qwen3.8-Flash-Next-GGUF-SPLIT:UD-Q2_K_XL
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use Nielk38/Qwen3.8-Flash-Next-GGUF-SPLIT with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Nielk38/Qwen3.8-Flash-Next-GGUF-SPLIT:UD-Q2_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 "Nielk38/Qwen3.8-Flash-Next-GGUF-SPLIT:UD-Q2_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"
Qwen3.8-Flash-Next-GGUF-SPLIT
Lossless GGUF re-sharding of unsloth/Qwen3.8-Flash-Next-GGUF, using the Unsloth Dynamic UD-Q2_K_XL quantization.
The original quantized tensors are preserved. This is a split, not a requantization.
Included quantization
| Quantization | Total size | Shards | llama.cpp type |
|---|---|---|---|
Qwen3.8-Flash-Next-UD-Q2_K_XL |
78,869,130,144 bytes | 13 | Q2_K - Medium |
| File | Bytes | SHA-256 |
|---|---|---|
Qwen3.8-Flash-Next-UD-Q2_K_XL-00001-of-00013.gguf |
375,531,808 | f478bdd42e2ae59f6e7eed41748b298cd4a82b6e6e3f5523b2998140db55a785 |
Qwen3.8-Flash-Next-UD-Q2_K_XL-00002-of-00013.gguf |
28,800,138,432 | 682b0f9aa1b3a395d7c8260bd9743970a7d7ddb09a7ebe7e828f8c0ff9a7211b |
Qwen3.8-Flash-Next-UD-Q2_K_XL-00003-of-00013.gguf |
4,752,442,848 | bd19fdd67776bac4982499574af1b167798683bb63a9c4a8deaf92d20c1913e3 |
Qwen3.8-Flash-Next-UD-Q2_K_XL-00004-of-00013.gguf |
4,810,631,520 | 533813dd16ceb8d28ad2f2f2609bd698df994406038869402d480457a571b03e |
Qwen3.8-Flash-Next-UD-Q2_K_XL-00005-of-00013.gguf |
4,862,601,376 | d1e37377a215b0c49f93d4522737149cd443ff6ac41cc922a2e53025997b246c |
Qwen3.8-Flash-Next-UD-Q2_K_XL-00006-of-00013.gguf |
4,637,864,256 | 96bf228245d9145f3adb17f1b496b5bd1d9ef8f6b35210c07737f8251c9aecfe |
Qwen3.8-Flash-Next-UD-Q2_K_XL-00007-of-00013.gguf |
4,810,631,616 | 3fc5534bffe752c241dbda43c7ec0c04d0325af262033cc7abf1f2b26535e159 |
Qwen3.8-Flash-Next-UD-Q2_K_XL-00008-of-00013.gguf |
4,868,358,560 | abbca5605a3f6040a33b94938086327f0c4f0ed594e8e33216b2a981b8b0b9b6 |
Qwen3.8-Flash-Next-UD-Q2_K_XL-00009-of-00013.gguf |
4,627,091,776 | de3cb71d033e74c64618b3f3de7bbb1144ab6a93534e90ccfa223ad9bf7dcbda |
Qwen3.8-Flash-Next-UD-Q2_K_XL-00010-of-00013.gguf |
4,810,631,616 | bedc57cd1b1426403f42c84c88d9a330b53b4a08621da30151c0aefba8b9fea2 |
Qwen3.8-Flash-Next-UD-Q2_K_XL-00011-of-00013.gguf |
4,862,601,408 | 09467d5ec1d05e5afa89bd8828f256fa0bccfade478523892a2d03145f935d0d |
Qwen3.8-Flash-Next-UD-Q2_K_XL-00012-of-00013.gguf |
4,637,864,256 | e8c9fed9407bd14baed359a6d4d91324e9b3f9c2929e60b51c7c78151fb4b232 |
Qwen3.8-Flash-Next-UD-Q2_K_XL-00013-of-00013.gguf |
2,012,740,672 | 9bfbfc1aa0b2f0e10ed7c88ce8a197665c36c6328e1bf5ec64bdbea777f43546 |
Shard-size limitation
Shard 00002 contains one indivisible 28,800,138,240-byte PLE/n-gram embedding tensor. GGUF split files preserve whole tensors, so this shard cannot be reduced to 4.9 GB without changing the format and breaking standard llama.cpp compatibility. Every other data shard was produced with a 4900M maximum.
Required llama.cpp build
At publication time, this experimental qwen4exp architecture requires llama.cpp PR #27742, as linked by the source repository.
Run with llama.cpp
Download all 13 shards into the same directory:
hf download Nielk38/Qwen3.8-Flash-Next-GGUF-SPLIT \
--include "*.gguf" \
--local-dir ./Qwen3.8-Flash-Next-GGUF-SPLIT
Load only the first shard; llama.cpp discovers the other 12 automatically:
llama-cli \
-m ./Qwen3.8-Flash-Next-GGUF-SPLIT/Qwen3.8-Flash-Next-UD-Q2_K_XL-00001-of-00013.gguf \
-ngl auto \
-lm mmap \
-c 2048
For CPU-only execution, add -dev none -ngl 0. The model is larger than 32 GB RAM, so mmap-backed host/SSD paging is required on systems with similar memory capacity.
Provenance and validation
- Source repository:
unsloth/Qwen3.8-Flash-Next-GGUF - Source revision:
8bdc666649440e9bdc97e16f3f75782c98478ff5 - Source shard SHA-256:
a4f3b21e77353999829f2f767e9ac21ce9c71d29a74f2cc9eda48c9bf23c8b86(00001-of-00003)2e3bf1ee7d2a04e261e9f342a2d968f696cce5941d082b0e434deb9b1edc12c6(00002-of-00003)ec8c106759fdf4f463039c34c0707718d7d8908d53d892bd4f002e71620803f9(00003-of-00003)
- Splitter:
llama-gguf-splitfrom llama.cpp build226, commit035e227 - Split commands:
llama-gguf-split --merge \
Qwen3.8-Flash-Next-UD-Q2_K_XL-00001-of-00003.gguf \
Qwen3.8-Flash-Next-UD-Q2_K_XL.gguf
llama-gguf-split --split --split-max-size 4900M \
Qwen3.8-Flash-Next-UD-Q2_K_XL.gguf \
Qwen3.8-Flash-Next-UD-Q2_K_XL
Validated locally on 2026-08-27 with llama.cpp build 226 (035e227) and an AMD Radeon RX 7900 XTX by loading shard 00001 directly. The prompt What is 2+2? Answer with only the numeral. returned 4.
All 1,224 tensors and 78,858,104,320 logical tensor bytes were read back from the 13 output shards in order. Their logical tensor SHA-256 matches the merged source:
7df6751fb6b8190f2ea6050219e98d157a530c94eb11f568324887e2348dc32b
See SHA256SUMS for machine-readable container checksums.
- Downloads last month
- 122
2-bit
Model tree for Nielk38/Qwen3.8-Flash-Next-GGUF-SPLIT
Base model
Qwen/Qwen3.8-Flash-Next