Teaching a Model to Hire Copies of Itself: Recursive Agent Optimization episode artwork

EPISODE · May 9, 2026 · 22 MIN

Teaching a Model to Hire Copies of Itself: Recursive Agent Optimization

from AI Papers: A Deep Dive

Teaching a Model to Hire Copies of Itself: Recursive Agent Optimization Source: https://arxiv.org/abs/2605.06639 Paper was published on May 07, 2026 This episode was AI-generated on May 8, 2026. The script was written by an AI language model and the host voices were synthesized by Eleven Labs. The producer is not affiliated with Anthropic or Eleven Labs. A 30-billion-parameter open model keeps pace with Claude Sonnet 4 and OpenAI's o3 on a long-context benchmark — not by being bigger, but by learning to spawn copies of itself and delegate. A new paper argues recursion shouldn't be a scaffold wrapped around frozen models; it should be a primitive the weights are actually trained to use, and the results suggest a different axis for scaling agents than bigger models or longer context. Key Takeaways: - Why RAO's central move — putting recursive delegation inside the RL loop instead of around a frozen model — is the whole intellectual contribution - How rewarding average (not summed) child success teaches the model when delegation is worth it, not just how to do it - The phase-transition result on hard crafting tasks: 0% to 88% with the same 4B base model, generalizing past its training depth - How a 30B recursive agent matches Sonnet 4 and o3 on Oolong-Real despite a context window six times smaller than the inputs - Why the same trained agent fans out 85% in parallel on independent sub-tasks but serializes to 1.5% on chained ones - The honest costs: RAO is up to 18x slower in wall clock on some tasks, models are trained per task family, and the strongest results come from benchmarks whose structure suits the method 00:00 - The setup: an agent that can spawn itself: How RAO adds one async Python function — spawn a child with a fresh context — and lets recursive trees emerge from ordinary control flow. 02:17 - The Kyoto travel example: A walk through Figure 1 of the paper, where the model dynamically grows a three-level delegation tree to plan a trip. 04:35 - Scaffold versus trained behavior: Why existing recursive systems like Claude Code and Codex wrap frozen models, and what changes when the weights themselves learn to delegate. 06:53 - Local rewards and the 'average child success' trick: How RAO scores each node with its own task success plus the mean (not sum) of its children's success, and why that distinction kills bad incentives. 09:11 - Baselines and variance reduction: The unusual choice to apply a single root-task leave-one-out baseline across every node in the tree, and the tradeoffs the authors flag. 11:28 - TextCraft-Synth: phase transition on hard tasks: On the authors' own crafting benchmark, the 4B recursive agent jumps from 0% to 88% on hard tasks and learns to grow trees deeper than it was trained for. 13:46 - Oolong-Real: matching frontier models with a smaller window: A 30B recursive agent reaches roughly the same scores as Sonnet 4 and o3 on long D&D transcripts, including a moment where it briefly learns the wrong strategy and recovers. 16:04 - Deep Dive: when recursion can't parallelize: On a multi-hop research benchmark with sequentially dependent sub-tasks, the recursive agent gets more answers right but runs about 18x slower in wall clock. 18:22 - The steelman critique: Where the benchmarks favor RAO's structure, how LLM-judge reward signals could confound the results, and what the compute-equivalent comparison would look like. 20:39 - What this says about scaling: Why RAO is a vote for training models to use inference-time scaffolds, and how it reframes test-time compute scaling as a tree of agents rather than one long thought. Recommended Reading: - ADaPT: As-Needed Decomposition and Planning with Language Models: An inference-time recursive decomposition system that the RAO paper positions itself against — useful for seeing what 'recursion as scaffold around a frozen model' looks like before training enters the picture. (https://arxiv.org/abs/2311.05772) - Toolformer: Language Models Can Teach Themselves to Use Tools: The canonical example of the 'train models to use scaffolds, don't just prompt them' principle the episode highlights as RAO's intellectual lineage. (https://arxiv.org/abs/2302.04761) - Chain-of-Thought Prompting Elicits Reasoning in Large Language Models: The original prompting trick that later became trained reasoning behavior — the precedent Finn cites for why recursive delegation is plausibly the next scaffold-to-weights transition. (https://arxiv.org/abs/2201.11903) - Tree of Thoughts: Deliberate Problem Solving with Large Language Models: An earlier vision of branching, tree-structured reasoning at inference time, useful as a contrast to RAO's training-time approach to tree-structured agent execution. (https://arxiv.org/abs/2305.10601)

