Instructions to use mradermacher/gpt-oss-120b-Distill-Qwen3-4B-Thinking-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/gpt-oss-120b-Distill-Qwen3-4B-Thinking-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/gpt-oss-120b-Distill-Qwen3-4B-Thinking-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/gpt-oss-120b-Distill-Qwen3-4B-Thinking-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 mradermacher/gpt-oss-120b-Distill-Qwen3-4B-Thinking-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/gpt-oss-120b-Distill-Qwen3-4B-Thinking-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 mradermacher/gpt-oss-120b-Distill-Qwen3-4B-Thinking-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/gpt-oss-120b-Distill-Qwen3-4B-Thinking-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 mradermacher/gpt-oss-120b-Distill-Qwen3-4B-Thinking-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/gpt-oss-120b-Distill-Qwen3-4B-Thinking-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 mradermacher/gpt-oss-120b-Distill-Qwen3-4B-Thinking-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/gpt-oss-120b-Distill-Qwen3-4B-Thinking-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/gpt-oss-120b-Distill-Qwen3-4B-Thinking-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/gpt-oss-120b-Distill-Qwen3-4B-Thinking-GGUF with Ollama:
ollama run hf.co/mradermacher/gpt-oss-120b-Distill-Qwen3-4B-Thinking-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use mradermacher/gpt-oss-120b-Distill-Qwen3-4B-Thinking-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf mradermacher/gpt-oss-120b-Distill-Qwen3-4B-Thinking-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": "mradermacher/gpt-oss-120b-Distill-Qwen3-4B-Thinking-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use mradermacher/gpt-oss-120b-Distill-Qwen3-4B-Thinking-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/gpt-oss-120b-Distill-Qwen3-4B-Thinking-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/gpt-oss-120b-Distill-Qwen3-4B-Thinking-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/gpt-oss-120b-Distill-Qwen3-4B-Thinking-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.gpt-oss-120b-Distill-Qwen3-4B-Thinking-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use mradermacher/gpt-oss-120b-Distill-Qwen3-4B-Thinking-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 mradermacher/gpt-oss-120b-Distill-Qwen3-4B-Thinking-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 mradermacher/gpt-oss-120b-Distill-Qwen3-4B-Thinking-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use mradermacher/gpt-oss-120b-Distill-Qwen3-4B-Thinking-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf mradermacher/gpt-oss-120b-Distill-Qwen3-4B-Thinking-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 "mradermacher/gpt-oss-120b-Distill-Qwen3-4B-Thinking-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"
uploaded from rich1
Browse files- .gitattributes +12 -0
- gpt-oss-120b-Distill-Qwen3-4B-Thinking.IQ4_XS.gguf +3 -0
- gpt-oss-120b-Distill-Qwen3-4B-Thinking.Q2_K.gguf +3 -0
- gpt-oss-120b-Distill-Qwen3-4B-Thinking.Q3_K_L.gguf +3 -0
- gpt-oss-120b-Distill-Qwen3-4B-Thinking.Q3_K_M.gguf +3 -0
- gpt-oss-120b-Distill-Qwen3-4B-Thinking.Q3_K_S.gguf +3 -0
- gpt-oss-120b-Distill-Qwen3-4B-Thinking.Q4_K_M.gguf +3 -0
- gpt-oss-120b-Distill-Qwen3-4B-Thinking.Q4_K_S.gguf +3 -0
- gpt-oss-120b-Distill-Qwen3-4B-Thinking.Q5_K_M.gguf +3 -0
- gpt-oss-120b-Distill-Qwen3-4B-Thinking.Q5_K_S.gguf +3 -0
- gpt-oss-120b-Distill-Qwen3-4B-Thinking.Q6_K.gguf +3 -0
- gpt-oss-120b-Distill-Qwen3-4B-Thinking.Q8_0.gguf +3 -0
- gpt-oss-120b-Distill-Qwen3-4B-Thinking.f16.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,15 @@ 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 |
+
gpt-oss-120b-Distill-Qwen3-4B-Thinking.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
gpt-oss-120b-Distill-Qwen3-4B-Thinking.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
gpt-oss-120b-Distill-Qwen3-4B-Thinking.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
gpt-oss-120b-Distill-Qwen3-4B-Thinking.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
gpt-oss-120b-Distill-Qwen3-4B-Thinking.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
gpt-oss-120b-Distill-Qwen3-4B-Thinking.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
gpt-oss-120b-Distill-Qwen3-4B-Thinking.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
gpt-oss-120b-Distill-Qwen3-4B-Thinking.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
gpt-oss-120b-Distill-Qwen3-4B-Thinking.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
gpt-oss-120b-Distill-Qwen3-4B-Thinking.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
gpt-oss-120b-Distill-Qwen3-4B-Thinking.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
gpt-oss-120b-Distill-Qwen3-4B-Thinking.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
gpt-oss-120b-Distill-Qwen3-4B-Thinking.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3c78426bb1c48aad3dad99d783401d59feefe20231c4126fb4798bce087b4fab
|
| 3 |
+
size 2286315520
|
gpt-oss-120b-Distill-Qwen3-4B-Thinking.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e0ff5c629784bc745122e554b41795bf18ae4f2fbe9269cbc36933a9233c4a9f
|
| 3 |
+
size 1669498880
|
gpt-oss-120b-Distill-Qwen3-4B-Thinking.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e54bcb5cb304482e3d18cbf8671f7189c01c1a7f40879574fe395f9ba4d0a424
|
| 3 |
+
size 2239784960
|
gpt-oss-120b-Distill-Qwen3-4B-Thinking.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4bd332ccb1f275feaf62aac1ad7e804f7dc17a51cb9a9633309a7b367dd1b80e
|
| 3 |
+
size 2075617280
|
gpt-oss-120b-Distill-Qwen3-4B-Thinking.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e6100406c1c88fb23fc0efb745433b8df82b5e10e78acc09420d113ab3ae2bcd
|
| 3 |
+
size 1886996480
|
gpt-oss-120b-Distill-Qwen3-4B-Thinking.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1baff41d6de11abeca2c284a8c24cbc07a341a04d00da38addc57cdc08cae494
|
| 3 |
+
size 2497280000
|
gpt-oss-120b-Distill-Qwen3-4B-Thinking.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:89d2d1a1d65612aee0804da63bc420703b3a4cc2b0dfac1a0fe545c5af69993c
|
| 3 |
+
size 2383308800
|
gpt-oss-120b-Distill-Qwen3-4B-Thinking.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4e9d8ace66aa760c8f482a156a66ff52ac11f9f1b306a8166559ae863d4ae775
|
| 3 |
+
size 2889512960
|
gpt-oss-120b-Distill-Qwen3-4B-Thinking.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:25bae604baa08aa632f2e05a4da082ddc3e4902b1f565136acf12532c1617c3d
|
| 3 |
+
size 2823710720
|
gpt-oss-120b-Distill-Qwen3-4B-Thinking.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:74de676246f6f1cf1df6e8557236dbe88b5ee8603500f28eb0559765eef70b6b
|
| 3 |
+
size 3306260480
|
gpt-oss-120b-Distill-Qwen3-4B-Thinking.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dcc4e8c4bdb30483321f66c0141063d741156c451c9fc799b1e56f8d300a4556
|
| 3 |
+
size 4280404480
|
gpt-oss-120b-Distill-Qwen3-4B-Thinking.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:18c7a24ee80b8325143e6108f679f917c5a099929ab8ed0708f8ecd96b286d6f
|
| 3 |
+
size 8051284480
|