Instructions to use techwithsergiu/Qwen3.5-text-0.8B-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 techwithsergiu/Qwen3.5-text-0.8B-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 techwithsergiu/Qwen3.5-text-0.8B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf techwithsergiu/Qwen3.5-text-0.8B-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf techwithsergiu/Qwen3.5-text-0.8B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf techwithsergiu/Qwen3.5-text-0.8B-GGUF:Q4_K_M
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 techwithsergiu/Qwen3.5-text-0.8B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf techwithsergiu/Qwen3.5-text-0.8B-GGUF:Q4_K_M
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 techwithsergiu/Qwen3.5-text-0.8B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf techwithsergiu/Qwen3.5-text-0.8B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/techwithsergiu/Qwen3.5-text-0.8B-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use techwithsergiu/Qwen3.5-text-0.8B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "techwithsergiu/Qwen3.5-text-0.8B-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": "techwithsergiu/Qwen3.5-text-0.8B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/techwithsergiu/Qwen3.5-text-0.8B-GGUF:Q4_K_M
- Ollama
How to use techwithsergiu/Qwen3.5-text-0.8B-GGUF with Ollama:
ollama run hf.co/techwithsergiu/Qwen3.5-text-0.8B-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use techwithsergiu/Qwen3.5-text-0.8B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf techwithsergiu/Qwen3.5-text-0.8B-GGUF:Q4_K_M
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": "techwithsergiu/Qwen3.5-text-0.8B-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use techwithsergiu/Qwen3.5-text-0.8B-GGUF with Docker Model Runner:
docker model run hf.co/techwithsergiu/Qwen3.5-text-0.8B-GGUF:Q4_K_M
- Lemonade
How to use techwithsergiu/Qwen3.5-text-0.8B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull techwithsergiu/Qwen3.5-text-0.8B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Qwen3.5-text-0.8B-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use techwithsergiu/Qwen3.5-text-0.8B-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 techwithsergiu/Qwen3.5-text-0.8B-GGUF:Q4_K_M
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 techwithsergiu/Qwen3.5-text-0.8B-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use techwithsergiu/Qwen3.5-text-0.8B-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf techwithsergiu/Qwen3.5-text-0.8B-GGUF:Q4_K_M
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 "techwithsergiu/Qwen3.5-text-0.8B-GGUF:Q4_K_M" \ --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"
Upload a Text-Only GGUF models
Browse files- .gitattributes +8 -0
- Qwen3.5-text-0.8B-F16.gguf +3 -0
- Qwen3.5-text-0.8B-Q4_K_M.gguf +3 -0
- Qwen3.5-text-0.8B-Q4_K_S.gguf +3 -0
- Qwen3.5-text-0.8B-Q5_K_M.gguf +3 -0
- Qwen3.5-text-0.8B-Q6_K.gguf +3 -0
- Qwen3.5-text-0.8B-Q8_0.gguf +3 -0
- README.md +95 -0
- diagrams/diagram_01.png +3 -0
- diagrams/diagram_02.png +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,11 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
Qwen3.5-text-0.8B-F16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Qwen3.5-text-0.8B-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Qwen3.5-text-0.8B-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Qwen3.5-text-0.8B-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Qwen3.5-text-0.8B-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Qwen3.5-text-0.8B-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
diagrams/diagram_01.png filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
diagrams/diagram_02.png filter=lfs diff=lfs merge=lfs -text
|
Qwen3.5-text-0.8B-F16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bb54ae1ebaa62fb9ed17d7cd28a90920a6530ae3645a2636c9c01f8023a23b0a
|
| 3 |
+
size 1516743392
|
Qwen3.5-text-0.8B-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9ff92d3f680206e355119b14682846972c40ec95ebdf9c9a28881be1615fa794
|
| 3 |
+
size 527502048
|
Qwen3.5-text-0.8B-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eaad169d2b555d8c7c92cb9eb9c40751572765b1a2521f7314e9205f8df65fa3
|
| 3 |
+
size 503089888
|
Qwen3.5-text-0.8B-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:631bfef7d6a8e5fd81f22dc38b816bc7d23aa0a615430baee4463b7ea7360115
|
| 3 |
+
size 584821472
|
Qwen3.5-text-0.8B-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1a1f545d66c2c0f75825b2d2f5bb9f49f30e35aa323efefde23f16b3b0a8dcbc
|
| 3 |
+
size 629742816
|
Qwen3.5-text-0.8B-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3df90690d9d482ccd76b768a8249dc3d05a1f712992b7f598be88a2895d9f3b7
|
| 3 |
+
size 811842272
|
README.md
ADDED
|
@@ -0,0 +1,95 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- techwithsergiu
|
| 4 |
+
- gguf
|
| 5 |
+
library_name: gguf
|
| 6 |
+
license: apache-2.0
|
| 7 |
+
license_link: https://huggingface.co/Qwen/Qwen3.5-0.8B/blob/main/LICENSE
|
| 8 |
+
pipeline_tag: text-generation
|
| 9 |
+
base_model:
|
| 10 |
+
- techwithsergiu/Qwen3.5-text-0.8B
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# Qwen3.5-text-0.8B-GGUF
|
| 14 |
+
|
| 15 |
+
<img width="400px" src="https://qianwen-res.oss-accelerate.aliyuncs.com/logo_qwen3.5.png">
|
| 16 |
+
|
| 17 |
+
GGUF quants of [techwithsergiu/Qwen3.5-text-0.8B](https://huggingface.co/techwithsergiu/Qwen3.5-text-0.8B) —
|
| 18 |
+
the text-only bf16 derivative of [Qwen/Qwen3.5-0.8B](https://huggingface.co/Qwen/Qwen3.5-0.8B).
|
| 19 |
+
|
| 20 |
+
The visual tower has been removed before conversion. All text-backbone weights are
|
| 21 |
+
**identical** to the original — no retraining, no weight changes, no quality loss for
|
| 22 |
+
text tasks.
|
| 23 |
+
|
| 24 |
+
## Quants
|
| 25 |
+
|
| 26 |
+
| File | Type | Size | Notes |
|
| 27 |
+
|---|---|---|---|
|
| 28 |
+
| `Qwen3.5-text-0.8B-Q8_0.gguf` | Q8_0 | ~53% of f16 | near-lossless — for high-quality inference |
|
| 29 |
+
| `Qwen3.5-text-0.8B-Q6_K.gguf` | Q6_K | ~41% of f16 | excellent quality, good balance with f16 |
|
| 30 |
+
| `Qwen3.5-text-0.8B-Q5_K_M.gguf` | Q5_K_M | ~37% of f16 | very good quality, smaller than Q6 |
|
| 31 |
+
| `Qwen3.5-text-0.8B-Q4_K_M.gguf` | Q4_K_M | ~31% of f16 | ✅ recommended — best size/quality balance |
|
| 32 |
+
| `Qwen3.5-text-0.8B-Q4_K_S.gguf` | Q4_K_S | ~30% of f16 | optional — slightly smaller, slightly lower quality |
|
| 33 |
+
|
| 34 |
+
## Model family
|
| 35 |
+
|
| 36 |
+

|
| 37 |
+
|
| 38 |
+
| Model | Type | Base model |
|
| 39 |
+
|---|---|---|
|
| 40 |
+
| [Qwen/Qwen3.5-0.8B](https://huggingface.co/Qwen/Qwen3.5-0.8B) | f16 · VLM · source | — |
|
| 41 |
+
| [techwithsergiu/Qwen3.5-0.8B-bnb-4bit](https://huggingface.co/techwithsergiu/Qwen3.5-0.8B-bnb-4bit) | BNB NF4 · VLM | Qwen/Qwen3.5-0.8B |
|
| 42 |
+
| [techwithsergiu/Qwen3.5-text-0.8B](https://huggingface.co/techwithsergiu/Qwen3.5-text-0.8B) | bf16 · text-only | Qwen/Qwen3.5-0.8B |
|
| 43 |
+
| [techwithsergiu/Qwen3.5-text-0.8B-bnb-4bit](https://huggingface.co/techwithsergiu/Qwen3.5-text-0.8B-bnb-4bit) | BNB NF4 · text-only | Qwen3.5-text-0.8B |
|
| 44 |
+
| **[techwithsergiu/Qwen3.5-text-0.8B-GGUF](https://huggingface.co/techwithsergiu/Qwen3.5-text-0.8B-GGUF)** | GGUF quants | Qwen3.5-text-0.8B |
|
| 45 |
+
|
| 46 |
+
The GGUF repo is derived from the text-only f16 model — same weights, different container
|
| 47 |
+
format. `base_model` points to the f16 text variant to keep the VLM and text lineages
|
| 48 |
+
distinct on the Hub.
|
| 49 |
+
|
| 50 |
+
## Inference
|
| 51 |
+
|
| 52 |
+
### llama.cpp
|
| 53 |
+
|
| 54 |
+
```bash
|
| 55 |
+
./llama.cpp/build/bin/llama-cli \
|
| 56 |
+
-m Qwen3.5-text-0.8B-Q4_K_M.gguf \
|
| 57 |
+
-p "What is the capital of Romania?" \
|
| 58 |
+
-n 256
|
| 59 |
+
```
|
| 60 |
+
|
| 61 |
+
### LM Studio
|
| 62 |
+
|
| 63 |
+
Load any `.gguf` file from this repo directly in [LM Studio](https://lmstudio.ai).
|
| 64 |
+
Recommended quant: `Q4_K_M`.
|
| 65 |
+
|
| 66 |
+
### Thinking mode
|
| 67 |
+
|
| 68 |
+
Qwen3.5 supports an optional chain-of-thought `<think>` block before the answer.
|
| 69 |
+
In the transformers API this is controlled via `enable_thinking=True/False` in
|
| 70 |
+
`apply_chat_template`.
|
| 71 |
+
|
| 72 |
+
**llama.cpp:** thinking appears to be enabled by default. `--reasoning-budget 0`
|
| 73 |
+
and `--chat-template-kwargs '{"enable_thinking":false}'` have been tested but do
|
| 74 |
+
not reliably disable it — this may be a llama.cpp issue with Qwen3 thinking models.
|
| 75 |
+
Check [llama.cpp issues](https://github.com/ggml-org/llama.cpp/issues) for the
|
| 76 |
+
current status.
|
| 77 |
+
|
| 78 |
+
## Pipeline diagram
|
| 79 |
+
|
| 80 |
+

|
| 81 |
+
|
| 82 |
+
## Acknowledgements
|
| 83 |
+
|
| 84 |
+
Based on [Qwen/Qwen3.5-0.8B](https://huggingface.co/Qwen/Qwen3.5-0.8B)
|
| 85 |
+
by the Qwen Team. If you use this model in research, please cite the original:
|
| 86 |
+
|
| 87 |
+
```bibtex
|
| 88 |
+
@misc{qwen3.5,
|
| 89 |
+
title = {{Qwen3.5}: Towards Native Multimodal Agents},
|
| 90 |
+
author = {{Qwen Team}},
|
| 91 |
+
month = {February},
|
| 92 |
+
year = {2026},
|
| 93 |
+
url = {https://qwen.ai/blog?id=qwen3.5}
|
| 94 |
+
}
|
| 95 |
+
```
|
diagrams/diagram_01.png
ADDED
|
Git LFS Details
|
diagrams/diagram_02.png
ADDED
|
Git LFS Details
|