Devlin-AI/Devlin-Alpha-22B-A3B-GGUF overview
Devlin Alpha 22B A3B Devlin Alpha 22B A3B is a development version of Devlin Mini, a lightweight model focused on agentic tasks based on Qwen3.6 35B A3B. This โฆ
Runs locally from ~7.95 GB disk (8 GB VRAM class GPUs with llama.cpp / guIDE).
Repository Files & Downloads
| File | Type | Quantization | Size | Link |
|---|---|---|---|---|
| Devlin-Alpha-22B-A3B-F16.gguf | GGUF | F16 | 42.08 GB | Download |
| Devlin-Alpha-22B-A3B-IQ3_S.gguf | GGUF | IQ3_S | 9.34 GB | Download |
| Devlin-Alpha-22B-A3B-IQ4_NL.gguf | GGUF | IQ4_NL | 12.16 GB | Download |
| Devlin-Alpha-22B-A3B-IQ4_XS.gguf | GGUF | IQ4_XS | 11.56 GB | Download |
| Devlin-Alpha-22B-A3B-Q2_K.gguf | GGUF | Q2_K | 7.95 GB | Download |
| Devlin-Alpha-22B-A3B-Q3_K_L.gguf | GGUF | Q3_K_L | 11.04 GB | Download |
| Devlin-Alpha-22B-A3B-Q3_K_M.gguf | GGUF | Q3_K_M | 10.23 GB | Download |
| Devlin-Alpha-22B-A3B-Q3_K_S.gguf | GGUF | Q3_K_S | 9.28 GB | Download |
| Devlin-Alpha-22B-A3B-Q4_0.gguf | GGUF | Q4_0 | 12.00 GB | Download |
| Devlin-Alpha-22B-A3B-Q4_K_M.gguf | GGUF | Q4_K_M | 12.87 GB | Download |
| Devlin-Alpha-22B-A3B-Q4_K_S.gguf | GGUF | Q4_K_S | 12.11 GB | Download |
| Devlin-Alpha-22B-A3B-Q5_0.gguf | GGUF | Q5_0 | 14.57 GB | Download |
| Devlin-Alpha-22B-A3B-Q5_K_M.gguf | GGUF | Q5_K_M | 15.02 GB | Download |
| Devlin-Alpha-22B-A3B-Q5_K_S.gguf | GGUF | Q5_K_S | 14.57 GB | Download |
| Devlin-Alpha-22B-A3B-Q6_K.gguf | GGUF | Q6_K | 17.30 GB | Download |
| Devlin-Alpha-22B-A3B-Q8_0.gguf | GGUF | Q8_0 | 22.39 GB | Download |
Model Details
| Model ID | Devlin-AI/Devlin-Alpha-22B-A3B-GGUF |
|---|---|
| Author | Devlin-AI |
| Pipeline | text-generation |
| License | apache-2.0 |
| Base model | Qwen/Qwen3.6-35B-A3B |
| Last modified | 2026-09-09T12:27:52.000Z |
Model README
---
license: apache-2.0
base_model:
- Qwen/Qwen3.6-35B-A3B
tags:
- moe
- expert-pruning
- agentic
- reasoning
- gguf
pipeline_tag: text-generation
---
Devlin Alpha 22B A3B
Devlin Alpha 22B A3B is a development version of Devlin Mini, a lightweight model focused on agentic tasks based on Qwen3.6 35B A3B. This version of the model is intended only for testing purposes and is not recommended for production. Benchmarks pending.
Table of Contents ๐
- โถ Usage
- ๐ License
- ๐ Acknowledgements
<a name="usage"/>
โถ Usage
1. Download Models
Download models using huggingface-cli:
pip install "huggingface_hub[cli]"
huggingface-cli download Devlin-AI/Devlin-Alpha-22B-A3B-GGUF --local-dir ./Devlin-Alpha-22B-A3B-GGUF
You can also download directly from this page.
2. Inference
To use these GGUF files, you'll need a compatible inference engine like llama.cpp or clients built on top of it (e.g., Ollama, LM Studio, KoboldCpp, text-generation-webui with a llama.cpp backend).
> โ ๏ธ Important: Always pass --jinja when loading with llama.cpp so the Qwen3.6 chat template is applied correctly. Without it, the model may emit malformed turns.
> Note: Text-only, and there's no MTP head, so draft/MTP speculative-decoding flags don't apply.
llama.cpp (server)
llama-server -hf Devlin-AI/Devlin-Alpha-22B-A3B-GGUF --port 8000 -c 262144 --jinja
Recommended sampling parameters (thinking mode): temperature=1.0, top_p=0.95, top_k=20, with --chat-template-kwargs "{\"enable_thinking\":true,\"preserve_thinking\":true}". For precise coding tasks: temperature=0.6, top_p=0.95, top_k=20. For non-thinking mode: temperature=0.7, top_p=0.8, top_k=20, presence_penalty=1.5, with --chat-template-kwargs "{\"enable_thinking\":false}".
Parsing Reasoning Traces
Responses begin with a <think> โฆ </think> block containing the chain-of-thought, followed by the final answer. To split them:
if "</think>" in text:
reasoning, answer = text.split("</think>", 1)
reasoning = reasoning.replace("<think>", "").strip()
answer = answer.strip()
else:
reasoning, answer = "", text.strip()
Ollama
ollama run hf.co/Devlin-AI/Devlin-Alpha-22B-A3B-GGUF
<a name="license"/>
๐ License
This model is a derivative work of Qwen/Qwen3.6-35B-A3B, licensed under the Apache 2.0 License, and is therefore distributed under the terms of the same license.
<a name="acknowledgements"/>
๐ Acknowledgements
- Qwen Team for the base model:
* Qwen3.6-35B-A3B on Hugging Face
- The llama.cpp project and its contributors for the GGUF format and the incredible tooling that makes local LLM inference accessible.
Run Devlin-AI/Devlin-Alpha-22B-A3B-GGUF with guIDE
Download guIDE โ the AI-native code editor with local LLM inference and 69 built-in tools.
Source: Hugging Face ยท Compare models