Instructions to use TheStageAI/Qwen3.5-2B-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 TheStageAI/Qwen3.5-2B-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 TheStageAI/Qwen3.5-2B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf TheStageAI/Qwen3.5-2B-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 TheStageAI/Qwen3.5-2B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf TheStageAI/Qwen3.5-2B-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 TheStageAI/Qwen3.5-2B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf TheStageAI/Qwen3.5-2B-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 TheStageAI/Qwen3.5-2B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf TheStageAI/Qwen3.5-2B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/TheStageAI/Qwen3.5-2B-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use TheStageAI/Qwen3.5-2B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "TheStageAI/Qwen3.5-2B-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": "TheStageAI/Qwen3.5-2B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/TheStageAI/Qwen3.5-2B-GGUF:Q4_K_M
- Ollama
How to use TheStageAI/Qwen3.5-2B-GGUF with Ollama:
ollama run hf.co/TheStageAI/Qwen3.5-2B-GGUF:Q4_K_M
- Unsloth Studio
How to use TheStageAI/Qwen3.5-2B-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 TheStageAI/Qwen3.5-2B-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 TheStageAI/Qwen3.5-2B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for TheStageAI/Qwen3.5-2B-GGUF to start chatting
- Pi
How to use TheStageAI/Qwen3.5-2B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf TheStageAI/Qwen3.5-2B-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": "TheStageAI/Qwen3.5-2B-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use TheStageAI/Qwen3.5-2B-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf TheStageAI/Qwen3.5-2B-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 "TheStageAI/Qwen3.5-2B-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 TheStageAI/Qwen3.5-2B-GGUF with Docker Model Runner:
docker model run hf.co/TheStageAI/Qwen3.5-2B-GGUF:Q4_K_M
- Lemonade
How to use TheStageAI/Qwen3.5-2B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull TheStageAI/Qwen3.5-2B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Qwen3.5-2B-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use TheStageAI/Qwen3.5-2B-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 TheStageAI/Qwen3.5-2B-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 TheStageAI/Qwen3.5-2B-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
| { | |
| "artifact_scope": "language_model_gguf", | |
| "base_model": "Qwen/Qwen3.5-2B", | |
| "base_model_revision": "15852e8c16360a2fea060d615a32b45270f8a8fc", | |
| "benchmark_protocols": { | |
| "ifeval": { | |
| "decoding": "temperature=0", | |
| "mode": "native chat, enable_thinking=false", | |
| "sample_count": 541 | |
| }, | |
| "mmlu_pro": { | |
| "decoding": "temperature=1, top_p=0.95", | |
| "mode": "native chat, enable_thinking=true", | |
| "protocol": "mmlu_pro_cardlike_thinking_v2", | |
| "sample_count": 12032 | |
| } | |
| }, | |
| "bf16_reference": { | |
| "ifeval": { | |
| "instruction_loose": 0.7853717026378897, | |
| "instruction_strict": 0.7470023980815348, | |
| "prompt_loose": 0.7024029574861368, | |
| "prompt_strict": 0.6543438077634011, | |
| "run_id": "release_20260715_bf16_ifeval_public1280_v1_qwen3p5_2b_bf16_lm_eval", | |
| "sample_count": 541, | |
| "status": "complete" | |
| }, | |
| "mmlu_pro": { | |
| "accuracy": null, | |
| "correct": null, | |
| "run_id": null, | |
| "sample_count": null, | |
| "status": "not_reported" | |
| } | |
| }, | |
| "display_name": "Qwen3.5 2B", | |
| "family": "Qwen 3.5", | |
| "generated_at": "2026-07-20T21:32:16.184050+00:00", | |
| "license": "apache-2.0", | |
| "model_key": "qwen3p5_2b", | |
| "recommended_product": "M", | |
| "repo_id": "TheStageAI/Qwen3.5-2B-GGUF", | |
| "schema": "thestageai.gguf_release_manifest_v1", | |
| "variants": [ | |
| { | |
| "benchmarks": { | |
| "ifeval": { | |
| "instruction_loose": 0.6858513189448441, | |
| "instruction_strict": 0.6414868105515588, | |
| "prompt_loose": 0.5748613678373382, | |
| "prompt_strict": 0.5268022181146026, | |
| "run_id": "release_20260715_quant_ifeval_public1280_v1_qwen3p5_2b_xs_lm_eval", | |
| "sample_count": 541, | |
| "status": "complete" | |
| }, | |
| "mmlu_pro": { | |
| "accuracy": null, | |
| "correct": null, | |
| "run_id": null, | |
| "sample_count": null, | |
| "status": "not_reported" | |
| } | |
| }, | |
| "evaluation_id": "d8c4c0602b65f13ecbf487c38876c8d0286614de6076619c3f7819fccd5b19b5", | |
| "file_bytes": 738499904, | |
| "filename": "Qwen3.5-2B-XS-TS-Q3_K_S.gguf", | |
| "gguf_file_type": "MOSTLY_Q2_K", | |
| "heldout_kl_mean": 0.16548452705393263, | |
| "hub_quant_label": "Q3_K_S", | |
| "hub_size_class": "3-bit", | |
| "lm_head_policy": "skip_tied", | |
| "output_embedding_mode": "tied_alias", | |
| "parameter_count": 1881825088, | |
| "positioning": "Minimum size", | |
| "product": "XS", | |
| "recommended": false, | |
| "sha256": "c0d4816bdf93a21f307893675d0c47c083c36fad3bfee49663b91456e8940d30", | |
| "tensor_count": 320, | |
| "tensor_type_counts": { | |
| "BF16": 36, | |
| "F32": 133, | |
| "Q2_K": 87, | |
| "Q3_K": 42, | |
| "Q4_K": 20, | |
| "Q5_K": 2 | |
| }, | |
| "whole_file_bpw": 3.139504978265015 | |
| }, | |
| { | |
| "benchmarks": { | |
| "ifeval": { | |
| "instruction_loose": 0.7685851318944844, | |
| "instruction_strict": 0.7338129496402878, | |
| "prompt_loose": 0.6728280961182994, | |
| "prompt_strict": 0.6321626617375231, | |
| "run_id": "release_20260715_quant_ifeval_public1280_v1_qwen3p5_2b_s_lm_eval", | |
| "sample_count": 541, | |
| "status": "complete" | |
| }, | |
| "mmlu_pro": { | |
| "accuracy": null, | |
| "correct": null, | |
| "run_id": null, | |
| "sample_count": null, | |
| "status": "not_reported" | |
| } | |
| }, | |
| "evaluation_id": "61cc4cfe035a572833ab91e039129118569a8d0596e415b58159069bc53a7081", | |
| "file_bytes": 966516096, | |
| "filename": "Qwen3.5-2B-S-TS-Q4_K_S.gguf", | |
| "gguf_file_type": "MOSTLY_Q2_K", | |
| "heldout_kl_mean": 0.04493591902074028, | |
| "hub_quant_label": "Q4_K_S", | |
| "hub_size_class": "4-bit", | |
| "lm_head_policy": "skip_tied", | |
| "output_embedding_mode": "tied_alias", | |
| "parameter_count": 1881825088, | |
| "positioning": "Compact", | |
| "product": "S", | |
| "recommended": false, | |
| "sha256": "3a7171517f56f500ef8e6fc1d20b56a155cb2e6bd770d0728213298a2d562ea3", | |
| "tensor_count": 320, | |
| "tensor_type_counts": { | |
| "BF16": 36, | |
| "F32": 133, | |
| "Q2_K": 1, | |
| "Q3_K": 35, | |
| "Q4_K": 91, | |
| "Q5_K": 20, | |
| "Q6_K": 4 | |
| }, | |
| "whole_file_bpw": 4.108845618706089 | |
| }, | |
| { | |
| "benchmarks": { | |
| "ifeval": { | |
| "instruction_loose": 0.7865707434052758, | |
| "instruction_strict": 0.7553956834532374, | |
| "prompt_loose": 0.7042513863216266, | |
| "prompt_strict": 0.6654343807763401, | |
| "run_id": "release_20260715_quant_ifeval_public1280_v1_qwen3p5_2b_m_lm_eval", | |
| "sample_count": 541, | |
| "status": "complete" | |
| }, | |
| "mmlu_pro": { | |
| "accuracy": null, | |
| "correct": null, | |
| "run_id": null, | |
| "sample_count": null, | |
| "status": "not_reported" | |
| } | |
| }, | |
| "evaluation_id": "0b8c9cb609568247d30150522bacc4886b4aaac899dd52161f693324966ad2f7", | |
| "file_bytes": 1073069440, | |
| "filename": "Qwen3.5-2B-M-TS-Q4_K_M.gguf", | |
| "gguf_file_type": "MOSTLY_Q4_K_M", | |
| "heldout_kl_mean": 0.020367745511607253, | |
| "hub_quant_label": "Q4_K_M", | |
| "hub_size_class": "4-bit", | |
| "lm_head_policy": "skip_tied", | |
| "output_embedding_mode": "tied_alias", | |
| "parameter_count": 1881825088, | |
| "positioning": "Uniform Q4", | |
| "product": "M", | |
| "recommended": true, | |
| "sha256": "8d497863b95e392baf022258f864c34f4a28613df340c500bb647486c52657ae", | |
| "tensor_count": 320, | |
| "tensor_type_counts": { | |
| "BF16": 36, | |
| "F32": 133, | |
| "Q4_K": 151 | |
| }, | |
| "whole_file_bpw": 4.561824355909533 | |
| }, | |
| { | |
| "benchmarks": { | |
| "ifeval": { | |
| "instruction_loose": 0.7865707434052758, | |
| "instruction_strict": 0.749400479616307, | |
| "prompt_loose": 0.7060998151571165, | |
| "prompt_strict": 0.6580406654343808, | |
| "run_id": "release_20260715_quant_ifeval_public1280_v1_qwen3p5_2b_l_lm_eval", | |
| "sample_count": 541, | |
| "status": "complete" | |
| }, | |
| "mmlu_pro": { | |
| "accuracy": null, | |
| "correct": null, | |
| "run_id": null, | |
| "sample_count": null, | |
| "status": "not_reported" | |
| } | |
| }, | |
| "evaluation_id": "09ef25ae7982f25e20a1812bbc8de081a026e7966ae401dec2eae3ffbb3bb6c3", | |
| "file_bytes": 2013117824, | |
| "filename": "Qwen3.5-2B-L-TS-Q8_0.gguf", | |
| "gguf_file_type": "MOSTLY_Q8_0", | |
| "heldout_kl_mean": 0.000715782698124712, | |
| "hub_quant_label": "Q8_0", | |
| "hub_size_class": "8-bit", | |
| "lm_head_policy": "skip_tied", | |
| "output_embedding_mode": "tied_alias", | |
| "parameter_count": 1881825088, | |
| "positioning": "Uniform Q8", | |
| "product": "L", | |
| "recommended": false, | |
| "sha256": "fe5c7daff8dffebfee0f8d74d108c5ba0d03093eeb41b385916772e55cb27baf", | |
| "tensor_count": 320, | |
| "tensor_type_counts": { | |
| "BF16": 36, | |
| "F32": 133, | |
| "Q8_0": 151 | |
| }, | |
| "whole_file_bpw": 8.558150645720374 | |
| } | |
| ] | |
| } | |