Datasets:
model stringclasses 4
values | params stringclasses 4
values | size_gb int64 13 21 | pairing_score float64 84.3 92.7 | codeact float64 94 99 | multistep float64 50 100 | instruction float64 92 100 | longcontext float64 66.7 100 | lc_16k float64 73.3 100 | lc_32k float64 66.7 100 | lc_64k float64 0 100 | instruction_delta float64 -28 6 | hf_repo stringclasses 4
values |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
Qwopus-GLM-18B | 18B frankenmerge | 13 | 92.65 | 94 | 75 | 94 | 100 | 100 | 100 | 100 | -28 | KyleHessling1/Qwopus-GLM-18B-Healed |
Qwen3.6-27B | 27B dense | 21 | 92.38 | 99 | 100 | 100 | 71.11 | 73.33 | 66.67 | 73.33 | -2 | unsloth/Qwen3.6-27B-GGUF |
Nemotron-Cascade-2-30B | 30B-A3B MoE | 18 | 90.5 | 99 | 50 | 92 | 100 | 100 | 100 | 100 | 6 | bartowski/nvidia_Nemotron-Cascade-2-30B-A3B-GGUF |
Hermes-4.3-36B | 36B dense | 21 | 84.27 | 95 | 66.67 | 98 | 66.67 | 100 | 100 | 0 | 2 | NousResearch/Hermes-4.3-36B-GGUF |
Hermes Pairing — Agentic Benchmark for Local LLMs (Phase A + B)
How well does a local LLM drive an agent? This dataset holds results for pairing local models with
Hermes Agent (NousResearch) — a CodeAct agent: the model
acts by writing Python (execute_code) that orchestrates tools, not by emitting JSON function calls.
Generated with llm-bench-rig on an NVIDIA RTX 5090 (32GB), llama.cpp / GGUF, under Hermes's real ~3.5K-token system prompt.
Phase A (synthetic). A reproducible synthetic ranking of agentic capability — not a real-harness verdict. Phase B (running the top finishers through the actual Hermes Agent) is the validation step.
Leaderboard
| Rank | Model | Pairing | codeact | multistep | instruction | long-ctx |
|---|---|---|---|---|---|---|
| 1 | Qwopus-GLM-18B (13GB) | 92.65 | 94 | 75 | 94 | 100 |
| 2 | Qwen3.6-27B (21GB) | 92.38 | 99 | 100 | 100 | 71 |
| 3 | Nemotron-Cascade-2-30B | 90.50 | 99 | 50 | 92 | 100 |
| 4 | Hermes-4.3-36B (21GB) | 84.27 | 95 | 67 | 98 | 67¹ |
¹ Hermes-4.3-36B OOMs at 64K context on 32GB → 0 at that depth.
The four axes (Hermes Pairing Score = weighted sum, 0–100)
- codeact (0.40) — code-as-action: writes Python orchestrating tools, executed in a sandbox (pass@1).
- longcontext (0.25) — retrieve-and-use a needle in a long memory/tool-log context at 16K/32K/64K (per-depth, VRAM-aware; an OOM depth scores 0).
- instruction (0.20) — compliance under the real Hermes prompt vs minimal (the delta is the heavy-prompt tax).
- multistep (0.15) — loop stability: forced fetch→observe→act loops.
Per-depth long-context and the instruction delta are in hermes_pairing.csv.
Findings (honest)
- #1 and #2 are a statistical tie (within ~±5% CI). Not "Qwopus won by 0.3."
- An 18B frankenmerge competes with the bigger models — efficiency over raw size.
- The lab's own model finishes last — Hermes-4.3-36B is the worst pairing for Hermes Agent (gap is real).
- No model wins all four axes — best agent model depends on workload: Qwen 27B is the reasoning-loop/instruction king but weak at retrieval; Nemotron + Qwopus ace long-context; Nemotron is weakest at multi-step.
- The 64K VRAM wall — a 36B Q4 can't hold 64K KV in 32GB; smaller models can. Size is a liability for long-context agents on a single card.
Phase B — real-harness validation (phase_b_real_harness)
The synthetic Phase A was confirmed/broken by running the top 3 finishers through the real Hermes
Agent (no-sudo uv install, one-shot mode, pointed at llama-server) on 14 multi-step tasks × 3
repeats = 126 runs. Each task succeeds only if the resulting filesystem state is correct. Efficiency
(turns = model calls; gen tokens) parsed from the inference-server log.
| Model | Completion | Avg turns | Avg gen tokens |
|---|---|---|---|
| Qwen3.6-27B | 100% (42/42) | 3.0 | 364 |
| Qwopus-GLM-18B | 85.7% (36/42) | 3.6 | 870 (2.4×) |
| Nemotron-Cascade-2-30B | 85.7% (36/42) | 4.4 | 1334 (3.7×) |
The synthetic tie broke. Qwen3.6-27B completed every task and was 2.4–3.7× more token-efficient — an efficiency gap a synthetic benchmark can't measure (visible only inside the real agent loop). The 18B that tied #1 synthetically is neither the most reliable nor the most efficient in the real harness. Qwopus and Nemotron fail on different task types (parsing/logic vs. transforms/chains). Overall verdict across both phases: Qwen3.6-27B.
Method
llama.cpp / llama-server, GGUF, RTX 5090 32GB. Real Hermes prompt extracted from the open-source repo
(static guidance, ~3.5K tokens). codeact runs under a light prompt (the real prompt conditions models
into incremental tool-call markup that fights a one-shot block eval); the other three run under the real
prompt. Decision-run sizes: codeact n≈100, instruction n≈50, longcontext n≈15×3 depths, multistep n≈12.
Full code + methodology: https://github.com/notwitcheer/llm-bench-rig (lib/agentic/).
Models
KyleHessling1/Qwopus-GLM-18B-Healed · unsloth/Qwen3.6-27B-GGUF · bartowski/Nemotron-Cascade-2-30B-A3B-GGUF · NousResearch/Hermes-4.3-36B-GGUF
- Downloads last month
- 42