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 Studio
How to use myeongjun77/Pungyo-Qwen36-A3B 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 myeongjun77/Pungyo-Qwen36-A3B 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 myeongjun77/Pungyo-Qwen36-A3B to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for myeongjun77/Pungyo-Qwen36-A3B to start chatting
- 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 (ํ์) โ Run Qwen3.6-35B-A3B on an 8GB laptop
๋จ์ ํ์๋กญ๊ฒ โ Run big. Keep your memory abundant.
OpenAI-compatible local server. Pick the files you need, drop them in a folder,
run one of the two .exe files. The model loads on an 8GB laptop GPU; the
operating point is chosen automatically in memory.
This repository is not a model release. The internal mechanism is not disclosed.
Speed (measured, RTX 4060 Laptop 8GB, 245-token steady-state)
| profile | speed | VRAM | when to pick |
|---|---|---|---|
| single (octagon) | ~34.5 tok/s | ~7 GB (tight) | maximum speed |
| twin (wireframe) | ~28.5 tok/s | ~3.7 GB (headroom) | stability under load |
Twin nearly halves VRAM pressure for ~17% less speed โ far less likely to OOM during longer or heavier runs. Same model, different operating point.
How does it work?
Not explained here. The mechanism is covered by patent-filed technology (application filed, KR). This release only demonstrates that it works and stays stable โ it does not disclose how.
Download โ pick 4 files (5 if you want both profiles)
| file | required? | size |
|---|---|---|
Qwen3.6-35B-A3B-Q4_K_M.gguf |
yes (the model) | ~20 GB |
cublas64_13.dll |
yes (GPU runtime) | 49 MB |
cublasLt64_13.dll |
yes (GPU runtime) | 435 MB |
pungyo-server-single.exe |
pick at least one | 246 MB |
pungyo-server-twin.exe |
pick at least one | 246 MB |
Put them all in the same folder. That's the install.
Run (3 steps)
- Open PowerShell in the folder where you put the files.
- Start the server โ single (fast) or twin (stable):
# single profile (max speed)
.\pungyo-server-single.exe -m .\Qwen3.6-35B-A3B-Q4_K_M.gguf --port 8080 --host 127.0.0.1 -c 4096
# OR twin profile (stable)
.\pungyo-server-twin.exe -m .\Qwen3.6-35B-A3B-Q4_K_M.gguf --port 8080 --host 127.0.0.1 -c 4096
- Use it. Wait ~30-60 seconds for the model to load, then:
- Browser: open
http://localhost:8080โ built-in chat UI is ready - OpenAI-compatible clients (Cursor, Continue, ChatBox, Open WebUI, Jan, LangChain, etc.): set base URL to
http://localhost:8080/v1 - API:
POST http://localhost:8080/v1/chat/completions(OpenAI schema)
- Browser: open
Stop with Ctrl+C in the server window.
Requirements
- Windows 10/11
- NVIDIA RTX-class 8GB VRAM GPU (or larger), recent NVIDIA driver
- 32 GB system memory recommended
- ~21 GB free disk for the files
Security
The example uses --host 127.0.0.1 โ the server is reachable only from your
own PC. To allow other machines on your LAN to use it, change to
--host 0.0.0.0 and add --api-key YOUR_KEY (and ideally place a TLS reverse
proxy like Caddy in front). Never expose to the public internet without auth +
TLS.
Not Included
- Qwen training data
- internal mechanism / operating-point logic (source)
- private validation traces
License
- Pungyo execution binaries: see
LICENSE-PUNGYO. - Built on llama.cpp / ik_llama.cpp (MIT): see
LICENSE-LLAMACPP. - Qwen base model (
Qwen3.6-35B-A3B-Q4_K_M.gguf) is redistributed under Apache-2.0: seeLICENSE-QWEN. - License scope separation: see
NOTICE.md.
Patent Notice
Pungyo relates to patent-filed technology by Myeong Jun Jo (application filed, KR). This release is an observable public verification artifact, not an internal implementation disclosure. Commercial or patent licensing inquiries: koing754@gmail.com
- Downloads last month
- 175
4-bit