Instructions to use smarttasks/Qwen3-0.6B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use smarttasks/Qwen3-0.6B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="smarttasks/Qwen3-0.6B-GGUF", filename="Qwen3-0.6B-Q3_K_M.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use smarttasks/Qwen3-0.6B-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-0.6B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf smarttasks/Qwen3-0.6B-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-0.6B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf smarttasks/Qwen3-0.6B-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-0.6B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf smarttasks/Qwen3-0.6B-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-0.6B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf smarttasks/Qwen3-0.6B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/smarttasks/Qwen3-0.6B-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use smarttasks/Qwen3-0.6B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "smarttasks/Qwen3-0.6B-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "smarttasks/Qwen3-0.6B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/smarttasks/Qwen3-0.6B-GGUF:Q4_K_M
- Ollama
How to use smarttasks/Qwen3-0.6B-GGUF with Ollama:
ollama run hf.co/smarttasks/Qwen3-0.6B-GGUF:Q4_K_M
- Unsloth Studio
How to use smarttasks/Qwen3-0.6B-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-0.6B-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-0.6B-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-0.6B-GGUF to start chatting
- Pi
How to use smarttasks/Qwen3-0.6B-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-0.6B-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-0.6B-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use smarttasks/Qwen3-0.6B-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-0.6B-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-0.6B-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use smarttasks/Qwen3-0.6B-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-0.6B-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-0.6B-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-0.6B-GGUF with Docker Model Runner:
docker model run hf.co/smarttasks/Qwen3-0.6B-GGUF:Q4_K_M
- Lemonade
How to use smarttasks/Qwen3-0.6B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull smarttasks/Qwen3-0.6B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Qwen3-0.6B-GGUF-Q4_K_M
List all available models
lemonade list
- Qwen3-0.6B-Q4_K_M โ GGUF (scorecard)
- Who this model is for
- Capability by tier
- Capability by axis
- File integrity (SHA-256)
- Validation invariants (IAIso)
- For agents
- Running Qwen3-0.6B-Q4_K_M locally (LM Studio, Ollama, llama.cpp, vLLM)
- Using Qwen3-0.6B-Q4_K_M in agentic systems (tool calling, JSON mode)
- For AI safety & security leaders
- About SmartTasks & IAIso
- Who this model is for
Qwen3-0.6B-Q4_K_M โ GGUF (scorecard)
Quantized from Qwen/Qwen3-0.6B by SmartTasks on 2026-07-13.
Why this conversion: Smaller, faster local/edge + agentic deployment via GGUF. Size saving: 67.8% vs original weights (HF param count, ~fp16) (this quant: Q4_K_M). Origin: https://huggingface.co/Qwen/Qwen3-0.6B ยท license: apache-2.0 ยท base: Qwen/Qwen3-0.6B-Base ยท arch: Qwen3ForCausalLM Attribution: derived from Qwen/Qwen3-0.6B-Base โ see the original repo for the authoritative license and model details.
Who this model is for
- Complexity band: L1 Layman โ L4 Architect/Engineer
- For non-experts: handles up to L4 Architect/Engineer-level tasks in testing.
- For engineers/architects: see axis scores and invariants below.
- For agentic systems: machine-readable scorecard JSON is embedded at the bottom and shipped as
scorecard.json.
Capability by tier
| Tier | Passed |
|---|---|
| L1 Layman | โ |
| L2 Everyday | โ |
| L3 Professional | โ |
| L4 Architect/Engineer | โ |
| L5 Agentic | โ |
Capability by axis
| Axis | Score |
|---|---|
| knowledge | 50% |
| instruction_following | 33% |
| reasoning | 80% |
| coding | 100% |
| structured_output | 100% |
| long_context | 100% |
Known-answer accuracy: 0.733 ยท Drift vs original: None
File integrity (SHA-256)
Verify a download hasn't been tampered with. Linux/mac: sha256sum -c SHA256SUMS. Windows: Get-FileHash <file>.gguf -Algorithm SHA256.
| File | SHA-256 |
|---|---|
| Qwen3-0.6B-Q3_K_M.gguf | 8153161582d8bf820b162ae2751c120f412e5e14e61aa2b4394b7b691a9ffa3c |
| Qwen3-0.6B-Q4_K_M.gguf | 3479875d3e4c726f7a20b2181f5e1536aefe9925f284f9ae9997a39a7e0d8dc9 |
| Qwen3-0.6B-Q5_K_M.gguf | d4a1b07a355cee8b5c9b2649618619f7560b031035d8aa4a350a6ce8d3f01587 |
| Qwen3-0.6B-Q6_K.gguf | d68699d9abb81c76f66ab44b586475a94a8dd753723094ca6281a20ed3bddeb4 |
| Qwen3-0.6B-Q8_0.gguf | ed405ab153351dd5932ce2681d75ca01f2741091747be8a2f95a7f95fc8fda29 |
Validation invariants (IAIso)
Overall conformance: PASS (4 pass / 0 warn / 0 fail / 1 not evaluated)
| Invariant | Category | Status | Detail |
|---|---|---|---|
iaiso.conversion.integrity |
conversion | PASS | GGUF produced and readable |
iaiso.conversion.efficiency |
conversion | PASS | Size reduction vs original weights (HF param count, ~fp16) |
iaiso.capability.retention |
capability | PASS | Known-answer accuracy on the complexity suite |
iaiso.security.posture |
security | NOT_EVALUATED | OWASP-mapped supply-chain + red-team |
iaiso.transparency.coverage |
transparency | PASS | Topic suppression / over-refusal / bias probe |
First-party self-assessment produced by the SmartTasks/IAIso validation pipeline (capability, security, transparency). Not an independent certification.
For agents
{
"max_complexity_level": 4,
"max_complexity_label": "L4 Architect/Engineer",
"recommended_for": [
"reasoning",
"coding",
"structured_output",
"long_context"
],
"not_recommended_for": [
"instruction_following"
],
"size_saving_pct": 67.8
}
The full machine-readable scorecard is in scorecard.json (schema smarttasks.iaiso.model_scorecard/v1).
What this repo gives an agent builder
Unlike a bare GGUF re-upload, every file here is designed to be read programmatically before you drop the model into a loop:
scorecard.jsonโ capability tier + per-axis scores (instruction-following, reasoning, tool-calling, structured-output) so your orchestrator can gate on whether this model is strong enough for a given step, without you hand-testing it.- Validation invariants โ machine-readable pass/warn/fail records for security posture, transparency, and quantization fidelity. An agent platform can refuse to load a model whose invariants don't meet policy.
SECURITY.md+ red-team results โ the model's measured resistance to prompt injection and jailbreaks, so you know its susceptibility before you expose it to untrusted input in an agent chain.SHA256SUMSโ verify the exact weights you're running match what was tested.
This is the difference between "here's a quantized model" and "here's a model with a documented, checkable safety and capability profile for autonomous use."
Running Qwen3-0.6B-Q4_K_M locally (LM Studio, Ollama, llama.cpp, vLLM)
These are GGUF quantizations of Qwen/Qwen3-0.6B for local inference.
Download a single .gguf and load it in LM Studio, Ollama,
llama.cpp / llama-server, KoboldCpp, text-generation-webui, or
any llama.cpp-based runner โ no Python or GPU cluster required.
Pick a size from the compression table above: larger = closer to the original,
smaller = less memory. Q4_K_M is the usual best balance.
Using Qwen3-0.6B-Q4_K_M in agentic systems (tool calling, JSON mode)
Built for agent and function-calling workloads. In testing this model
reaches L4 Architect/Engineer complexity and is strongest at: reasoning, coding, structured_output, long_context. The repo ships a
machine-readable scorecard.json with an agent_hint block (max complexity
level, recommended tasks, size/VRAM) so an orchestrator can pick the right
model automatically. Pair it with a governance layer (see below) for bounded,
audited tool use.
For AI safety & security leaders
Every build in this repo ships with a first-party validation record: a transparency probe (topic-suppression / over-refusal / viewpoint-alignment), quantization fidelity (KL-divergence vs the original), and SHA-256 checksums for tamper verification. This is a documented self-assessment โ not third-party certification โ with every result included so your team can see exactly what was tested and independently verify the model and its checksums.
Note: the automated security scan was not run for this build (security.posture: not evaluated); the record below covers transparency, quantization fidelity, and checksums.
Keywords: LLM security, model governance, agent safety, OWASP LLM Top 10,
local/on-prem inference, supply-chain integrity.
About SmartTasks & IAIso
SmartTasks builds tooling for governed, agentic AI workflows. This model was converted and validated with the **SmartTasks GGUF
- MoE pipeline** โ our proprietary conversion and validation system.
IAIso โ governance for agent loops
IAIso is our open framework for bounding what an autonomous agent spends and touches, and proving it afterward. Three primitives: pressure-accumulation rate limiting (one scalar that rises with tokens, tool calls, and planning depth, and triggers an automatic safety release), ConsentScope (signed, scoped, expiring tokens gating sensitive operations), and structured audit (every state change emits a versioned event). It bounds a cooperating agent in-process; for adversarial containment bind it to an out-of-process anchor. (Framework 5.0 ยท SDK 0.2.0 ยท beta โ you supply your own thresholds/coefficients for your workload.)
pip install iaiso # Python SDK (the only published package today)
from iaiso import BoundedExecution, PressureConfig
with BoundedExecution.start(config=PressureConfig()) as execution:
outcome = execution.record_tool_call(name="search", tokens=500)
if outcome.name == "ESCALATED":
... # request human review before the next expensive step
Go, Rust, Node/TypeScript, Java, C#, PHP, Swift and Ruby SDKs implement the same
spec and live in the repo's core/ (build from source โ not yet published to
their registries). See the repo for conformance vectors and LIMITATIONS.md.
- Downloads last month
- -
3-bit
4-bit
5-bit
6-bit
8-bit