GraySoft
Projects Models Compare Cloud benchmarks FAQ Download guIDE โ†’
Model Intelligence Sheet

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 โ€ฆ

ggufmoeexpert-pruningagenticreasoningtext-generationbase_model:Qwen/Qwen3.6-35B-A3Bbase_model:quantized:Qwen/Qwen3.6-35B-A3Blicense:apache-2.0endpoints_compatibleregion:usconversational

Runs locally from ~7.95 GB disk (8 GB VRAM class GPUs with llama.cpp / guIDE).

Downloads
2,716
Likes
0
Pipeline
text-generation
Author

Repository Files & Downloads

16 GGUF files detected
Direct downloads for local inference
FileTypeQuantizationSizeLink
Devlin-Alpha-22B-A3B-F16.ggufGGUFF1642.08 GBDownload
Devlin-Alpha-22B-A3B-IQ3_S.ggufGGUFIQ3_S9.34 GBDownload
Devlin-Alpha-22B-A3B-IQ4_NL.ggufGGUFIQ4_NL12.16 GBDownload
Devlin-Alpha-22B-A3B-IQ4_XS.ggufGGUFIQ4_XS11.56 GBDownload
Devlin-Alpha-22B-A3B-Q2_K.ggufGGUFQ2_K7.95 GBDownload
Devlin-Alpha-22B-A3B-Q3_K_L.ggufGGUFQ3_K_L11.04 GBDownload
Devlin-Alpha-22B-A3B-Q3_K_M.ggufGGUFQ3_K_M10.23 GBDownload
Devlin-Alpha-22B-A3B-Q3_K_S.ggufGGUFQ3_K_S9.28 GBDownload
Devlin-Alpha-22B-A3B-Q4_0.ggufGGUFQ4_012.00 GBDownload
Devlin-Alpha-22B-A3B-Q4_K_M.ggufGGUFQ4_K_M12.87 GBDownload
Devlin-Alpha-22B-A3B-Q4_K_S.ggufGGUFQ4_K_S12.11 GBDownload
Devlin-Alpha-22B-A3B-Q5_0.ggufGGUFQ5_014.57 GBDownload
Devlin-Alpha-22B-A3B-Q5_K_M.ggufGGUFQ5_K_M15.02 GBDownload
Devlin-Alpha-22B-A3B-Q5_K_S.ggufGGUFQ5_K_S14.57 GBDownload
Devlin-Alpha-22B-A3B-Q6_K.ggufGGUFQ6_K17.30 GBDownload
Devlin-Alpha-22B-A3B-Q8_0.ggufGGUFQ8_022.39 GBDownload

Model Details

Model IDDevlin-AI/Devlin-Alpha-22B-A3B-GGUF
AuthorDevlin-AI
Pipelinetext-generation
Licenseapache-2.0
Base modelQwen/Qwen3.6-35B-A3B
Last modified2026-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 ๐Ÿ“

  1. โ–ถ Usage
  2. ๐Ÿ“ƒ License
  3. ๐Ÿ™ 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.

* llama.cpp GitHub Repository

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.

Download guIDE โ†’ ยท Browse 524k+ models ยท Compare models

Source: Hugging Face ยท Compare models