Teaching a Model to Hire Copies of Itself: Recursive Agent Optimization Source: https://arxiv.org/abs/2605.06639 Paper was published on May 07, 2026 This episode was AI-generated on May 8, 2026. The script was written by an AI language model and the host voices were synthesized by Eleven Labs. The producer is not affiliated with Anthropic or Eleven Labs. A 30-billion-parameter open model keeps pace with Claude Sonnet 4 and OpenAI's o3 on a long-context benchmark — not by being bigger, but by learning to spawn copies of itself and delegate. A new paper argues recursion shouldn't be a scaffold wrapped around frozen models; it should be a primitive the weights are actually trained to use, and the results suggest a different axis for scaling agents than bigger models or longer context. Key Takeaways: - Why RAO's central move — putting recursive delegation inside the RL loop instead of around a frozen model — is the whole intellectual contribution - How rewarding average (not summed) child success teaches the model when delegation is worth it, not just how to do it - The phase-transition result on hard crafting tasks: 0% to 88% with the same 4B base model, generalizing past its training depth - How a 30B recursive agent matches Sonnet 4 and o3 on Oolong-Real despite a context window six times smaller than the inputs - Why the same trained agent fans out 85% in parallel on independent sub-tasks but serializes to 1.5% on chained ones - The honest costs: RAO is up to 18x slower in wall clock on some tasks, models are trained per task family, and the strongest results come from benchmarks whose structure suits the method 00:00 - The setup: an agent that can spawn itself: How RAO adds one async Python function — spawn a child with a fresh context — and lets recursive trees emerge from ordinary control flow. 02:17 - The Kyoto travel example: A walk through Figure 1 of the paper, where the model dynamically grows a three-level delegation tree to plan a trip. 04:35 - Scaffold versus trained behavior: Why existing recursive systems like Claude Code and Codex wrap frozen models, and what changes when the weights themselves learn to delegate. 06:53 - Local rewards and the 'average child success' trick: How RAO scores each node with its own task success plus the mean (not sum) of its children's success, and why that distinction kills bad incentives. 09:11 - Baselines and variance reduction: The unusual choice to apply a single root-task leave-one-out baseline across every node in the tree, and the tradeoffs the authors flag. 11:28 - TextCraft-Synth: phase transition on hard tasks: On the authors' own crafting benchmark, the 4B recursive agent jumps from 0% to 88% on hard tasks and learns to grow trees deeper than it was trained for. 13:46 - Oolong-Real: matching frontier models with a smaller window: A 30B recursive agent reaches roughly the same scores as Sonnet 4 and o3 on long D&D transcripts, including a moment where it briefly learns the wrong strategy and recovers. 16:04 - Deep Dive: when recursion can't parallelize: On a multi-hop research benchmark with sequentially dependent sub-tasks, the recursive agent gets more answers right but runs about 18x slower in wall clock. 18:22 - The steelman critique: Where the benchmarks favor RAO's structure, how LLM-judge reward signals could confound the results, and what the compute-equivalent comparison would look like. 20:39 - What this says about scaling: Why RAO is a vote for training models to use inference-time scaffolds, and how it reframes test-time compute scaling as a tree of agents rather than one long thought.…

NOW PLAYING

Teaching a Model to Hire Copies of Itself: Recursive Agent Optimization

0:00 22:59

No transcript for this episode yet

We transcribe on demand. Request one and we'll notify you when it's ready — usually under 10 minutes.

MG Show MG Show The MG Show, hosted by Jeffrey Pedersen and Shannon Townsend, is a leading alternative media platform dedicated to uncovering the truth behind today’s most pressing political issues. Launched in 2019, the show has grown exponentially, offering unfiltered insights, comprehensive research, and real-time analysis. With a commitment to independent journalism and factual integrity, the MG Show empowers its audience with knowledge and encourages active participation in the political discourse. Ask A Spaceman Archives - 365 Days of Astronomy Ask A Spaceman Archives - 365 Days of Astronomy Podcasting Astronomy Every Day of the Year French Your Way Jessica: Native French teacher founder of French Your Way Boost your French listening skills and test your comprehension with this one of a kind series of podcasts. Get the chance to listen to a real conversation between native speakers talking at normal speed AND customise your learning experience through carefully designed sets of questions (2 levels of difficulty) available for download at www.frenchvoicespodcast.com. All interviews also come with the transcript. French teacher Jessica interviews native speakers of French from around the world who share a bit of their life and passion. Where else would you meet in one same place a French yoga teacher based in Melbourne, a soap manufacturer from Provence, or a couple cycling around the world? The Small Business Startup School – Business Notes | Financial Literacy | Retail Psychology – For Professionals & Entrepreneurs The Small Business Startup School Inc. Starting or buying a small business? While personal circumstances may vary, business patterns remain timeless. On The Small Business Startup School, we explore strategies, insights, and practical solutions to help entrepreneurs confidently navigate their journey.Hosted by Ola Williams—a retail entrepreneur, fintech founder, and financial coach with over two decades of experience—this podcast marries financial awareness and retail psychology with optimism to deliver actionable takeaways.Join us to learn, grow, and connect as we uncover the keys to business success.Let’s continue to learn together and be encouraged to keep on connecting!

Frequently Asked Questions

How long is this episode of AI Papers: A Deep Dive?

This episode is 22 minutes long.

When was this AI Papers: A Deep Dive episode published?

This episode was published on May 9, 2026.

What is this episode about?

Teaching a Model to Hire Copies of Itself: Recursive Agent Optimization Source: https://arxiv.org/abs/2605.06639 Paper was published on May 07, 2026 This episode was AI-generated on May 8, 2026. The script was written by an AI language model and...

Is there a transcript available for this episode?

Yes, a full transcript is available for this episode. You can read the complete transcript on the episode page.

Can I download this AI Papers: A Deep Dive episode?

Yes, you can download this episode by clicking the download button on the episode player, or subscribe to the podcast in your preferred podcast app for automatic downloads.
URL copied to clipboard!