安価なモデルがマルチエージェント経済を変えたパターン
本文の状態
日本語全文を表示中
詳細モードで約13分の本文を読めます。
同じ出来事の情報源
この情報源を基点に整理
Arize AI Blog
Anthropic は、高価なモデルで計画し安価なモデルに実行を委ねる「オーケストレーター・エグゼクター」パターンが、安価モデルの性能向上により生産性エージェント構築の最適解となったと報告した。
Continue in AI NEW LAB
このニュースを、実務の判断につなげる
AI NEW LABで、試したことや先に確認したい条件を共有できます。まずはログインなしで読めます。
AI NEW LABで論点を見るAI深層分析を開く2026年8月8日 01:46
AI深層分析
キーポイント
コスト対効果の劇的改善
Anthropic の最新データによると、Fable 5 オーケストレーターと Sonnet 5 ワーカーの構成は、全チームを Fable にした場合と比較して、BrowseComp ベンチマークで 96% のスコアを維持しつつコストを 46% に抑える成果を達成した。
アーキテクチャの役割分担
オーケストレーターがタスク分解、委任、合成、検証を行う一方、エグゼキューターは検索やコードレビューなど特定のトーンに特化した実行を担当し、各役割に最適なモデルを割り当てることで効率化を図る。
主要企業の対応と実装
Anthropic は 2025 年 6 月にこのアーキテクチャの研究結果を発表し、OpenAI も GPT-5.6 のリリースに合わせて同様の形状を実装し、マルチエージェントベータや API レベルでのサポートを開始した。
トークン消費の非対称性
オーケストレーターは少数のトークンを消費するが、その意思決定がすべての下流呼び出しを形作るため、計画と実行のコストカーブの違いがこのアーキテクチャの経済的合理性を生んでいる。
マルチエージェントのパターンは新しくない
HuggingGPTやMinionSなど過去に類似のアーキテクチャが研究されており、現在は小型モデルの信頼性向上により実用化された段階にある。
重要な引用
a Fable 5 orchestrator directing Sonnet 5 workers retained 96% of an all-Fable team's score on BrowseComp, a benchmark of hard web research tasks, at 46% of the cost.
The flip happened in the last 13 months: in June 2025, Anthropic published an engineering post on their multi-agent research system...
An orchestrator-executor system separates high-level control from bounded execution.
The architecture has been waiting for better workers.
Source Article
元記事を日本語で読む
本文に関係しない購読案内、埋め込み通知、サイト内プロモーションは除いています。
生産環境でエージェントを構築する際、あまり派手な名前ではないものの知っておくべきパターンがあります。それが「オーケストレーター・エグゼクター」です。
高価なモデルが作業の計画を立て、チームに割り振った上で、その結果を検証するという仕組みです。これが今やエージェント構築における最良のアプローチとなりました。突然このパターンの価値が発見されたわけではありません(すでに3年前から存在します)。重要なのは、安価なモデルの性能が十分に向上した点にあります。
この転換点は過去13ヶ月で起こりました。2025年6月、Anthropicはマルチエージェント研究システムに関するエンジニアリング記事を発表しました。そこでは、OpusがSonnetというサブエージェントに指示を出す構成が紹介されていました。当時は「品質には対価を払う価値がある」という主張でした。なぜなら、マルチエージェント版は通常のチャットと比べて約15倍のトークンを消費していたからです。
しかし最近、Anthropicは同じアーキテクチャについて全く逆の主張で数値を発表しました。Fable 5がオーケストレーターとなり、Sonnet 5がワーカーとして機能する構成です。この構成では、BrowseComp(難易度の高いウェブ調査タスクを評価するベンチマーク)において、すべてをFableチームで構成した場合のスコアの96%を維持しながら、コストは46%に抑えることができました。
オーケストレーター・エグゼクター型エージェントアーキテクチャとは何でしょうか?
オーケストレーターとエグゼクターを分けるシステムは、高レベルの制御と制限された実行を分離します。この構造は「オーケストレーター・ワーカー」「プランナー・エグゼクター」「コーディネーター・ワーカー」といった名称でも知られています。
オーケストレーターは、目標をどのように分解するか、どのワーカーを呼ぶか、各ワーカーにどのような文脈を提供するか、返された証拠が十分かどうか、そして最終結果が完成したと判断するタイミングなどを決定します。一方、エグゼクター(実行役)は、検索やドキュメントレビュー、コード点検、テスト生成、情報抽出、ツール利用など、範囲を限定されトークン消費の多い作業を担当します。
各ワーカーに独自のモデル、プロンプト、ツール、文脈を持たせることで、チームは役割ごとに最適な能力を選定できます。Anthropic の Managed Agents ベータ版では、各エージェントが独立したスレッドと独自の設定を持ちます。OpenAI の GPT-5.6 ultra 設定ではデフォルトで 4 つのエージェントを調整し、Responses API のマルチエージェントベータ版では、開発者が並列実行するサブエージェントを実行してその成果を統合できます。
- Role:Owns / Select for
- Orchestrator:タスクの分解、委任、統合、検証、リトライ、停止判断 / 判断力、信頼性、計画品質、ワーカー出力の評価能力
- Executor:限定された調査、コーディング、抽出、レビュー、ツール依存のサブタスク / 成功したタスクあたりのコスト、レイテンシ、ツールの熟練度、厳密な指示への遵守
Plan: オーケストレーターが目標を分解し、範囲を限定した指示書を作成します。
Execute: ワーカーは独立したタスクを並列で実行し、それぞれ孤立した文脈の中で作業を行います。
Verify: オーケストレーターが証拠を確認し、不足部分を補いながら結果を統合します。
計画と実行にはコスト曲線が異なるため、この分離は重要です。オーケストレーターが消費するトークンは全体の少数に過ぎませんが、その意思決定がすべての下流呼び出しの成否を左右します。
なぜ 2026 年にオーケストレーターとエグゼキューターの経済構造が変わったのでしょうか?
Anthropic の発表(このパターンに対する API レベルでのサポート付き)に加え、OpenAI も 2 日後に同様の形状を採用し、異なる販売アプローチで登場しました。GPT-5.6 は 7 月 9 日にリリースされ、「デフォルトで 4 つのエージェントを並列に協調させる」ことを特徴とする Ultra タイアを提供。これはコストよりも速度を訴求するものでした。また、Luna も登場し、100 万トークンあたり 1 ドルという価格設定です。このモデルの明確な役割はエグゼキューターとして機能することにあります。
もしモデルにエグゼキューターとしての役割を期待しているなら、今が絶好のタイミングです。7 月 8 日には Grok 4.5 が登場し、Cognition の SWE-1.7 も同日にリリースされました(コーディングタスクあたり報告価格 1.97 ドル)。ただし Devin 専用モデルのため、独自のオーケストレーターに組み込むことはできません。さらに Databricks のベンチマークでは、GLM 5.2 がエンジニアの日常使いとなるコーディングモデルであることが結論づけられています。
これら一連の動きはわずか 5 日間で相次いで起こりました。これはアーキテクチャ上の合意形成を示すものですが、新しいアーキテクチャが生まれたわけではありません。
これは新しいパターンではない
このパターンに関する論文はいくつか存在します。HuggingGPT(2023 年 3 月)では、LLM が専門モデルのツールボックスを統括する仕組みが提案されました。また、Plan-and-Act(ICML 2025)では、プランナーとエグゼキューターを別々のモデルとして形式化しました。FrugalGPT(2023 年 5 月)は、まず安価なモデルを試み、信頼度が低い場合にのみ GPT-4 に昇格させるアプローチを採用しています。
2025 年 2 月、スタンフォード大学から『MinionS』という少し愛らしいタイトルの論文が発表されました。この論文で示されたアーキテクチャは、Anthropic が今月発表したものとほぼ同じものです。
この手法では、ファウンデーションモデル(基盤モデル)がコードを記述して小さなジョブにタスクを分解します。ローカルモデルがこれらのジョブを並列実行し、無関係な結果を破棄します。そして再びファウンデーションモデルが集約を行い、ループするかどうかを判断します。
MinionS は GPT-4o と同等の品質を 97.9% 達成しながら、クラウド利用コストは 5.7 倍削減しました。ただしこれは完全な比較ではありません。彼らの実行環境はローカルハードウェア上であり、トークンコストも計算に含まれていないからです。
MinionS の著者たちは後日分析を行い、このシステムが実用化できたのは 2024 年半ば以降だったと振り返っています。それ以前は、委任された下位タスクを信頼できる小型モデルが存在しなかったためです。このアーキテクチャは、より優秀な「作業員」の登場を待っていたのです。
では、どのモデルを実行担当(エグゼキューター)に選ぶべきでしょうか?
優れたエグゼキューターの評価基準は、トークンあたりのコストではなく、タスクあたりのコストです。
7 月に発表されたモデルたちは、「完了したタスクあたりのコスト」という新しい指標で競い合っています。これは以前から私が提唱してきた、モデルを評価するべき正しい方法です。Arize が実施した「成功したタスクあたりのコスト」ベンチマークでも、10 のモデルにわたって同様の結論が示されています。
Artificial Analysis による評価では、Grok 4.5 はコーディングエージェントの指数において GPT-5.5 とほぼ同等のパフォーマンスを示しました。ただし、1 つのタスクあたりのトークン使用量は 190 万で、Claude Code の Fable 5 が 720 万を要したのと対照的です。
このトークンの効率性が、Fable 5 の約 12 ドルに対して Grok 4.5 を完了タスクあたり約 2.5 ドルに抑える要因となっています。重要なのはコストそのものよりも、使用されたトークン量です。ただし大きな注意点として、Grok 4.5 のハルシネーション(幻覚)発生率は前作の約 2 倍に跳ね上がっています。監督付きのサブエージェントとしては許容範囲ですが、システム全体を任せるには不安が残ります。
Databricks は、エンジニアの実務でマージされたプルリクエストに基づいてベンチマークを構築しました。評価は LLM による判定ではなく、事前に用意されたテストケースによって行われました。その結果、以下のモデル比較が得られました:
- モデル:タスク完了率 / タスクあたりのコスト
- Opus 4.8:87% / $1.94
- GLM 5.2:Opus 4.8 と統計的に同等 / $1.28
- Sonnet 5:81% / $2.09
Sonnet 5 はトークンあたりのコストが Opus 4.8 より約 1.7 倍安価ですが、タスク完了には 1.9 倍のトークンを消費して読み込みと推論を行ったため、結果としてタスクあたりの総コストは高くなりました。つまり、「トークン単価が安いモデル」が「トータルのコストが高いモデル」になるケースがあるのです。このギャップこそが、トークンコストだけで AI の実用性を判断できない理由です。
したがって、エグゼキューター(実行層)における「安価なモデル」とは、単に価格表上の値が安いことを指すわけではありません。重要なのは、タスクを低コストで完了できる能力を持つモデルであるという点です。この特性は、後ほど詳しく触れるように、実際に測定して確認する必要があります。
しかし、もしエグゼキューターがこれほど優秀なら、なぜ高価なモデルをループ(制御層)に組み込む必要があるのでしょうか?
有能なオーケストレーターがいない場合、エグゼキューターの性能は著しく低下します
オーケストレーターをループから外せないという証拠は、7 月 8 日に発表された Writer, Inc. の論文から得られました。この論文の主題はモデル選択そのものではなく、22 のエンタープライズタスクを 6 つの異なるモデルで、2 つのオーケストレーションレイヤーの下で実行した結果が示されています。
その結果、委譲(デレゲーション)が安定して機能したのは、パネル内で最も性能の高い 2 つのモデルに限られ、スコアは約 0.85 に達しました。一方、高速・低コスト層では使い物にならないレベルまで低下し、スコアは約 0.45 でした。また、COPE と名付けられた 2025 年のプランナー実行(planner-executor)に関する研究でも、学術的な知見として「より大きなプランナーが小さなエグゼキューターを向上させる」という事実が確認されています。
つまり、安価なエグゼキューターを使っても、オーケストレーターまで安易に切り捨てることはできません。タスクの分解、委譲、そして結果の評価は、ある程度の能力(フロア)が必須となる機能だからです。
では、オーケストレーターとエグゼキューターの組み合わせ以外に代案はあるのでしょうか?
あります。それが「ルーティング」です。アーキテクチャそのものを変更するのではなく、ルーターを導入して、「難しい」クエリを最も高性能なモデルへ、「簡単な」タスクはエグゼキュータークラスのモデルへと振り分けるという手法です。
残念ながら、このアプローチの実践における有効性を示す証拠は現時点では乏しいです。ACL 2026 の Findings で発表された LLMRouterBench では、1 つの枠組みの下で 10 種類のルーティング手法を再評価しましたが、その結果、OpenRouter を含むいくつかの手法が、ワークロードに対して単一の最良モデルを使うことよりも確実に優れているとは証明できませんでした。
オーケストレーター・エグゼキューター型は現在、ルーティング型を上回っているように見えますが、その根拠のほとんどはベンダー自身が報告した数値に依存している点には注意が必要です。つまり、アーキテクチャを変えるべきなのは、自社のタスクに対する評価(evals)で得られた数値であり、システム内の各モデルについて「完了したタスクあたりのコスト」を明確に把握することです。これが私たちが Arize AX を構築した目的です。
では、今日オーケストレーター・エグゼキューター型のエージェントをどう実装すればよいのでしょうか?
これらを実現するために研究用のプレビューを待つ必要はありません。Claude API では「Managed Agents」がすでに提供されていますし、Claude Code においてもこれは設定項目の一つとして扱われます。サブエージェントを定義し、実行時にどのモデルを使用するかを指定できるのです。より広範なプロダクション環境での AI エージェントの形状にこのパターンを適用する場合は、まず AI エージェントにおける3 つのプロダクションパターンと、その役割を担うハッチ(harness)について理解することから始めましょう。
OpenAI の場合、デフォルトでトップレベルのパターンが提供されています。GPT-5.6 ultra が4 つの並列エージェントをアウトオブザボックスで調整し、Responses API のマルチエージェントベータ版では、どのモデルをどの役割に割り当てるかを制御できる同じ形状を実現できます。
このパターンは、信頼できる安価なワーカーが現れるまで3 年間も論文の中で待たされました。しかし今週になってついにそのワーカーが登場し、ツール類も設定ファイル一つで済むようになりました。自社のワークロードにどう影響するかを知るためのコストは、午後の数時間です。高価なモデルにはチームのリーダーとしての役割を任せるべきですが、もう彼らにタイピング作業をさせるために費用を支払う必要はありません。
「安価なモデルがマルチエージェントの経済を変えた」という記事は、Arize AI で最初に公開されました。
原文を表示
If you build production agents, you might want to get familiar with a pattern that has a pretty unglamorous name: orchestrator-executor. An expensive model plans the work, delegates it to a team of cheap models, and checks what comes back. This just became the smartest way to build agents, not because we suddenly discovered this pattern (it’s 3 years old!), but because cheap models got good enough.
The flip happened in the last 13 months: in June 2025, Anthropic published an engineering post on their multi-agent research system, an Opus lead delegating to Sonnet subagents. Back then, their pitch was that quality is worth paying for, because the multi-agent version burned roughly 15 times the tokens of a normal chat. But recently, Anthropic published numbers for the same architecture with the opposite pitch: a Fable 5 orchestrator directing Sonnet 5 workers retained 96% of an all-Fable team’s score on BrowseComp, a benchmark of hard web research tasks, at 46% of the cost.
What is an orchestrator-executor agent architecture?
An orchestrator-executor system separates high-level control from bounded execution. The same shape appears under names such as orchestrator-worker, planner-executor, and coordinator-worker. The orchestrator decides how to break down the goal, which workers to call, what context each receives, whether the returned evidence is sufficient, and when the final result is ready. Executors handle narrower, token-heavy work such as search, document review, code inspection, test generation, extraction, or tool use.
Because each worker can have its own model, prompt, tools, and context, teams can match capability to role. Anthropic’s Managed Agents beta gives each agent an isolated thread and its own configuration. OpenAI’s GPT-5.6 ultra setting coordinates four agents by default, while the Responses API multi-agent beta lets developers run concurrent subagents and synthesize their work.
Role
Owns
Select for
Orchestrator
Task decomposition, delegation, synthesis, verification, retries, and stopping decisions
Judgment, reliability, planning quality, and the ability to evaluate worker output
Executor
Bounded research, coding, extraction, review, and tool-heavy subtasks
Cost per successful task, latency, tool competence, and adherence to a precise brief
Plan: The orchestrator decomposes the goal and writes bounded briefs.
Execute: Workers run independent tasks in parallel within isolated contexts.
Verify: The orchestrator checks evidence, fills gaps, and synthesizes the result.
The separation matters because planning and execution have different cost curves. The orchestrator may consume a minority of the tokens, yet its decisions shape every downstream call.
Why did orchestrator-executor economics change in 2026?
In addition to Anthropic’s announcement, which came with API-level support for the pattern, OpenAI shipped the same shape two days later with a different sales angle. GPT-5.6 launched July 9 with an ultra tier “coordinating four agents in parallel by default,” pitched on speed rather than cost, alongside Luna at $1 per million input tokens, a model whose obvious job is to be the executor.
And if you’re looking for models to be executors, now’s a great time: Grok 4.5 on July 8, Cognition’s SWE-1.7 the same day at a reported $1.97 per coding task (Devin-only, so you can’t slot it into your own orchestrator), and a Databricks benchmark concluding GLM 5.2 is now a daily-driver coding model for their engineers.
This all landed in the same five days. That’s an architectural consensus, but it’s not a new architecture.
This is not a new pattern
There’s a bunch of papers about this pattern. HuggingGPT (March 2023) put an LLM in charge of a toolbox of specialist models, and Plan-and-Act (ICML 2025) formalized separate Planner and Executor models. FrugalGPT (May 2023) tried cheap models first and escalated to GPT-4 only on low confidence.
Then a paper with the slightly-too-cute title MinionS came out of Stanford in February 2025, with almost exactly the architecture Anthropic shipped this month. A frontier model decomposes a task by writing code that generates small jobs, local models execute the jobs in parallel and discard irrelevant results, and the frontier model aggregates and decides whether to loop. MinionS recovered 97.9% of GPT-4o’s quality at 5.7x less cloud spend, but it’s not an apples-to-apples comparison as they were running their executors on local hardware and not calculating the cost of those tokens.
The MinionS authors ran a retrospective and found their system wasn’t viable until mid-2024, because before that no small model could be trusted with a delegated subtask. The architecture has been waiting for better workers. How do you pick the model to be your executor?
Good executors are measured on cost per task, not per token
Models launched in July have been competing on a new metric, cost per completed task, that I’ve argued previously is the right way to judge a model. Arize’s own cost-per-successful-task benchmark makes the same point across ten models.
Artificial Analysis measured Grok 4.5 at rough parity with GPT-5.5 on their Coding Agent Index while using 1.9 million tokens per task, against 7.2 million for Fable 5 in Claude Code. That token efficiency, more than its token cost, is what lands it around $2.50 per completed task against roughly $12 for Fable. The big caveat: its measured hallucination rate roughly doubled against its predecessor, which is fine for a subagent being supervised, but not what you’d want running the whole show.
Databricks built a benchmark from their engineers’ real merged pull requests, graded by the original held-out tests rather than an LLM judge, and ran the model menu through it:
Model
Task completion
Cost per task
Opus 4.8
87%
$1.94
GLM 5.2
statistically tied with Opus
$1.28
Sonnet 5
81%
$2.09
Sonnet 5 is about 1.7x cheaper than Opus 4.8 per token, but it cost more per task because it read and reasoned through 1.9x more tokens to get there. The cheaper-per-token model was the more expensive model. That gap is why token costs alone don’t tell you if your AI is working.
So the executor tier isn’t “cheap models” in the price-sheet sense. It’s models that finish tasks cheaply, a property you have to measure (more on that in a second).
But if the executors are this good, why keep an expensive model in the loop at all?
Without a capable orchestrator, the executors perform poorly
Evidence that you can’t take the orchestrator out of the loop came from a Writer, Inc. paper posted July 8 that mostly isn’t about model choice. Writer ran the same 22 enterprise tasks on six models under two orchestration layers. They found delegation worked reliably only on the two strongest models in the panel, scoring around 0.85, and fell to unusable, around 0.45, on the fast tier. A 2025 planner-executor study called COPE found the academic version: larger planners improve smaller executors.
So cheap executors don’t mean you can cheap out on the orchestrator, because decomposing work, delegating it, and judging the results is precisely the capability with a floor.
Is there an alternative to the orchestrator-executor?
Yes, and it’s routing: instead of changing your architecture, get a router to send your “hard” queries to the most capable model, and the “easy” stuff to an executor-class model.
Unfortunately, the evidence for that in practice is currently poor. LLMRouterBench (ACL 2026 Findings) re-evaluated ten routing methods under one framework and found several, including the commercial router OpenRouter, fail to reliably beat simply using the single best model for your workload.
Orchestrator-executor currently seems to beat routing, though it’s worth noting that all the current evidence for that comes from vendors reporting their own numbers. Which brings me back to measurement: the only numbers that should change your architecture come from evals over your own tasks, with cost per completed task attached to every model in the system. That’s what we built Arize AX to do.
How can you build an orchestrator-executor agent today?
None of this requires waiting on a research preview. On the Claude API, Managed Agents is shipping today. In Claude Code, the pattern is a configuration choice: you can define subagents and specify what model they should use when they run. If you’re mapping this onto production agent shapes more broadly, start with three production patterns for AI agents and the role of the agent harness.
On OpenAI, you get the pattern by default at the top: GPT-5.6 ultra coordinates four parallel agents out of the box, and the multi-agent beta in the Responses API gives you the same shape with control over which model runs as which role.
The pattern spent three years in papers waiting for cheap workers that are good enough to trust. As of this week the workers are here, the tooling is a config file, and the price of finding out what it does for your workload is an afternoon. The expensive models deserve their place at the head of the team, but now you can stop paying them to do the typing.
The post How cheap models changed multi-agent economics appeared first on Arize AI.
関連記事
今日のまとめ
AIデイリーブリーフで今日の重要ニュースをまとめ読み