Text Generation
GGUF
English
Korean
local-inference
Mixture of Experts
qwen
windows
consumer-gpu
openai-compatible
llama-cpp
conversational
Instructions to use myeongjun77/Pungyo-Qwen36-A3B 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 myeongjun77/Pungyo-Qwen36-A3B 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 myeongjun77/Pungyo-Qwen36-A3B:Q4_K_M # Run inference directly in the terminal: llama cli -hf myeongjun77/Pungyo-Qwen36-A3B:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf myeongjun77/Pungyo-Qwen36-A3B:Q4_K_M # Run inference directly in the terminal: llama cli -hf myeongjun77/Pungyo-Qwen36-A3B: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 myeongjun77/Pungyo-Qwen36-A3B:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf myeongjun77/Pungyo-Qwen36-A3B: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 myeongjun77/Pungyo-Qwen36-A3B:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf myeongjun77/Pungyo-Qwen36-A3B:Q4_K_M
Use Docker
docker model run hf.co/myeongjun77/Pungyo-Qwen36-A3B:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use myeongjun77/Pungyo-Qwen36-A3B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "myeongjun77/Pungyo-Qwen36-A3B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "myeongjun77/Pungyo-Qwen36-A3B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/myeongjun77/Pungyo-Qwen36-A3B:Q4_K_M
- Ollama
How to use myeongjun77/Pungyo-Qwen36-A3B with Ollama:
ollama run hf.co/myeongjun77/Pungyo-Qwen36-A3B:Q4_K_M
- Unsloth Desktop
- Pi
How to use myeongjun77/Pungyo-Qwen36-A3B with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf myeongjun77/Pungyo-Qwen36-A3B: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": "myeongjun77/Pungyo-Qwen36-A3B:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use myeongjun77/Pungyo-Qwen36-A3B with Docker Model Runner:
docker model run hf.co/myeongjun77/Pungyo-Qwen36-A3B:Q4_K_M
- Lemonade
How to use myeongjun77/Pungyo-Qwen36-A3B with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull myeongjun77/Pungyo-Qwen36-A3B:Q4_K_M
Run and chat with the model
lemonade run user.Pungyo-Qwen36-A3B-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use myeongjun77/Pungyo-Qwen36-A3B with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf myeongjun77/Pungyo-Qwen36-A3B: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 myeongjun77/Pungyo-Qwen36-A3B:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use myeongjun77/Pungyo-Qwen36-A3B with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf myeongjun77/Pungyo-Qwen36-A3B: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 "myeongjun77/Pungyo-Qwen36-A3B: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"
Pungyo verification package
Browse files- LICENSE-LLAMACPP +23 -0
- NOTICE.md +3 -1
- Pungyo-Qwen36-Single-Public-Verification-20260530.zip +3 -0
- README.md +27 -32
- run.md +17 -20
LICENSE-LLAMACPP
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
MIT License
|
| 2 |
+
|
| 3 |
+
Copyright (c) 2023-2024 The ggml authors (https://github.com/ggml-org/ggml/blob/master/AUTHORS)
|
| 4 |
+
Copyright (c) 2023-2024 The llama.cpp authors (https://github.com/ggml-org/llama.cpp/blob/master/AUTHORS)
|
| 5 |
+
Copyright (c) 2024-2025 The ik_llama.cpp authors (https://github.com/ikawrakow/ik_llama.cpp/blob/main/AUTHORS)
|
| 6 |
+
|
| 7 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 8 |
+
of this software and associated documentation files (the "Software"), to deal
|
| 9 |
+
in the Software without restriction, including without limitation the rights
|
| 10 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 11 |
+
copies of the Software, and to permit persons to whom the Software is
|
| 12 |
+
furnished to do so, subject to the following conditions:
|
| 13 |
+
|
| 14 |
+
The above copyright notice and this permission notice shall be included in all
|
| 15 |
+
copies or substantial portions of the Software.
|
| 16 |
+
|
| 17 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 18 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 19 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 20 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 21 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 22 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
| 23 |
+
SOFTWARE.
|
NOTICE.md
CHANGED
|
@@ -20,7 +20,9 @@ holders.
|
|
| 20 |
|
| 21 |
## 3. Upstream Runtime
|
| 22 |
|
| 23 |
-
-
|
|
|
|
|
|
|
| 24 |
- The Pungyo package adds an execution layer and does not relicense the
|
| 25 |
upstream runtime.
|
| 26 |
|
|
|
|
| 20 |
|
| 21 |
## 3. Upstream Runtime
|
| 22 |
|
| 23 |
+
- This package's executable is built from llama.cpp / ik_llama.cpp (MIT License).
|
| 24 |
+
The full upstream MIT license and copyright notices are included as
|
| 25 |
+
`LICENSE-LLAMACPP` per the MIT terms.
|
| 26 |
- The Pungyo package adds an execution layer and does not relicense the
|
| 27 |
upstream runtime.
|
| 28 |
|
Pungyo-Qwen36-Single-Public-Verification-20260530.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:584555f932cd6f7b0e89ef32d2a8253e3b368348bdc38d354b5b2060ed459da3
|
| 3 |
+
size 597490045
|
README.md
CHANGED
|
@@ -17,26 +17,25 @@ library_name: gguf
|
|
| 17 |
|
| 18 |
# Pungyo (νμ) β Run Qwen3.6-35B-A3B on an 8GB laptop
|
| 19 |
|
| 20 |
-
|
|
|
|
|
|
|
| 21 |
|
| 22 |
This repository is **not a model release**.
|
| 23 |
Model weights are **not included**.
|
| 24 |
The internal mechanism is **not disclosed**.
|
| 25 |
|
| 26 |
-
##
|
| 27 |
-
|
| 28 |
-
Pungyo is a public verification package that demonstrates running a
|
| 29 |
-
user-provided Qwen3.6 35B-A3B compatible GGUF model on a single consumer
|
| 30 |
-
8GB-class GPU.
|
| 31 |
-
|
| 32 |
-
Reference local observation:
|
| 33 |
|
| 34 |
```text
|
| 35 |
-
|
| 36 |
```
|
| 37 |
|
| 38 |
-
Measured
|
| 39 |
-
|
|
|
|
|
|
|
|
|
|
| 40 |
|
| 41 |
## How does it work?
|
| 42 |
|
|
@@ -44,44 +43,40 @@ Not explained here. The mechanism is covered by patent-filed technology
|
|
| 44 |
(application filed, KR). This release only demonstrates **that it works** β
|
| 45 |
it does not disclose **how**.
|
| 46 |
|
| 47 |
-
|
| 48 |
-
paper. This package is an observable artifact, nothing more.
|
| 49 |
|
| 50 |
-
|
|
|
|
|
|
|
| 51 |
|
| 52 |
-
```
|
| 53 |
-
|
| 54 |
```
|
| 55 |
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
- Windows 11
|
| 59 |
-
- NVIDIA RTX-class 8GB VRAM GPU (or compatible)
|
| 60 |
-
- 32GB system memory recommended
|
| 61 |
-
- a user-provided Qwen3.6 35B-A3B compatible GGUF model
|
| 62 |
-
- local `llama-cli.exe` / `llama-server.exe`
|
| 63 |
|
| 64 |
-
##
|
| 65 |
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
|
| 69 |
-
|
| 70 |
|
| 71 |
-
|
| 72 |
|
| 73 |
## Not Included
|
| 74 |
|
| 75 |
-
- model weights
|
| 76 |
- training data
|
| 77 |
- internal mechanism / operating-point logic
|
| 78 |
- private validation traces
|
| 79 |
-
- internal build files
|
| 80 |
|
| 81 |
## License
|
| 82 |
|
| 83 |
- Pungyo execution package: see `LICENSE-PUNGYO`.
|
| 84 |
-
-
|
|
|
|
| 85 |
- License scope separation: see `NOTICE.md`.
|
| 86 |
|
| 87 |
## Patent Notice
|
|
|
|
| 17 |
|
| 18 |
# Pungyo (νμ) β Run Qwen3.6-35B-A3B on an 8GB laptop
|
| 19 |
|
| 20 |
+
> **λ¨μ νμλ‘κ² β Run big. Keep your memory abundant.**
|
| 21 |
+
|
| 22 |
+
β
**It works.** Single self-contained binary. Provide a Qwen GGUF, run, done.
|
| 23 |
|
| 24 |
This repository is **not a model release**.
|
| 25 |
Model weights are **not included**.
|
| 26 |
The internal mechanism is **not disclosed**.
|
| 27 |
|
| 28 |
+
## Reference local observation (single profile)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
|
| 30 |
```text
|
| 31 |
+
33.27 tok/s (8GB laptop GPU, ~7GB VRAM, steady-state)
|
| 32 |
```
|
| 33 |
|
| 34 |
+
Measured on Qwen3.6-35B-A3B (Q4_K_M, user-provided GGUF), 2026-05-30, 245-token generation.
|
| 35 |
+
A local observation, not a universal guarantee.
|
| 36 |
+
|
| 37 |
+
> Want maximum memory headroom / stability? See the twin profile:
|
| 38 |
+
> **myeongjun77/Pungyo-Qwen36-A3B-Twin**
|
| 39 |
|
| 40 |
## How does it work?
|
| 41 |
|
|
|
|
| 43 |
(application filed, KR). This release only demonstrates **that it works** β
|
| 44 |
it does not disclose **how**.
|
| 45 |
|
| 46 |
+
## Download & Run (3 steps)
|
|
|
|
| 47 |
|
| 48 |
+
1. Get a compatible **Qwen3.6 35B-A3B GGUF** from https://huggingface.co/Qwen
|
| 49 |
+
2. Download `Pungyo-Qwen36-Single-Public-Verification-20260530.zip` from this repo, unzip.
|
| 50 |
+
3. Run:
|
| 51 |
|
| 52 |
+
```powershell
|
| 53 |
+
.\bin\pungyo.exe "path\to\Qwen3.6-35B-A3B.gguf" "Hello, my name is"
|
| 54 |
```
|
| 55 |
|
| 56 |
+
That's it. No setup, no separate llama.cpp install, no flags. The binary picks
|
| 57 |
+
the operating point in-memory and runs in-process.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
|
| 59 |
+
## Requirements
|
| 60 |
|
| 61 |
+
- Windows 10/11
|
| 62 |
+
- NVIDIA RTX-class 8GB VRAM GPU (or compatible), CUDA driver installed
|
| 63 |
+
- 32 GB system memory recommended
|
| 64 |
+
- a user-provided Qwen3.6 35B-A3B compatible GGUF
|
| 65 |
|
| 66 |
+
(Bundled in the ZIP: `bin\pungyo.exe`, `bin\cublas64_13.dll`, `bin\cublasLt64_13.dll`. CUDA runtime libraries are included; you do NOT need the CUDA toolkit installed.)
|
| 67 |
|
| 68 |
## Not Included
|
| 69 |
|
| 70 |
+
- Qwen model weights (get from https://huggingface.co/Qwen)
|
| 71 |
- training data
|
| 72 |
- internal mechanism / operating-point logic
|
| 73 |
- private validation traces
|
|
|
|
| 74 |
|
| 75 |
## License
|
| 76 |
|
| 77 |
- Pungyo execution package: see `LICENSE-PUNGYO`.
|
| 78 |
+
- Built from llama.cpp / ik_llama.cpp (MIT): see `LICENSE-LLAMACPP`.
|
| 79 |
+
- Qwen base model (not included): see `LICENSE-QWEN`.
|
| 80 |
- License scope separation: see `NOTICE.md`.
|
| 81 |
|
| 82 |
## Patent Notice
|
run.md
CHANGED
|
@@ -1,40 +1,37 @@
|
|
| 1 |
-
# Pungyo β Run Guide
|
| 2 |
|
| 3 |
-
|
| 4 |
-
|
| 5 |
|
| 6 |
-
## 1. Get a model
|
| 7 |
|
| 8 |
-
Download a compatible Qwen3.6 35B-A3B GGUF from the official
|
| 9 |
https://huggingface.co/Qwen
|
| 10 |
|
| 11 |
Pungyo does not ship, modify, or relicense model weights.
|
| 12 |
|
| 13 |
-
## 2. Unzip
|
| 14 |
|
| 15 |
```
|
| 16 |
-
Pungyo-Qwen36-Single-Public-Verification-
|
| 17 |
-
|
|
|
|
|
|
|
| 18 |
```
|
| 19 |
|
| 20 |
-
## 3.
|
| 21 |
|
| 22 |
```powershell
|
| 23 |
-
.\bin\pungyo.exe --
|
| 24 |
-
--model "D:\models\Qwen3.6-35B-A3B.gguf" `
|
| 25 |
-
--llama-cli "D:\tools\llama-cli.exe"
|
| 26 |
```
|
| 27 |
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
```powershell
|
| 31 |
-
.\bin\pungyo.exe --model "D:\models\Qwen3.6-35B-A3B.gguf" --prompt "Hello"
|
| 32 |
-
```
|
| 33 |
|
| 34 |
## Notes
|
| 35 |
|
| 36 |
-
- Requires Windows
|
|
|
|
| 37 |
- Speed is a local observation and varies by hardware.
|
| 38 |
-
- The mechanism is not documented here by design (patent-filed).
|
| 39 |
-
covers operation only.
|
| 40 |
- Issues / requests: use the repository Community tab.
|
|
|
|
| 1 |
+
# Pungyo β Run Guide (single profile)
|
| 2 |
|
| 3 |
+
Run a Qwen3.6 35B-A3B class GGUF on a single 8GB GPU. You provide the model.
|
| 4 |
+
Pungyo is a single self-contained binary.
|
| 5 |
|
| 6 |
+
## 1. Get a model
|
| 7 |
|
| 8 |
+
Download a compatible Qwen3.6 35B-A3B GGUF from the official source:
|
| 9 |
https://huggingface.co/Qwen
|
| 10 |
|
| 11 |
Pungyo does not ship, modify, or relicense model weights.
|
| 12 |
|
| 13 |
+
## 2. Unzip
|
| 14 |
|
| 15 |
```
|
| 16 |
+
Pungyo-Qwen36-Single-Public-Verification-20260530.zip
|
| 17 |
+
βββ bin\pungyo.exe
|
| 18 |
+
βββ bin\cublas64_13.dll
|
| 19 |
+
βββ bin\cublasLt64_13.dll
|
| 20 |
```
|
| 21 |
|
| 22 |
+
## 3. Run
|
| 23 |
|
| 24 |
```powershell
|
| 25 |
+
.\bin\pungyo.exe "D:\models\Qwen3.6-35B-A3B.gguf" "Hello, my name is"
|
|
|
|
|
|
|
| 26 |
```
|
| 27 |
|
| 28 |
+
That is the full invocation. The residency operating point is decided by Pungyo
|
| 29 |
+
in memory and never appears on the command line.
|
|
|
|
|
|
|
|
|
|
| 30 |
|
| 31 |
## Notes
|
| 32 |
|
| 33 |
+
- Requires Windows, NVIDIA RTX-class 8GB GPU with a recent NVIDIA driver.
|
| 34 |
+
- 32 GB system RAM recommended.
|
| 35 |
- Speed is a local observation and varies by hardware.
|
| 36 |
+
- The mechanism is not documented here by design (patent-filed).
|
|
|
|
| 37 |
- Issues / requests: use the repository Community tab.
|