Drip · Latest Research · 12 min read

Three Agent Papers, April 2026

Three papers landed in a single month that materially change how production teams should think about agents. Hyperagents (Meta FAIR) makes latency constant under fan-out. Recursive Language Models (MIT) formalizes what teams were already doing with retry loops. GMPO (Microsoft / ICLR 2026) swaps one operator in RLHF and gets 13% better on agent reasoning.

The bottom line. Three architectural moves worth tracking. Hyperagents — a planner agent decomposes a goal, ~100 sub-agents execute in parallel, an aggregator merges. Latency stays roughly constant as work scales. Recursive Language Models — the model calls itself on its own output until a convergence criterion hits; replaces hand-written retry/refine loops with a clean recursive primitive. GMPO — one operator swap in GRPO (arithmetic → geometric mean over token rewards) crushes outliers and ships 13% improvement on agent reasoning benchmarks. The labs below let you feel the dynamics of fan-out latency and arithmetic-vs-geometric reward aggregation.

§ 00 · THREE PAPERS, ONE MONTHWhy these are worth reading together

April 2026 was, for production-agent practitioners, the kind of month that makes the rest of the year feel slow. Three papers landed from three different labs, each addressing a different layer of the agent stack — orchestration, the model loop itself, and the training objective behind it. The three are unrelated technically but tightly coupled in practice; you could stack all three on a single agent and get measurable improvements at every layer.

Production teams won’t adopt all three this quarter. But the direction is worth committing to memory. The summaries below are short on purpose — enough to know what each paper does, when it would help you, and what the interactive lab beneath it makes concrete.

§ 01 · HYPERAGENTS (Meta FAIR)One agent runs a hundred sub-agents in parallel

The architecture: a planner agent decomposes the top-level goal into independent subtasks. Up to a hundred sub-agents execute those subtasks in parallel, each in its own context window. An aggregator agent collects the sub-agent outputs and produces the final result. The novelty isn’t any individual piece — fan-out / fan-in is older than the LLM era — it’s the observation that latency stays roughly constant as work scales, because the bottleneck is the slowest sub-agent plus the aggregator, not the sum of the sub-agents.

Concretely, the four moves in the paper:

  1. The planner decomposes the goal into independent subtasks, in JSON.
  2. Fan out — each subtask gets its own ephemeral context.
  3. Merge the fleet — an aggregator combines outputs, resolves conflicts, produces the final answer.
  4. Degrade gracefully — some sub-agents will fail; the architecture tolerates partial completion rather than retrying the whole fleet.

Where this matters most: tasks with clear decomposition boundaries (analyze 50 docs, classify 1000 tickets, summarize 80 transcripts) and where end-to-end latency is the bottleneck. Where it matters least: tasks with strong sequential dependencies where each step needs the previous step’s output.

Lab · hyperagent fan-out8 parallel sub-agents vs serial decomposition
Fan-out (sub-agents)8
Planner → sub-agents → aggregator
PLAN
AGG
Serial (one agent loops)
2.56s
Hyperagent (parallel)
0.44s

Hyperagent latency stays roughly constant as fan-out grows — the bottleneck is the slowest sub-agent plus the aggregator, not the sum. Caveat: some sub-agents will fail; the architecture has to degrade gracefully, not retry the whole fleet.

§ 02 · RECURSIVE LANGUAGE MODELS (MIT)The model calls itself on its own output

Recursive Language Models (RLMs) formalize a pattern production teams were already using under various names — “reflect and revise”, “self-critique”, “refine loop.” The model produces a draft. It then critiques the draft against the original goal. It revises. The loop runs until a convergence criterion fires.

The recursive framing replaces hand-written retry-and-refine scaffolding with a single primitive. The model is the loop; each recursive call is the model reading its previous output and emitting either a better version or a signal that the current version is good enough.

Four operational details:

The architectural payoff: recursion replaces hardcoded retry logic. The model becomes its own quality gate, instead of you writing if-then code to decide when to retry. Combine with the verification cascade from the Verifying AI Code drip and the recursion becomes self-validating — the model only stops recursing once its own critic is satisfied.

§ 03 · GMPO (Microsoft / ICLR 2026)Replace the mean. 13% better.

The cleanest one-line summary of any RLHF paper this year. GRPO (Shao et al., 2024) maximizes the arithmetic mean of token-level rewards across a generated sequence. Outlier tokens with anomalously high reward produce extreme importance-sampling ratios, and the policy gradient update either collapses or oscillates. GMPO swaps in the geometric mean. The math crushes outliers naturally; the policy update stays stable.

The four moves:

  1. Geometric mean, not arithmetic. One operator swap in the loss function.
  2. Stable updates. Outliers no longer dominate the gradient.
  3. The numbers — 13% improvement on agent reasoning benchmarks across the suite Microsoft published.
  4. Plug-and-play swap. Drop-in replacement in existing RLHF stacks; no retraining of the base model required.

For production teams, GMPO is downstream of you — it affects the next generation of models, not your code. But knowing that the next round of agent-trained models will be measurably better at reasoning tasks for one cheap operator change is the kind of context that should affect your roadmap timing.

Lab · GRPO vs GMPOOne outlier token, two ways to aggregate the reward
Outlier token reward (×10)5.0
token rewards: [1.1, 0.9, 1.1, 0.9, 1.0, 5.0]
GRPO — arithmetic mean
1.67
GMPO — geometric mean
1.30

Drag the outlier reward up. The arithmetic mean blows up; the geometric mean barely moves. In GRPO, the outlier produces extreme importance-sampling ratios and the policy update collapses. GMPO replaces the operator and the math crushes outliers naturally.

CHECKYou're choosing between Hyperagents and Recursive Language Models for a task. The task: analyze 80 customer support transcripts in parallel and produce a categorization report. Which architecture is the better fit, and why?

§ 04 · WHAT THEY SHAREThree different shapes, one consistent move

Read the three together and a pattern emerges. Each paper identifies a place where production teams were already improvising — fan-out for parallel work, retry loops for refinement, ad-hoc reward shaping for stable training — and replaces it with a clean primitive. Hyperagents formalizes decomposition. RLMs formalize iteration. GMPO formalizes outlier handling. The improvement in each case isn’t the invention of a new technique; it’s the crystallization of a hack into something with a name, a spec, and an interface.

That’s the consistent move: the research is catching up to what production teams already do. The papers worth tracking in the next few months are the ones that name the next layer of hacks practitioners are already running.

§ · FURTHER READINGReferences & deeper sources

  1. Meta FAIR (2026). Hyperagents — One Agent Runs a Hundred Sub-Agents in Parallel · arXiv, April 2026
  2. MIT (2026). Recursive Language Models · arXiv, April 2026
  3. Microsoft Research (2026). GMPO — Geometric-Mean Policy Optimization for Agent Reasoning · ICLR 2026
  4. Shao et al. (2024). DeepSeekMath — introducing GRPO (Group Relative Policy Optimization) · arXiv:2402.03300

Original figures live in the linked sources — open the papers for the canonical visuals in their full context.