Canonical default of the
Zen5 family.
Multimodal sparse MoE (image + text in → text out) with 35B total / 3B active parameters per token, 256K context. The everyday Zen5 model — agentic-trained, fast at scale, frontier-quality vision-language reasoning at a 3B-active compute budget.
Repackaged from
Qwen/Qwen3.6-35B-A3B (apache-2.0, Alibaba Qwen) — quantized to GGUF from the abliterated
huihui-ai/Huihui-Qwen3.6-35B-A3B-abliterated variant.
Not trained from scratch — a permissively-licensed redistribution for the OSS-clean Zen model line.
1hf download zenlm/zen-5-gguf --local-dir gguf
2MAIN=$(ls gguf/*-Q4_K.gguf | head -1)
3
4# text-only chat
5llama-cli -m "$MAIN" -p "Explain MoE inference."
6
7# vision-language (image input)
8llama-cli -m "$MAIN" \
9 --mmproj gguf/mmproj-model-f16.gguf \
10 --image path/to/screenshot.png \
11 -p "Describe this UI and propose a fix."