Instructions to use smarttasks/Qwen3-Coder-30B-A3B-Instruct-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 smarttasks/Qwen3-Coder-30B-A3B-Instruct-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 smarttasks/Qwen3-Coder-30B-A3B-Instruct-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf smarttasks/Qwen3-Coder-30B-A3B-Instruct-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 smarttasks/Qwen3-Coder-30B-A3B-Instruct-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf smarttasks/Qwen3-Coder-30B-A3B-Instruct-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 smarttasks/Qwen3-Coder-30B-A3B-Instruct-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf smarttasks/Qwen3-Coder-30B-A3B-Instruct-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 smarttasks/Qwen3-Coder-30B-A3B-Instruct-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf smarttasks/Qwen3-Coder-30B-A3B-Instruct-GGUF:Q4_K_M
Use Docker
docker model run hf.co/smarttasks/Qwen3-Coder-30B-A3B-Instruct-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use smarttasks/Qwen3-Coder-30B-A3B-Instruct-GGUF with Ollama:
ollama run hf.co/smarttasks/Qwen3-Coder-30B-A3B-Instruct-GGUF:Q4_K_M
- Unsloth Studio
How to use smarttasks/Qwen3-Coder-30B-A3B-Instruct-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 smarttasks/Qwen3-Coder-30B-A3B-Instruct-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 smarttasks/Qwen3-Coder-30B-A3B-Instruct-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for smarttasks/Qwen3-Coder-30B-A3B-Instruct-GGUF to start chatting
- Pi
How to use smarttasks/Qwen3-Coder-30B-A3B-Instruct-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf smarttasks/Qwen3-Coder-30B-A3B-Instruct-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": "smarttasks/Qwen3-Coder-30B-A3B-Instruct-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use smarttasks/Qwen3-Coder-30B-A3B-Instruct-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 smarttasks/Qwen3-Coder-30B-A3B-Instruct-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 smarttasks/Qwen3-Coder-30B-A3B-Instruct-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use smarttasks/Qwen3-Coder-30B-A3B-Instruct-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf smarttasks/Qwen3-Coder-30B-A3B-Instruct-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 "smarttasks/Qwen3-Coder-30B-A3B-Instruct-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 smarttasks/Qwen3-Coder-30B-A3B-Instruct-GGUF with Docker Model Runner:
docker model run hf.co/smarttasks/Qwen3-Coder-30B-A3B-Instruct-GGUF:Q4_K_M
- Lemonade
How to use smarttasks/Qwen3-Coder-30B-A3B-Instruct-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull smarttasks/Qwen3-Coder-30B-A3B-Instruct-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Qwen3-Coder-30B-A3B-Instruct-GGUF-Q4_K_M
List all available models
lemonade list
| { | |
| "schema": "smarttasks.repo_manifest/v1", | |
| "generated_utc": "2026-07-12T05:08:12+00:00", | |
| "root": "Qwen3-Coder-30B-A3B-Instruct-GGUF", | |
| "file_count": 12, | |
| "risk_finding_count": 0, | |
| "classes_present": [ | |
| "binary", | |
| "contextual", | |
| "ingestible", | |
| "model" | |
| ], | |
| "agent_prefilter_hint": { | |
| "load": [ | |
| "contextual", | |
| "ingestible" | |
| ], | |
| "runtime_only": [ | |
| "model" | |
| ], | |
| "never_auto_execute": [ | |
| "executable" | |
| ], | |
| "quarantine": [ | |
| "sensitive" | |
| ] | |
| }, | |
| "files": [ | |
| { | |
| "path": ".gitattributes", | |
| "bytes": 44, | |
| "content_class": "binary", | |
| "ingest_policy": "skip", | |
| "sha256": "fdeb5cd638f262467f8cfa3f97d14d4071076dfbee5907ca4e3af7e50a3bd08b", | |
| "risk_findings": [] | |
| }, | |
| { | |
| "path": "Qwen3-Coder-30B-A3B-Instruct-Q3_K_M.gguf", | |
| "bytes": 14711848864, | |
| "content_class": "model", | |
| "ingest_policy": "runtime_only", | |
| "sha256": "d7c9e46575af7551768228243a60aec3aa781bfcf7a33f85a38bf0c6ed30da47", | |
| "risk_findings": [] | |
| }, | |
| { | |
| "path": "Qwen3-Coder-30B-A3B-Instruct-Q4_K_M.gguf", | |
| "bytes": 18556688288, | |
| "content_class": "model", | |
| "ingest_policy": "runtime_only", | |
| "sha256": "dee080ea9e30a7f086874a90041cb3890b7d535612fefda68a6e1565faa17f11", | |
| "risk_findings": [] | |
| }, | |
| { | |
| "path": "Qwen3-Coder-30B-A3B-Instruct-Q4_K_M.transparency_report.md", | |
| "bytes": 8999, | |
| "content_class": "contextual", | |
| "ingest_policy": "load_as_context", | |
| "sha256": "1f1159ad5a5ab890ceff94ebf6523af78866dd4bcfe23dd836f22e41902b940b", | |
| "risk_findings": [] | |
| }, | |
| { | |
| "path": "Qwen3-Coder-30B-A3B-Instruct-Q5_K_M.gguf", | |
| "bytes": 21725583264, | |
| "content_class": "model", | |
| "ingest_policy": "runtime_only", | |
| "sha256": "ca8fb80d6b4d68301cabc38c9b425a5029d4c407f03964aa7bf65e255308b9d3", | |
| "risk_findings": [] | |
| }, | |
| { | |
| "path": "Qwen3-Coder-30B-A3B-Instruct-Q6_K.gguf", | |
| "bytes": 25092534176, | |
| "content_class": "model", | |
| "ingest_policy": "runtime_only", | |
| "sha256": "4c5102128f8ae67b74ae1979617a65f42764a2efd7264321c4af11ec4904fce4", | |
| "risk_findings": [] | |
| }, | |
| { | |
| "path": "Qwen3-Coder-30B-A3B-Instruct-Q8_0.gguf", | |
| "bytes": 32483934112, | |
| "content_class": "model", | |
| "ingest_policy": "runtime_only", | |
| "sha256": "4c042606995e27f399be4eee7fcb545810f30f9f5283c63e1a88cf973531a1ec", | |
| "risk_findings": [] | |
| }, | |
| { | |
| "path": "README.md", | |
| "bytes": 13311, | |
| "content_class": "contextual", | |
| "ingest_policy": "load_as_context", | |
| "sha256": "6355ed2727dced12dd8f6a05bfa8e60a80fe6e3862445771fd51f840cf11b4d1", | |
| "risk_findings": [] | |
| }, | |
| { | |
| "path": "registry.json", | |
| "bytes": 9810, | |
| "content_class": "ingestible", | |
| "ingest_policy": "load_structured", | |
| "sha256": "c19fb2c07a0807042d87059f8057bae37ddc34470c434972a34fdd0e3c9e10ba", | |
| "risk_findings": [] | |
| }, | |
| { | |
| "path": "scorecard.json", | |
| "bytes": 10744, | |
| "content_class": "ingestible", | |
| "ingest_policy": "load_structured", | |
| "sha256": "6ea5eadd9b4bd6eb4de32125614d41a5175980ca6defa08f4b4058c74fa2ed89", | |
| "risk_findings": [] | |
| }, | |
| { | |
| "path": "SECURITY.md", | |
| "bytes": 2267, | |
| "content_class": "contextual", | |
| "ingest_policy": "load_as_context", | |
| "sha256": "feb88f8b6fe54c6d8efbd01717fa4669653eb2ac84434d7c25ccde2a02186022", | |
| "risk_findings": [] | |
| }, | |
| { | |
| "path": "SHA256SUMS", | |
| "bytes": 536, | |
| "content_class": "binary", | |
| "ingest_policy": "skip", | |
| "sha256": "f35117a75837dc017a63bfab1b41d05e66be2c401916744f7bae1869657a9690", | |
| "risk_findings": [] | |
| } | |
| ] | |
| } |