自然言語によるエージェントのオーケストレーション学習:Conductor モデル
本文の状態
日本語全文を表示中
詳細モードで約4分の本文を読めます。
同じ出来事の情報源
この情報源を基点に整理
Sakana AI
研究者らは強化学習を用いて Conductor モデルを訓練し、この AI が複数の大規模言語モデルに対して効果的なカスタム指示を自然言語で自動生成する能力を獲得したことを発見しました。これにより、人間が行っていたプロンプトエンジニアリングの役割を AI が代替可能になることが示されました。
Continue in AI NEW LAB
このニュースを、実務の判断につなげる
AI NEW LABで、試したことや先に確認したい条件を共有できます。まずはログインなしで読めます。
AI NEW LABで論点を見るSource Article
元記事を日本語で読む
本文に関係しない購読案内、埋め込み通知、サイト内プロモーションは除いています。

TL;DR
ここ数年、人間は異なる大規模言語モデル(LLM)から最高のパフォーマンスを引き出すために「プロンプトエンジニアリング」を行ってきました。本研究では、その作業を AI に任せるように訓練した場合に何が起きるかを探索しました。
本研究では、強化学習(RL)を用いて Conductor モデルを訓練した結果、このモデルが自然言語で他のモデル群全体に対して非常に効果的なカスタム指示を記述することを自発的に学習することが分かりました。本質的には、それらを自然言語で「管理」する方法を学んだことになります。
最も驚いたのは、その動的な適応能力です。単純な事実確認の質問には単一のモデルに問い合わせるだけで済みますが、難しいコーディング問題に対しては、自律的にプランナー、コーダー、検証者からなる一連のパイプラインを立ち上げます。
Summary
ICLR2026 に採択された新しい研究「Learning to Orchestrate Agents in Natural Language with the Conductor」をご紹介します
Paper: https://arxiv.org/abs/2512.04388
OpenReview: https://openreview.net/forum?id=U23A2BUKYt
もし AI に問題を直接解決させるのではなく、多様な他の AI チームにタスクを委任するマネージャーとして行動させるように訓練したらどうなるでしょうか?
複雑なタスクを解決する際、人間は単独で働くことはめったになく、チームを結成し、委任を行い、コミュニケーションを取ります。しかし、現在のマルチエージェント AI システムは、依然として硬直した人間設計のワークフローや、単一のモデルを選択するだけの単純なルーターに大きく依存しています。私たちは、自ら動的にチームを構築できる AI を目指しました。
私たちは、先端的なモデル群(GPT-5、Gemini、Claude、および ICLR2026 開催直前までに利用可能だったオープンソースモデルを含む)を調整するために、強化学習(Reinforcement Learning)を用いて 7B の Conductor モデルを訓練しました。
コードを実行するのではなく、Conductor は自然言語で協調的なワークフローを出力します。特定の質問に対して、Conductor は以下を指定します:
どのエージェントを呼び出すか
それらに与える具体的なサブタスク(専門家プロンプトエンジニアとして機能)
コンテキストウィンドウ内で参照可能な過去のメッセージ
純粋なエンドツーエンドの報酬最大化を通じて、驚くべき行動が現れました。Conductor はタスクの難易度に応じて適応することを学びました:単純な事実確認クエスチョンには 1 ショットで対応しますが、困難なコーディング問題に対しては自律的に複雑なプランナー・エグゼキューター・ベリファイアパイプラインを構築します。
結果は非常に有望です:7B の Conductor はプール内の個々のワーカーモデルの性能を上回り、公開時点において LiveCodeBench(83.9%)および GPQA-Diamond(87.5%)で新たな記録を樹立しました。また、Mixture-of-Agents などの高コストなマルチエージェントベースラインと比較して、その数分の之一的なコストで大幅に上回る性能を発揮します。
私たちが特に気に入っている機能の一つ:再帰的なテストタイムスケーリング!Conductor が自分自身をワーカーとして選択できるようにすることで、自身のチームの過去の出力を読み込み、失敗したかどうかを認識し、その場で修正ワークフローを構築します。これにより、推論中の計算リソースのスケーリングにおける新たな軸が開かれました。
本研究は、言語モデルがエリート級のメタプロンプトエンジニアとなり、集団知能を動的に活用できることを証明するものです。
数日前に発表した TRINITY 研究と並行し、この基盤的研究が私たちの新しいマルチエージェントシステム「Sakana Fugu」を支えています!🐡
原文を表示

TL;DR
For the past few years, humans have been doing “prompt engineering” to coax the best performance out of different LLMs. In this work, we explored what happens if we train an AI to do that job instead.
In this work, by training a Conductor model with RL, we found that it naturally learns to write highly effective, custom instructions for a whole pool of other models. It essentially learns to ‘manage’ them in natural language.
What surprised us most was how it dynamically adapts. For simple factual questions, it just queries one model. But for hard coding problems, it autonomously spins up a whole pipeline of planners, coders, and verifiers.
Summary
Introducing our new work: “Learning to Orchestrate Agents in Natural Language with the Conductor” accepted at ICLR2026
Paper: https://arxiv.org/abs/2512.04388
OpenReview: https://openreview.net/forum?id=U23A2BUKYt
What if we trained an AI not to solve problems directly, but to act as a manager that delegates tasks to a diverse team of other AIs?
To solve complex tasks, humans rarely work alone; we form teams, delegate, and communicate. Yet, multi-agent AI systems currently rely heavily on rigid, human-designed workflows or simple routers that just pick a single model. We wanted an AI that could dynamically build its own team.
We trained a 7B Conductor model using Reinforcement Learning to orchestrate a pool of frontier models (including GPT-5, Gemini, Claude, and open-source models available during the period leading up to ICLR2026).
Instead of executing code, the Conductor outputs a collaborative workflow in natural language. For any given question, the Conductor specifies:
Which agent to call
What specific subtask to give them (acting as an expert prompt engineer)
What previous messages they can see in their context window
Through pure end-to-end reward maximization, amazing behaviors emerged. The Conductor learned to adapt to task difficulty: it 1-shots simple factual questions, but autonomously spins up complex planner-executor-verifier pipelines for hard coding problems.
The results are very promising: The 7B Conductor surpasses the performance of every individual worker model in its pool, setting new records on LiveCodeBench (83.9%) and GPQA-Diamond (87.5%) at the time of publication. It also significantly outperforms expensive multi-agent baselines like Mixture-of-Agents at a fraction of the cost.
One of our favorite features: Recursive Test-Time Scaling! By allowing the Conductor to select itself as a worker, it reads its own team’s prior output, realizes if it failed, and spins up a corrective workflow on the fly. This opens a new axis for scaling compute during inference.
This research proves that language models can become elite meta-prompt engineers, dynamically harnessing collective intelligence.
Alongside our TRINITY research which we announced a few days earlier, this foundational research powers our new multi-agent system: Sakana Fugu! 🐡
関連記事
今日のまとめ
AIデイリーブリーフで今日の重要ニュースをまとめ読み