SYNTHESIS NOTE
TopicsReinforcement Learningthis note

Can reinforcement learning scale beyond single-turn language tasks?

Most RL for LLMs targets simple single-turn problems. This research asks whether RL can handle multi-turn interactive environments with sparse rewards and rich environmental feedback, like real software engineering tasks.

Synthesis note · 2026-02-22 · sourced from Reinforcement Learning
How should we spend compute at inference time?

Most RL applications for LLMs have been limited to single-turn tasks — math reasoning, single-shot code generation — which are degenerate MDPs with no intermediate environmental feedback. Software engineering is categorically different: agents must manage stateful, multi-turn interactions across dozens of steps with context windows spanning hundreds of thousands of tokens, interpreting rich feedback (compiler traces, test logs) at each step.

Using a modified DAPO algorithm, training Qwen2.5-72B-Instruct doubles SWE-bench Verified success from a 20% rejection-finetuned baseline to 39%, matching or surpassing larger models like DeepSeek-V3 and Qwen3-235B. The key challenges addressed include long-horizon credit assignment with sparse delayed rewards, complex informative feedback interpretation, and expensive noisy evaluation.

This matters because it validates that RL's benefits extend beyond the "token-level MDP" framing where most current work operates. Since Can full episode rewards per step enable better credit assignment?, RL for SWE confirms that multi-step credit assignment is not just theoretically sound but practically achievable at scale. And since Does limiting reasoning per turn improve multi-turn search quality?, the SWE result suggests that RL training can learn the step-level discipline that inference-time limiting imposes.

The interaction structure of SWE — actions producing observable transitions and verifiable outcomes — may be what makes RL feasible here, whereas domains without such structure may remain harder to train.

Inquiring lines that read this note 20

This note is a source for these research framings, grouped by the broader line of inquiry each explores. Scan the bold lines of inquiry; follow any specific question forward.

How can LLM user simulators model realistic goal-driven conversation? What constrains reinforcement learning's ability to expand model reasoning? What properties determine whether reward signals teach genuine reasoning? What pretraining choices and baseline capability constrain reinforcement learning gains? Why do multi-turn conversations degrade AI intent and coherence? Can single-axis benchmarks accurately predict agent deployment success? Why do reward structures fail to shape long-term agent learning? Does reinforcement learning teach reasoning or just when to reason? Does decoupling planning from execution improve multi-step reasoning accuracy? What critical LLM failures do standard benchmarks hide? What determines success in training models on multiple tasks?

Related concepts in this collection 5

This note in its neighbourhood — explore the map, then jump to a related concept in the list below.

Concept map
15 direct connections · 129 in 2-hop network ·medium cluster Open in graph ↗

Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph

your link semantically near linked from elsewhere

Related papers in this collection 8

Papers most semantically related to this note, ranked by cosine similarity in the embedding space.

Original note title

rl successfully scales to long-horizon multi-turn software engineering tasks doubling baseline performance