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 5-file: server-single + server-twin + cuda runtime + docs
Browse files- .gitattributes +2 -0
- README.md +59 -34
- cublas64_13.dll +3 -0
- cublasLt64_13.dll +3 -0
- pungyo-server-single.exe +3 -0
- pungyo-server-twin.exe +3 -0
- run.md +48 -19
.gitattributes
CHANGED
|
@@ -3,3 +3,5 @@
|
|
| 3 |
*.gguf filter=lfs diff=lfs merge=lfs -text
|
| 4 |
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 5 |
*.bin filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
| 3 |
*.gguf filter=lfs diff=lfs merge=lfs -text
|
| 4 |
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 5 |
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
cublas64_13.dll filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
cublasLt64_13.dll filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
|
@@ -10,7 +10,8 @@ tags:
|
|
| 10 |
- qwen
|
| 11 |
- windows
|
| 12 |
- consumer-gpu
|
| 13 |
-
-
|
|
|
|
| 14 |
pipeline_tag: text-generation
|
| 15 |
library_name: gguf
|
| 16 |
---
|
|
@@ -19,69 +20,93 @@ library_name: gguf
|
|
| 19 |
|
| 20 |
> **λ¨μ νμλ‘κ² β Run big. Keep your memory abundant.**
|
| 21 |
|
| 22 |
-
|
|
|
|
|
|
|
| 23 |
|
| 24 |
This repository is **not a model release**.
|
| 25 |
-
Model weights are **not included**.
|
| 26 |
The internal mechanism is **not disclosed**.
|
| 27 |
|
| 28 |
-
##
|
| 29 |
|
| 30 |
-
|
| 31 |
-
|
| 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 |
-
|
| 38 |
-
|
| 39 |
|
| 40 |
## How does it work?
|
| 41 |
|
| 42 |
Not explained here. The mechanism is covered by patent-filed technology
|
| 43 |
-
(application filed, KR). This release only demonstrates **that it works
|
| 44 |
-
it does not disclose **how**.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 45 |
|
| 46 |
-
|
| 47 |
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
|
|
|
| 51 |
|
| 52 |
```powershell
|
| 53 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 54 |
```
|
| 55 |
|
| 56 |
-
|
| 57 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
|
| 59 |
## Requirements
|
| 60 |
|
| 61 |
- Windows 10/11
|
| 62 |
-
- NVIDIA RTX-class 8GB VRAM GPU (or
|
| 63 |
- 32 GB system memory recommended
|
| 64 |
-
-
|
|
|
|
|
|
|
| 65 |
|
| 66 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 67 |
|
| 68 |
## Not Included
|
| 69 |
|
| 70 |
-
- Qwen
|
| 71 |
-
-
|
| 72 |
-
- internal mechanism / operating-point logic
|
| 73 |
- private validation traces
|
| 74 |
|
| 75 |
## License
|
| 76 |
|
| 77 |
-
- Pungyo execution
|
| 78 |
-
- Built
|
| 79 |
-
- Qwen base model (
|
|
|
|
| 80 |
- License scope separation: see `NOTICE.md`.
|
| 81 |
|
| 82 |
## Patent Notice
|
| 83 |
|
| 84 |
-
Pungyo relates to patent-filed technology by Myeong Jun Jo
|
| 85 |
-
|
| 86 |
-
internal implementation disclosure. Commercial or patent
|
| 87 |
-
koing754@gmail.com
|
|
|
|
| 10 |
- qwen
|
| 11 |
- windows
|
| 12 |
- consumer-gpu
|
| 13 |
+
- openai-compatible
|
| 14 |
+
- llama-cpp
|
| 15 |
pipeline_tag: text-generation
|
| 16 |
library_name: gguf
|
| 17 |
---
|
|
|
|
| 20 |
|
| 21 |
> **λ¨μ νμλ‘κ² β Run big. Keep your memory abundant.**
|
| 22 |
|
| 23 |
+
OpenAI-compatible local server. Pick the files you need, drop them in a folder,
|
| 24 |
+
run one of the two `.exe` files. The model loads on an 8GB laptop GPU; the
|
| 25 |
+
operating point is chosen automatically in memory.
|
| 26 |
|
| 27 |
This repository is **not a model release**.
|
|
|
|
| 28 |
The internal mechanism is **not disclosed**.
|
| 29 |
|
| 30 |
+
## Speed (measured, RTX 4060 Laptop 8GB, 245-token steady-state)
|
| 31 |
|
| 32 |
+
| profile | speed | VRAM | when to pick |
|
| 33 |
+
|---|---|---|---|
|
| 34 |
+
| **single** (octagon) | ~34.5 tok/s | ~7 GB (tight) | maximum speed |
|
| 35 |
+
| **twin** (wireframe) | ~28.5 tok/s | ~3.7 GB (headroom) | stability under load |
|
|
|
|
|
|
|
| 36 |
|
| 37 |
+
Twin nearly halves VRAM pressure for ~17% less speed β far less likely to OOM
|
| 38 |
+
during longer or heavier runs. Same model, different operating point.
|
| 39 |
|
| 40 |
## How does it work?
|
| 41 |
|
| 42 |
Not explained here. The mechanism is covered by patent-filed technology
|
| 43 |
+
(application filed, KR). This release only demonstrates **that it works and
|
| 44 |
+
stays stable** β it does not disclose **how**.
|
| 45 |
+
|
| 46 |
+
## Download β pick 4 files (5 if you want both profiles)
|
| 47 |
+
|
| 48 |
+
| file | required? | size |
|
| 49 |
+
|---|---|---|
|
| 50 |
+
| `Qwen3.6-35B-A3B-Q4_K_M.gguf` | yes (the model) | ~20 GB |
|
| 51 |
+
| `cublas64_13.dll` | yes (GPU runtime) | 49 MB |
|
| 52 |
+
| `cublasLt64_13.dll` | yes (GPU runtime) | 435 MB |
|
| 53 |
+
| `pungyo-server-single.exe` | pick at least one | 246 MB |
|
| 54 |
+
| `pungyo-server-twin.exe` | pick at least one | 246 MB |
|
| 55 |
|
| 56 |
+
Put them all in the **same folder**. That's the install.
|
| 57 |
|
| 58 |
+
## Run (3 steps)
|
| 59 |
+
|
| 60 |
+
1. **Open PowerShell in the folder** where you put the files.
|
| 61 |
+
2. **Start the server** β single (fast) or twin (stable):
|
| 62 |
|
| 63 |
```powershell
|
| 64 |
+
# single profile (max speed)
|
| 65 |
+
.\pungyo-server-single.exe -m .\Qwen3.6-35B-A3B-Q4_K_M.gguf --port 8080 --host 127.0.0.1 -c 4096
|
| 66 |
+
|
| 67 |
+
# OR twin profile (stable)
|
| 68 |
+
.\pungyo-server-twin.exe -m .\Qwen3.6-35B-A3B-Q4_K_M.gguf --port 8080 --host 127.0.0.1 -c 4096
|
| 69 |
```
|
| 70 |
|
| 71 |
+
3. **Use it.** Wait ~30-60 seconds for the model to load, then:
|
| 72 |
+
- **Browser**: open `http://localhost:8080` β built-in chat UI is ready
|
| 73 |
+
- **OpenAI-compatible clients** (Cursor, Continue, ChatBox, Open WebUI, Jan, LangChain, etc.): set base URL to `http://localhost:8080/v1`
|
| 74 |
+
- **API**: `POST http://localhost:8080/v1/chat/completions` (OpenAI schema)
|
| 75 |
+
|
| 76 |
+
Stop with `Ctrl+C` in the server window.
|
| 77 |
|
| 78 |
## Requirements
|
| 79 |
|
| 80 |
- Windows 10/11
|
| 81 |
+
- NVIDIA RTX-class 8GB VRAM GPU (or larger), recent NVIDIA driver
|
| 82 |
- 32 GB system memory recommended
|
| 83 |
+
- ~21 GB free disk for the files
|
| 84 |
+
|
| 85 |
+
## Security
|
| 86 |
|
| 87 |
+
The example uses `--host 127.0.0.1` β the server is **reachable only from your
|
| 88 |
+
own PC**. To allow other machines on your LAN to use it, change to
|
| 89 |
+
`--host 0.0.0.0` and add `--api-key YOUR_KEY` (and ideally place a TLS reverse
|
| 90 |
+
proxy like Caddy in front). Never expose to the public internet without auth +
|
| 91 |
+
TLS.
|
| 92 |
|
| 93 |
## Not Included
|
| 94 |
|
| 95 |
+
- Qwen training data
|
| 96 |
+
- internal mechanism / operating-point logic (source)
|
|
|
|
| 97 |
- private validation traces
|
| 98 |
|
| 99 |
## License
|
| 100 |
|
| 101 |
+
- Pungyo execution binaries: see `LICENSE-PUNGYO`.
|
| 102 |
+
- Built on llama.cpp / ik_llama.cpp (MIT): see `LICENSE-LLAMACPP`.
|
| 103 |
+
- Qwen base model (`Qwen3.6-35B-A3B-Q4_K_M.gguf`) is redistributed under
|
| 104 |
+
Apache-2.0: see `LICENSE-QWEN`.
|
| 105 |
- License scope separation: see `NOTICE.md`.
|
| 106 |
|
| 107 |
## Patent Notice
|
| 108 |
|
| 109 |
+
Pungyo relates to patent-filed technology by Myeong Jun Jo
|
| 110 |
+
(application filed, KR). This release is an observable public verification
|
| 111 |
+
artifact, **not** an internal implementation disclosure. Commercial or patent
|
| 112 |
+
licensing inquiries: koing754@gmail.com
|
cublas64_13.dll
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:537d278122e2621d7202653cf873a9b8b872fac37122cb9d36246ded33c53e03
|
| 3 |
+
size 51572848
|
cublasLt64_13.dll
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b37233a1e3516a41d27dcea49595fd1cbaff979b65c80da69935cb59d0d23f5b
|
| 3 |
+
size 455684208
|
pungyo-server-single.exe
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ef73a57ebcfacb7e5a0a57a352d74693827a9efb7021701ed5cdec628386988b
|
| 3 |
+
size 257659904
|
pungyo-server-twin.exe
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ef73a57ebcfacb7e5a0a57a352d74693827a9efb7021701ed5cdec628386988b
|
| 3 |
+
size 257659904
|
run.md
CHANGED
|
@@ -1,36 +1,65 @@
|
|
| 1 |
-
# Pungyo β Run Guide (
|
| 2 |
|
| 3 |
-
|
| 4 |
-
|
| 5 |
|
| 6 |
-
## 1.
|
| 7 |
|
| 8 |
-
|
| 9 |
-
https://huggingface.co/Qwen
|
| 10 |
-
|
| 11 |
-
Pungyo does not ship, modify, or relicense model weights.
|
| 12 |
-
|
| 13 |
-
## 2. Unzip
|
| 14 |
|
| 15 |
```
|
| 16 |
-
|
| 17 |
-
βββ
|
| 18 |
-
βββ
|
| 19 |
-
|
|
|
|
| 20 |
```
|
| 21 |
|
| 22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
|
| 24 |
```powershell
|
| 25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
```
|
| 27 |
|
| 28 |
-
|
| 29 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30 |
|
| 31 |
## Notes
|
| 32 |
|
| 33 |
-
- Requires Windows
|
| 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).
|
|
|
|
| 1 |
+
# Pungyo β Run Guide (server)
|
| 2 |
|
| 3 |
+
Pungyo runs as a local OpenAI-compatible HTTP server. You provide the model
|
| 4 |
+
GGUF and the two CUDA runtime DLLs in the same folder as the `.exe`.
|
| 5 |
|
| 6 |
+
## 1. Folder layout
|
| 7 |
|
| 8 |
+
Put these in one folder (call it whatever):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
|
| 10 |
```
|
| 11 |
+
.\
|
| 12 |
+
βββ pungyo-server-single.exe (or pungyo-server-twin.exe β or both)
|
| 13 |
+
βββ cublas64_13.dll
|
| 14 |
+
βββ cublasLt64_13.dll
|
| 15 |
+
βββ Qwen3.6-35B-A3B-Q4_K_M.gguf
|
| 16 |
```
|
| 17 |
|
| 18 |
+
All four (or five) files in the SAME directory.
|
| 19 |
+
|
| 20 |
+
## 2. Pick a profile, start the server
|
| 21 |
+
|
| 22 |
+
Open PowerShell in that folder.
|
| 23 |
|
| 24 |
```powershell
|
| 25 |
+
# single profile β maximum speed (~34.5 tok/s, ~7 GB VRAM)
|
| 26 |
+
.\pungyo-server-single.exe -m .\Qwen3.6-35B-A3B-Q4_K_M.gguf --port 8080 --host 127.0.0.1 -c 4096
|
| 27 |
+
|
| 28 |
+
# twin profile β stability-first (~28.5 tok/s, ~3.7 GB VRAM)
|
| 29 |
+
.\pungyo-server-twin.exe -m .\Qwen3.6-35B-A3B-Q4_K_M.gguf --port 8080 --host 127.0.0.1 -c 4096
|
| 30 |
```
|
| 31 |
|
| 32 |
+
The server takes ~30-60 seconds to load the model. You'll see logs end with
|
| 33 |
+
`HTTP server is listening` β that means it's ready.
|
| 34 |
+
|
| 35 |
+
The operating point is chosen automatically in memory, never on the command
|
| 36 |
+
line. The two `.exe` files are siblings of the same engine; the file name
|
| 37 |
+
selects the profile.
|
| 38 |
+
|
| 39 |
+
## 3. Use it
|
| 40 |
+
|
| 41 |
+
| client | how |
|
| 42 |
+
|---|---|
|
| 43 |
+
| **Browser** | open `http://localhost:8080` (built-in chat) |
|
| 44 |
+
| **Cursor / Continue / ChatBox / Open WebUI / Jan** | set OpenAI base URL to `http://localhost:8080/v1` |
|
| 45 |
+
| **LangChain / OpenAI SDK / raw HTTP** | `POST http://localhost:8080/v1/chat/completions` (OpenAI schema) |
|
| 46 |
+
|
| 47 |
+
Stop with `Ctrl+C` in the server window.
|
| 48 |
+
|
| 49 |
+
## 4. Common flags
|
| 50 |
+
|
| 51 |
+
| flag | meaning |
|
| 52 |
+
|---|---|
|
| 53 |
+
| `-m PATH` | path to the GGUF |
|
| 54 |
+
| `--port N` | HTTP port (default 8080) |
|
| 55 |
+
| `--host 127.0.0.1` | localhost only (recommended) |
|
| 56 |
+
| `--host 0.0.0.0` | reachable from your LAN β add `--api-key ...` if you do this |
|
| 57 |
+
| `-c N` | context window in tokens (default 4096, max model trains to 262144) |
|
| 58 |
+
| `--api-key KEY` | require this key in `Authorization: Bearer KEY` |
|
| 59 |
|
| 60 |
## Notes
|
| 61 |
|
| 62 |
+
- Requires Windows + NVIDIA RTX-class 8GB GPU + recent NVIDIA driver.
|
| 63 |
- 32 GB system RAM recommended.
|
| 64 |
- Speed is a local observation and varies by hardware.
|
| 65 |
- The mechanism is not documented here by design (patent-filed).
|