AI GlossaryDTechnical words in the news
depth-n+ RLM
A recursive execution approach that treats context like a program, letting an agent call up another agent in layers, as many times as needed
In plain words
A depth-n+ RLM is an execution setup where, if an agent gets stuck, it can call up another agent — and that agent, if it too gets stuck, can call up yet another one. Delegation doesn't stop at one level; it can chain through several layers.
Think of it like a workplace. A team lead hands off a task to a team member, that member delegates part of it to a junior, and the junior calls in someone else if needed — the delegation chain doesn't stop at a fixed step. The "n+" in the name means this chain length isn't fixed in advance; it can grow to however many layers (n or more) are actually needed.
Normally, a language model piles up the whole conversation history into one long block of text and searches within it for an answer. The depth-n+ RLM approach instead treats that conversation history like a variable a program can manipulate: it pulls out only the piece of the long record it actually needs and hands the rest of the work off to a sub-agent. The reason for building things this way is that it reduces the chance that small failures during execution get wrongly recorded as a failure of the model itself.
How it shows up in the news
The article describes Prime Intellect's agent harness as following "the recursive language model (RLM) abstraction, treating context as a program and running test-time compute." The easy point to miss here is that this isn't about improving the model's own capability — it's about how the execution shell (harness) wrapped around the model is designed. Even with the same underlying model, benchmark scores can swing significantly depending on whether this structure is in place.
See also
Stories using this term
- Prime Intellect publishes technical report on Prime Agent, ARC-AGI-3 score jumps from 30% to 95.5%Models · 2026.08.27
- Liquid AI's 300M Draft Model Speeds Up Decoding by Up to 3.18xModels · 2026.08.21
- French-specialized small AI 'Luth-2' outperforms models three times its sizeModels · 2026.08.11
- Apple runs head-to-head comparison of diffusion and autoregressive model performanceModels · 2026.08.11
- Liquid AI unveils screen-reading model that runs in 3GBModels · 2026.08.13
- Meta releases 30B-parameter open model for local agentsModels · 2026.08.10