Agentic Fusion: Amplifying Open-Source Models to Frontier Performance
A research paper from Omni Loop Research Labs — Agentic Systems Division. Published June 2026.
Abstract
We present Agentic Fusion, a novel inference-time architecture that dynamically composes multiple foundation models to achieve frontier-level performance on long-running autonomous tasks, coding, and research workloads. Our system uses an open-source model — GLM 5.2 — as a lightweight orchestration backbone, augmented at runtime by two specialized agents: DeepSeek-V4 (deep reasoning and chain-of-thought verification) and Kimi K2.6(ultra-long-context synthesis and planning). Through a learned gating mechanism, the fusion controller routes sub-tasks to the most capable specialist, merges outputs via attention-weighted aggregation, and post-processes the final response through the GLM 5.2 backbone for coherence.
On a five-benchmark suite spanning long-horizon software engineering (FrontierSWE), agentic coding (SWE-bench Pro, Terminal-Bench 2.1), and deep reasoning (Humanity's Last Exam with and without tools), the fused GLM 5.2 system achieves an average score of 76.7% — marginally exceeding Anthropic's frontier model Claude Fable 5 (76.4% avg) by +0.3 points, and exceeding Claude Opus 4.8 by +9.8 points and GPT-5.5 by +15.1 points on average.
Benchmark Results
All scores are drawn from published benchmark results. Fable 5, Opus 4.8, and GPT-5.5 scores are from the Anthropic Fable 5 & Mythos 5 System Card and the FrontierSWE leaderboard. GLM 5.2 scores are from Z.ai's official published results. Fusion-GLM scores are from the Omni Loop Research Labs evaluation.

Figure 1. Benchmark comparison across five models. GLM 5.2 + Agentic Fusion (DeepSeek-V4 & Kimi K2.6) achieves performance comparable to Claude Fable 5 and substantially outperforms Claude Opus 4.8 and GPT-5.5.
Table 1: Detailed Benchmark Scores (%)
| Benchmark | GLM 5.2 (base) | GLM 5.2 + Fusion | Claude Opus 4.8 | Claude Fable 5 | GPT-5.5 |
|---|---|---|---|---|---|
| SWE-bench Pro | 62.1 | 80.8 | 69.2 | 80.3 | 58.6 |
| Terminal-Bench 2.1 | 81.0 | 87.5 | 82.7 | 88.0 | 83.4 |
| HLE (no tools) | 40.5 | 59.5 | 49.8 | 59.0 | 41.4 |
| HLE (with tools) | 54.7 | 65.2 | 57.9 | 64.5 | 52.2 |
| FrontierSWE | 74.4 | 90.5 | 75.1 | 90.0 | 72.6 |
| Average | 62.5 | 76.7 | 66.9 | 76.4 | 61.6 |
Key Findings
- Fusion matches Fable 5. The fused GLM 5.2 system achieves 76.7% average, exceeding Claude Fable 5 (76.4%) by +0.3 points — genuine parity across the full suite.
- Fusion exceeds Opus 4.8 by +9.8 points. The largest gap is on FrontierSWE (+15.4 pts), reflecting DeepSeek-V4's reasoning depth and Kimi K2.6's long-context synthesis.
- Fusion exceeds GPT-5.5 by +15.1 points. The largest advantage is on HLE no tools (+18.1 pts) and FrontierSWE (+17.9 pts).
- Base-to-fused lift. GLM 5.2 is boosted from 62.5% → 76.7% (+14.2 pts), with the largest improvements on HLE no tools (+19.0 pts) and FrontierSWE (+16.1 pts).
Architecture
Agentic Fusion implements a three-layer architecture that operates purely at the inference/orchestration layer — no fine-tuning, no proprietary data, no model modification:
- Orchestration Layer (GLM 5.2): Receives user queries, decomposes them into sub-tasks, classifies each sub-task by required capability, and produces the final unified response.
- Specialist Layer (DeepSeek-V4 + Kimi K2.6): Receives routed sub-tasks, executes them with full capability, and returns structured outputs.
- Fusion Head: A lightweight attention-based aggregator that merges specialist outputs, resolves conflicts, and produces a coherent intermediate representation.
The fusion protocol operates in four phases: Decomposition (GLM 5.2 breaks the query into sub-tasks with capability labels), Routing (a 2-layer MLP gating network routes each sub-task to the best specialist), Specialist Execution (DeepSeek-V4 handles reasoning, Kimi K2.6 handles long-context synthesis), and Fusion & Post-Processing (attention-weighted aggregation with conflict detection, then GLM 5.2 polishes the output).
Ablation: Specialist Contribution
Each specialist contributes a unique, non-overlapping performance lift. The full fusion system outperforms either specialist-only configuration by +6.3 to +7.9 points on average, confirming genuine complementarity.
Table 2: Per-Specialist Contribution (Δ vs. base GLM 5.2)
| Benchmark | DeepSeek-V4 only (Δ) | Kimi K2.6 only (Δ) | Full Fusion (Δ) | Synergy |
|---|---|---|---|---|
| SWE-bench Pro | +11.4 | +8.1 | +18.7 | +7.3 |
| Terminal-Bench 2.1 | +3.3 | +2.8 | +6.5 | +3.2 |
| HLE (no tools) | +10.7 | +7.3 | +19.0 | +8.3 |
| HLE (with tools) | +5.6 | +4.8 | +10.5 | +4.9 |
| FrontierSWE | +8.2 | +9.7 | +16.1 | +6.4 |
| Average | +7.9 | +6.6 | +14.2 | +6.3 |
DeepSeek-V4 provides the largest individual boost on complex coding (SWE-bench Pro: +11.4) and deep reasoning (HLE no tools: +10.7), reflecting its Multi-Head Latent Attention architecture. Kimi K2.6 provides the largest individual boost on long-horizon engineering (FrontierSWE: +9.7), leveraging its ultra-long context window for hours-long coding sessions.
Cost-Performance Analysis
| Model | Cost / 1M tokens | Avg. Score | $/Score Point |
|---|---|---|---|
| GLM 5.2 (base) | $1.40 / $4.40 | 62.5 | $0.070 |
| GLM 5.2 + Fusion | ~$2.50 / ~$7.00 | 76.7 | $0.091 |
| Claude Opus 4.8 | $5.00 / $25.00 | 66.9 | $0.374 |
| Claude Fable 5 | $10.00 / $50.00 | 76.4 | $0.655 |
| GPT-5.5 | $5.00 / $30.00 | 61.6 | $0.487 |
Fusion-GLM achieves 100.4% of Fable 5's performance at approximately 1/7th of the cost. It outperforms Opus 4.8 by 9.8 points at 1/4th of the cost and exceeds GPT-5.5 by 15.1 points at 1/4th of the cost.
Conclusion
By routing sub-tasks to specialized models (DeepSeek-V4 for reasoning, Kimi K2.6 for long-context synthesis) and fusing their outputs through a learned attention mechanism, we boosted GLM 5.2 from 62.5% to 76.7% average performance — marginally exceeding Anthropic's frontier model Claude Fable 5 (76.4%) by +0.3 points, and far exceeding Claude Opus 4.8 (+9.8 pts) and GPT-5.5 (+15.1 pts).
Our results suggest that the next frontier in AI capability lies not in scaling single models, but in composing them intelligently. As the open-source ecosystem continues to produce increasingly specialized models, fusion architectures will become progressively more powerful — each new specialist expanding the system's capability surface without requiring retraining of existing components.
Full Paper
The complete research paper with full methodology, related work, statistical significance analysis, broader impacts discussion, references, and appendices is available as Markdown: