AIAny
Icon for item

APPO: Agentic Procedural Policy Optimization

Shifts branching and credit assignment in agentic RL from coarse units to fine-grained decision points in generated sequences. Uses a Branching Score combining token uncertainty and policy-induced likelihood gains plus procedure-level advantage scaling; improves performance across 13 benchmarks while keeping efficient tool calls.

Introduction

Most agentic RL methods assign credit over coarse units such as tool-call boundaries or fixed workflows, which hides which intermediate decisions actually drive downstream success. APPO's central insight is that influential decision points are widely distributed across generated sequences and that token entropy alone poorly predicts long-term impact — so branching and credit must move to finer procedural units.

Key Findings
  • Branching Score: combines token uncertainty with the policy-induced likelihood gain of subsequent continuations, so branching focuses on tokens that carry downstream value rather than merely high entropy. This reduces spurious exploration at noisy positions.
  • Procedure-level advantage scaling: rescales advantages across branched rollouts to distribute credit more faithfully across complete procedures, improving learning signal quality for multi-step behaviors.
  • Empirical gains: evaluated on 13 tasks spanning information seeking, knowledge-intensive reasoning, and computational problem solving; APPO yields consistent improvements (~+4 points over strong baselines) while preserving efficient tool usage and interpretable behavior.
Who It's For and Tradeoffs

Great fit if you train or research multi-turn LLM agents where delayed rewards and long decision chains make trajectory-level credit noisy — e.g., tool-using assistants, information retrieval agents, or program-synthesis workflows. Look elsewhere if you need an off-the-shelf drop-in for single-turn or token-level alignment problems: APPO targets procedural credit in interactive, multi-step settings and requires an agentic RL training pipeline and tuning (branching selection, advantage scaling). It emphasizes targeted exploration and interpretability but increases algorithmic complexity compared to simple trajectory-level baselines.

Where It Fits

APPO sits alongside other step- and graph-based credit-assignment approaches but differs by (1) selecting branching points at the token/procedure level using a value-aware Branching Score rather than fixed step boundaries, and (2) explicitly scaling advantages at the procedure level to encourage exploration of high-value continuations. This makes it a middle ground between token-centric RL and coarse trajectory attribution for agentic LLM training.

Information

  • Websitearxiv.org
  • AuthorsXucong Wang, Ziyu Ma, Yong Wang, Yuxiang Ji, Shidong Yang, Guanhua Chen, Pengkun Wang, Xiangxiang Chu
  • Published date2026/06/10

More Items

Real-time streaming multimodal foundation model that uses a codec-native tokenizer (Mage-ViT) to encode motion- and residual-rich regions from video I/P frames, reducing visual token usage by over 75% and enabling up to ~3.5× wall-clock inference speedup after training on ~560M images and 100M video frames.

Measures how agent memory systems miss implicitly associated facts by introducing InMind, a 125-task benchmark with paired controls that separate stored-vs-retrieval vs knowledge gaps. Quantifies a large retrieval-interface blind spot and points to routing as the core open problem.

Turns document relevance into an execution prior for agentic corpus interaction: orders documents for sequential ripgrep traversal, seeds promising entry points with query-relevant paragraphs, and reranks grep matches to surface informative excerpts. Improves the accuracy–efficiency frontier on browse QA and reasoning-intensive retrieval.