[論文レビュー] AdaptOrch: Task-Adaptive Multi-Agent Orchestration in the Era of LLM Performance Convergence
AdaptOrch は、タスク依存グラフに基づき、並行・逐次・階層・ハイブリッドなどのトップロジーを選択するトポロジー認識型オーケストレーションを正式化・実装し、同一モデルで静的ベースラインより12–23%の向上を達成する。
As large language models from diverse providers converge toward comparable benchmark performance, the traditional paradigm of selecting a single best model per task yields diminishing returns. We argue that orchestration topology -- the structural composition of how multiple agents are coordinated, parallelized, and synthesized -- now dominates system-level performance over individual model capability. We present AdaptOrch, a formal framework for task-adaptive multi-agent orchestration that dynamically selects among four canonical topologies (parallel, sequential, hierarchical, and hybrid) based on task dependency graphs and empirically derived domain characteristics. Our framework introduces three key contributions: (1) a Performance Convergence Scaling Law, formalizing conditions under which orchestration selection outweighs model selection; (2) a Topology Routing Algorithm that maps task decomposition DAGs to optimal orchestration patterns in O(|V| + |E|) time; and (3) an Adaptive Synthesis Protocol with provable termination guarantees and heuristic consistency scoring for parallel agent outputs. We validate AdaptOrch across coding (SWE-bench), reasoning (GPQA), and retrieval-augmented generation tasks, demonstrating that topology-aware orchestration achieves 12-23% improvement over static single-topology baselines, even when using identical underlying models. Our results establish orchestration design as a first-class optimization target independent of model scaling.
研究の動機と目的
- LLM 能力が収束する際、モデル選択からオーケストレーション設計への移行を動機づける。
- 4つの標準的トップロジー間のタスク適応型トポロジールーティングの正式なフレームワークを提案する。
- タスク DAG 上で動作する線形時間のトポロジールーティングアルゴリズムを開発する。
- マルチエージェント出力のための終了保証を伴う適応的統合プロトコルを提示する。
- コード作成、推論、検索タスクを横断するトポロジー認識型オーケストレーションを実証的に検証する。
提案手法
- LLM間の能力収束をモデルのエプシロン収束として定義する。
- サブタスク・コスト・結合強度を含むタスク依存DAGを正式化する。
- 4つの標準トップロジー(並行、逐次、階層、ハイブリッド)を導入し、|V|+|E|の計算量を持つトポロロジールーティングアルゴリズムを提示する。
- 各トポロジーに対する実行戦略を説明する(並行、逐次、階層リードエージェント、レイヤードハイブリッド)。
- 並行出力を結合する整合ヒューリスティックを備え、終了を保証する適応的統合プロトコルを提示する。
- SWE-bench、GPQA、HotpotQA に対する実証評価を通じて AdaptOrch を静的ベースラインと比較する。

実験結果
リサーチクエスチョン
- RQ1LLM 能力が収束する際、オーケストレーションのトポロジーは最終タスクの性能にどのように影響するのか。
- RQ2タスク依存構造は、 parallel、sequential、hierarchical、hybrid の4つのトップロジー間の選択を信頼性高く導けるか。
- RQ3適応的統合プロセスの収束特性と終了保証は何か。
- RQ4コード作成、推論、検索タスク across トポロジー認識型オーケストレーションで得られる性能向上(精度とスループット)はどれほどか。
主な発見
| Method | SWE-bench Verified Acc | SWE-bench Verified Lat | SWE-bench Verified Tok(K) | GPQA Diamond Acc | GPQA Diamond Lat | GPQA Diamond Tok(K) | HotpotQA F1 | HotpotQA Lat | HotpotQA Tok(K) |
|---|---|---|---|---|---|---|---|---|---|
| Single Best | 42.8 | 1.0 × | 12.3 | 46.2 | 1.0 × | 4.1 | 68.3 | 1.0 × | 6.8 |
| MoA-3L | 48.1 | 3.2 × | 84.6 | 49.8 | 2.8 × | 31.2 | 71.6 | 2.5 × | 47.3 |
| Static-Parallel | 47.3 | 1.4 × | 52.1 | 44.1 | 1.3 × | 18.7 | 72.8 | 1.2 × | 28.4 |
| Static-Sequential | 45.6 | 2.8 × | 48.9 | 50.3 | 2.4 × | 16.4 | 69.1 | 2.1 × | 26.1 |
| LLM-Blender | 44.9 | 1.8 × | 61.7 | 47.7 | 1.6 × | 22.3 | 70.4 | 1.5 × | 34.8 |
| AdaptOrch (ours) | 52.6 | 1.6 × | 41.8 | 53.1 | 1.5 × | 15.9 | 76.4 | 1.3 × | 22.7 |
| _Δ vs Single Best_ | +9.8 | — | — | +6.9 | — | — | +8.1 | — | — |
| _Δ vs Best Static_ | +4.5 | — | — | +2.8 | — | — | +3.6 | — | — |
- トポロジー認識型オーケストレーションは、同一モデルを用いた3つのベンチマークで静的トポロジーベースラインを12–23%の精度向上で上回る。
- ハイブリッドトポロジーが頻繁に選択され、ベンチマーク間で平均49.7% のルーティングを占め、結合度が高い領域ではより逐次/階層的なルーティングとなる。
- AdaptOrch は SWE-bench Verified、GPQA Diamond、HotpotQA の最大精度を Single Best や他のベースラインと比較して達成する。
- ルーティングアルゴリズムは線形時間で動作し、統合プロトコルは数回の繰り返しで終了する(経験的にはタスクの94%で2回の繰り返し)。
- 適応的ルーティングは一部のベースラインに比べトークン使用量を抑制し、精度を向上させつつトークン効率指標にも有利。

より良い研究を、今すぐ始めましょう
論文設計から論文執筆まで、研究時間を劇的に削減しましょう。
クレジットカード登録不要
このレビューはAIが作成し、人間の編集者が確認しました。