Instructions to use ggml-org/Qwen3-235B-A22B-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 ggml-org/Qwen3-235B-A22B-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 ggml-org/Qwen3-235B-A22B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf ggml-org/Qwen3-235B-A22B-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 ggml-org/Qwen3-235B-A22B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf ggml-org/Qwen3-235B-A22B-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 ggml-org/Qwen3-235B-A22B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf ggml-org/Qwen3-235B-A22B-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 ggml-org/Qwen3-235B-A22B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf ggml-org/Qwen3-235B-A22B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/ggml-org/Qwen3-235B-A22B-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use ggml-org/Qwen3-235B-A22B-GGUF with Ollama:
ollama run hf.co/ggml-org/Qwen3-235B-A22B-GGUF:Q4_K_M
- Unsloth Studio
How to use ggml-org/Qwen3-235B-A22B-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for ggml-org/Qwen3-235B-A22B-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for ggml-org/Qwen3-235B-A22B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for ggml-org/Qwen3-235B-A22B-GGUF to start chatting
- Pi
How to use ggml-org/Qwen3-235B-A22B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf ggml-org/Qwen3-235B-A22B-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "ggml-org/Qwen3-235B-A22B-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use ggml-org/Qwen3-235B-A22B-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 ggml-org/Qwen3-235B-A22B-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 ggml-org/Qwen3-235B-A22B-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use ggml-org/Qwen3-235B-A22B-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf ggml-org/Qwen3-235B-A22B-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 "ggml-org/Qwen3-235B-A22B-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"
- Docker Model Runner
How to use ggml-org/Qwen3-235B-A22B-GGUF with Docker Model Runner:
docker model run hf.co/ggml-org/Qwen3-235B-A22B-GGUF:Q4_K_M
- Lemonade
How to use ggml-org/Qwen3-235B-A22B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull ggml-org/Qwen3-235B-A22B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Qwen3-235B-A22B-GGUF-Q4_K_M
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +19 -0
- Qwen3-235B-A22B-Q4_K_M-00001-of-00003.gguf +3 -0
- Qwen3-235B-A22B-Q4_K_M-00002-of-00003.gguf +3 -0
- Qwen3-235B-A22B-Q4_K_M-00003-of-00003.gguf +3 -0
- Qwen3-235B-A22B-Q8_0-00001-of-00006.gguf +3 -0
- Qwen3-235B-A22B-Q8_0-00002-of-00006.gguf +3 -0
- Qwen3-235B-A22B-Q8_0-00003-of-00006.gguf +3 -0
- Qwen3-235B-A22B-Q8_0-00004-of-00006.gguf +3 -0
- Qwen3-235B-A22B-Q8_0-00005-of-00006.gguf +3 -0
- Qwen3-235B-A22B-Q8_0-00006-of-00006.gguf +3 -0
- Qwen3-235B-A22B-f16-00001-of-00010.gguf +3 -0
- Qwen3-235B-A22B-f16-00002-of-00010.gguf +3 -0
- Qwen3-235B-A22B-f16-00003-of-00010.gguf +3 -0
- Qwen3-235B-A22B-f16-00004-of-00010.gguf +3 -0
- Qwen3-235B-A22B-f16-00005-of-00010.gguf +3 -0
- Qwen3-235B-A22B-f16-00006-of-00010.gguf +3 -0
- Qwen3-235B-A22B-f16-00007-of-00010.gguf +3 -0
- Qwen3-235B-A22B-f16-00008-of-00010.gguf +3 -0
- Qwen3-235B-A22B-f16-00009-of-00010.gguf +3 -0
- Qwen3-235B-A22B-f16-00010-of-00010.gguf +3 -0
- README.md +9 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,22 @@ 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-235B-A22B-Q4_K_M-00001-of-00003.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Qwen3-235B-A22B-Q4_K_M-00002-of-00003.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Qwen3-235B-A22B-Q4_K_M-00003-of-00003.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Qwen3-235B-A22B-Q8_0-00001-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Qwen3-235B-A22B-Q8_0-00002-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Qwen3-235B-A22B-Q8_0-00003-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Qwen3-235B-A22B-Q8_0-00004-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Qwen3-235B-A22B-Q8_0-00005-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Qwen3-235B-A22B-Q8_0-00006-of-00006.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Qwen3-235B-A22B-f16-00001-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Qwen3-235B-A22B-f16-00002-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Qwen3-235B-A22B-f16-00003-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
Qwen3-235B-A22B-f16-00004-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
Qwen3-235B-A22B-f16-00005-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
Qwen3-235B-A22B-f16-00006-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
Qwen3-235B-A22B-f16-00007-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
Qwen3-235B-A22B-f16-00008-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
Qwen3-235B-A22B-f16-00009-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
Qwen3-235B-A22B-f16-00010-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
Qwen3-235B-A22B-Q4_K_M-00001-of-00003.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6f2ac26c989dbca5977d1960bb4b0bbb7aed83cebd48a0be1106fc3e13f89a65
|
| 3 |
+
size 48998602592
|
Qwen3-235B-A22B-Q4_K_M-00002-of-00003.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:62f1eb1bad95da2d6fb636b8005820a6356cb01df62cdfcd651d18356c4c2304
|
| 3 |
+
size 48983337216
|
Qwen3-235B-A22B-Q4_K_M-00003-of-00003.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0ab85a34dd01a39d8b182286ef2126160474c51eefcf4ffec78e4dc41a94013c
|
| 3 |
+
size 44172134272
|
Qwen3-235B-A22B-Q8_0-00001-of-00006.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0f891b6d524b14c3ecd22f23a7ef1b3695e437639cb2f186e9debf33b7e53a9a
|
| 3 |
+
size 48972794176
|
Qwen3-235B-A22B-Q8_0-00002-of-00006.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d21532c280e7e8829937e5d245819dae7de5e9362ed254ed4a6cc8e2a0d07b1d
|
| 3 |
+
size 48500015264
|
Qwen3-235B-A22B-Q8_0-00003-of-00006.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0b85933c55c99dada3b703c846bce71f3a1bfbc2d86baff66161987ef4e1f8c9
|
| 3 |
+
size 48464248448
|
Qwen3-235B-A22B-Q8_0-00004-of-00006.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:726dff480ddd03fe0ff75a1a3500e3a12af9a6e2e50f7bb3afcd417f0a847297
|
| 3 |
+
size 48537912224
|
Qwen3-235B-A22B-Q8_0-00005-of-00006.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:586334c8b9e462003020132c5078984960062aab04ff1633b13587019e772f6b
|
| 3 |
+
size 48462134784
|
Qwen3-235B-A22B-Q8_0-00006-of-00006.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:39f9d43ec2021a55dc859887a4c828837e047a88283e2fd2182a153e195eb4d2
|
| 3 |
+
size 7003000672
|
Qwen3-235B-A22B-f16-00001-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e490142897a091e73fe6279dc72785c1597d4ab0cd5868685f9bce9e0b29cc93
|
| 3 |
+
size 47939818272
|
Qwen3-235B-A22B-f16-00002-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4d0aa7179d38aab798856ab7343310475caa86a80b4ee91ac87c58cfcf6f08f2
|
| 3 |
+
size 48010444832
|
Qwen3-235B-A22B-f16-00003-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0eede25f8c1da6e85f8d944128ed983da6080b52cd2afaa2b8a9164cbd144a26
|
| 3 |
+
size 48010411936
|
Qwen3-235B-A22B-f16-00004-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:23393d4b85ad8c745482fa2296af8e5f692b610351809a713711d40d2c265c80
|
| 3 |
+
size 48155149760
|
Qwen3-235B-A22B-f16-00005-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a5118a740078f74bb11f229038e667ccb510c3cea20060990a9882ee6b836f57
|
| 3 |
+
size 48155149760
|
Qwen3-235B-A22B-f16-00006-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ad70fe8fb1fd59cc86d75ff9239b7a6703eb0d5f4b6f79ef9aba819392257772
|
| 3 |
+
size 48010411936
|
Qwen3-235B-A22B-f16-00007-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c91482daafa6b050cc41cc351e37b4856ed1e81e801f65959d1a0ba1bef50bc8
|
| 3 |
+
size 48155149760
|
Qwen3-235B-A22B-f16-00008-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a1c71b98dce831dd9bd3921f8d982d197fc1422bfb1ac13b31ac004822018c2f
|
| 3 |
+
size 48155149760
|
Qwen3-235B-A22B-f16-00009-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:42554620510f138a5dbf73a01245392dd6e4211c7f85cfe0a812f781c0e0ec79
|
| 3 |
+
size 48010411936
|
Qwen3-235B-A22B-f16-00010-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:851133eed9389106d08b62e0192e3bd9a82cdb221ea4608a8e16c0e0ed392224
|
| 3 |
+
size 37691339296
|
README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
base_model: Qwen/Qwen3-235B-A22B
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
# Qwen3-235B-A22B
|
| 7 |
+
|
| 8 |
+
Original model: https://huggingface.co/Qwen/Qwen3-235B-A22B
|
| 9 |
+
|