Instructions to use meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers 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 meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers 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 meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers:UD-IQ4_XS # Run inference directly in the terminal: llama cli -hf meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers:UD-IQ4_XS
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers:UD-IQ4_XS # Run inference directly in the terminal: llama cli -hf meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers:UD-IQ4_XS
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 meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers:UD-IQ4_XS # Run inference directly in the terminal: ./llama-cli -hf meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers:UD-IQ4_XS
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 meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers:UD-IQ4_XS # Run inference directly in the terminal: ./build/bin/llama-cli -hf meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers:UD-IQ4_XS
Use Docker
docker model run hf.co/meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers:UD-IQ4_XS
- LM Studio
- Jan
- vLLM
How to use meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers", "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/meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers:UD-IQ4_XS
- Ollama
How to use meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers with Ollama:
ollama run hf.co/meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers:UD-IQ4_XS
- Unsloth Desktop
- Pi
How to use meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers:UD-IQ4_XS
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": "meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers:UD-IQ4_XS" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers with Docker Model Runner:
docker model run hf.co/meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers:UD-IQ4_XS
- Lemonade
How to use meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers:UD-IQ4_XS
Run and chat with the model
lemonade run user.Qwen3.8-Flash-Next-UD-IQ4_XS-layers-UD-IQ4_XS
List all available models
lemonade list
- Hermes Agent
How to use meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers:UD-IQ4_XS
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 meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers:UD-IQ4_XS
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers:UD-IQ4_XS
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 "meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers:UD-IQ4_XS" \ --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"
GGUF layer package for running Qwen3.8-Flash-Next-UD-IQ4_XS across a local Mesh LLM cluster.
This package is derived from unsloth/Qwen3.8-Flash-Next-GGUF and keeps the original GGUF distribution split into per-layer artifacts for distributed inference.
Highlights
| Run locally | Pool multiple machines | OpenAI-compatible | Package variant |
|---|---|---|---|
| Private inference on your hardware | Split layers across peers | Serve /v1/chat/completions locally |
Q4_XS layer package |
Model Overview
| Property | Value |
|---|---|
| Source model | unsloth/Qwen3.8-Flash-Next-GGUF |
| Model id | unsloth/Qwen3.8-Flash-Next-GGUF:UD-IQ4_XS |
| Family | Qwen3 |
| Parameter scale | not recorded |
| Quantization | Q4_XS |
| Layer count | 48 |
| Activation width | not recorded |
| Package size | 0 B |
| Source file | UD-IQ4_XS/Qwen3.8-Flash-Next-UD-IQ4_XS-00001-of-00003.gguf |
| Package repo | meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers |
| License | other from unsloth/Qwen3.8-Flash-Next-GGUF |
Recommended Use
- Local and private inference with Mesh LLM.
- Multi-machine serving when the full GGUF is too large for one host.
- OpenAI-compatible chat/completions workflows through Mesh LLM's local API.
For upstream architecture details, chat template guidance, sampling recommendations, license terms, and benchmark notes, see the source model card: unsloth/Qwen3.8-Flash-Next-GGUF.
Quickstart
# Run this on each machine that should contribute memory/compute.
mesh-llm serve --model "meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers" --split
# Check the mesh and discover the OpenAI-compatible model name.
curl -s http://localhost:3131/api/status
curl -s http://localhost:3131/v1/models
# Send an OpenAI-compatible chat request.
curl -s http://localhost:3131/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "unsloth/Qwen3.8-Flash-Next-GGUF:UD-IQ4_XS",
"messages": [{"role": "user", "content": "Write a tiny hello-world function in Rust."}],
"max_tokens": 128
}'
Package Variant
| Property | Value |
|---|---|
| Format | gguf |
| Canonical source ref | unsloth/Qwen3.8-Flash-Next-GGUF@38bb39ee97821de2c9009abb7e93950eec396e66/UD-IQ4_XS/Qwen3.8-Flash-Next-UD-IQ4_XS-00001-of-00003.gguf |
| Source revision | 38bb39ee97821de2c9009abb7e93950eec396e66 |
| Source SHA-256 | 5ce89370720f8bf90890f439361282104c1aa1482d4013bb9a50923e758e71a4 |
| Skippy ABI | not recorded |
| Package manifest SHA-256 | 3799204fc1128d53d3dfdb9464010c282fc13a16872bda912a09e0a2c60f3917 |
What Is Included
| Artifact | Path | Contents | SHA-256 |
|---|---|---|---|
| Manifest | model-package.json |
Package schema, source identity, checksums | 3799204fc1128d53d3dfdb9464010c282fc13a16872bda912a09e0a2c60f3917 |
Validation
Generated by the Mesh LLM HF Jobs splitter from mesh-llm ref 293d61d8fb8be914e5244f754ceb1d67f59f177b.
Each artifact is checksummed as it is written, uploaded to this repository, and removed from the job workspace before the next artifact is produced.
skippy-model-package write-package "/hf-cache/UD-IQ4_XS/Qwen3.8-Flash-Next-UD-IQ4_XS-00001-of-00003.gguf" --out-dir "/tmp/meshllm-layer-job-meshllm_Qwen3.8-Flash-Next-UD-IQ4_XS-layers-14/package"
Links
- Source model: unsloth/Qwen3.8-Flash-Next-GGUF
- Mesh LLM website: meshllm.cloud
- Mesh LLM: github.com/Mesh-LLM/mesh-llm
- Discord: discord.gg/rs6fmc63eN
- Package catalog: meshllm/catalog
- Package format: layer-package-repos.md
- Downloads last month
- -
4-bit
Model tree for meshllm/Qwen3.8-Flash-Next-UD-IQ4_XS-layers
Base model
Qwen/Qwen3.8-Flash-Next