A mixture-of-experts, multimodal (vision-language) model with a Hermes-style agentic / function-calling alignment, distributed as a compact GGUF for llama.cpp / llama-server.
In the author's local 8-model benchmark suite, this build placed #1 in every category — math, knowledge, and agentic tool-use — making it the top composite scorer of the set.
Benchmark results — Qwen3.6-35B-Hermes-V6 ranks #1 across math, knowledge, and agentic tasks
📊 The full interactive report is also bundled in this repo: FINAL_REPORT.html.
✨ What this is
Base lineage
Qwen 3.6 family (community build / fine-tune — not an official Alibaba release)
Architecture
Mixture-of-Experts (MoE), Qwen3
Total / active params
~35B total / ~3B active per token (the A3B notation)
Modality
Text + Vision (ships with a separate mmproj multimodal projector)
The MoE design is the key to its efficiency: although ~35B parameters are loaded, only ~3B are active on any given token, so it runs at usable speeds on consumer APUs/GPUs while keeping dense-model quality.
📦 Files in this repository
File
Size
Description
Qwen3.6-35B-A3B-Hermes-V6-APEX-Compact.gguf
~17 GB
Main model weights (APEX-Compact GGUF). Load this with llama-server -m.
Qwen3.6-35B-A3B-Hermes-V6-mmproj.gguf
~858 MB
Multimodal projector (vision encoder adapter). Load with --mmproj. Required for image input.
FINAL_REPORT.html
~13 KB
Interactive benchmark report (champion board + full breakdown).
🏆 Benchmark results
Measured by the author on local hardware (see Methodology & caveats below). This model is 🥇 #1 in the 8-model comparison.
⚠️ TruthfulQA is low for every model in this set (25–31%). TruthfulQA is adversarial by design; these subsampled, locally-judged scores are not directly comparable to official leaderboard figures.
🚀 How to run
Prerequisites
A recent build of llama.cpp (CPU, Vulkan, or ROCm/CUDA backend).
Enough RAM/VRAM for ~17 GB of weights (the MoE means compute is light, but all experts must reside in memory).
Then talk to it like any OpenAI API at http://localhost:8080/v1/chat/completions.
Function calling / tool use
The Hermes V6 alignment supports the standard OpenAI tools schema (tool_choice: auto). Example:
bash
1curl -s http://localhost:8080/v1/chat/completions -H "Content-Type: application/json" -d '{
2 "model": "Qwen3.6-35B-A3B-Hermes-V6-APEX-Compact.gguf",
3 "messages": [{"role":"user","content":"Find my pending order and cancel only that one."}],
4 "tools": [ /* your function schemas */ ],
5 "tool_choice": "auto",
6 "temperature": 0.1
7}'
Thinking mode control
This is a hybrid reasoning model. Prefix the system prompt with /no_think for fast, non-reasoning responses (recommended for high-volume tool-calling / agent loops); omit it to engage chain-of-thought reasoning.
Multimodal (image) input
With the --mmproj projector loaded, you can pass images (via the llama-server multimodal interface) alongside text for image-understanding tasks.
🔬 Methodology & caveats (please read)
These results are author-measured on a specific local setup, not official leaderboard scores. Be aware:
Knowledge (MCQ): 200-question subsamples per dataset, averaged over 2 independent runs (matched within ±2.5%).
GSM8K: run through lm-evaluation-harness (EleutherAI) — the industry-standard harness.
Agentic: a custom τ-bench-style simulator (10 multi-turn retail tasks, strict pass/fail). The headline figure is the best of dedicated + loop runs, each model run with its optimal flags.
Hardware: AMD Ryzen AI 9 HX 470 · Radeon 890M (~14.4 GB) · 28 GB RAM · Vulkan/ROCm backend. Speeds (~15 t/s) are specific to this device.
Subsampled/local judging means absolute numbers are illustrative, not directly comparable to full-scale published benchmarks. Use them to rank models within this set, not to compare against vendor-published scores.
This is a community release by MrFadiAi. It is not an official Alibaba / Qwen or Nous Research / Hermes product.
The license: apache-2.0 field follows the upstream Qwen3 lineage. Verify and comply with the applicable upstream Qwen license for your use case before redistribution or commercial deployment.
"Hermes" and "Qwen" are trademarks of their respective owners and are used here only to describe the model's training lineage.
🙏 Acknowledgements
Built on the outstanding work of the Qwen team, the Hermes alignment tradition, the llama.cpp project, and EleutherAI's lm-evaluation-harness.