🤖 AI Summary
This work addresses the challenge faced by long-horizon search agents in distinguishing effective from redundant actions during multi-step reasoning, a limitation exacerbated by the lack of fine-grained credit assignment in existing approaches. To overcome this, the authors propose the Answer Backtracking-based Credit Assignment (ABC) framework, which introduces an answer backtracking mechanism: it recovers intermediate reasoning clues backward from the final answer via Answer-Backtracked Clue Recovery and assigns step-level scores through Clue-Anchored Step Scoring, thereby transforming sparse trajectory-level supervision into dense step-wise rewards. The resulting ABSeeker agent, trained with ABC-SFT loss reweighting and the ABC-GRPO reinforcement learning algorithm, achieves success rates of 55.3% and 52.9% on BrowseComp and BrowseComp-ZH, respectively—significantly outperforming same-sized models and matching the performance of models approximately 30B in scale.
📝 Abstract
Long-horizon search agents must make multiple sequential actions (steps) to search, retrieve, verify, and integrate evidence to reach a final answer. However, existing methods for training these agents typically treat all steps within a trajectory uniformly during both supervised fine-tuning (SFT) and reinforcement learning (RL), failing to distinguish useful actions from erroneous or redundant ones. In this paper, we propose Answer-Backtracked Credit Assignment (ABC), a fine-grained credit assignment framework for training long-horizon search agents by converting sparse trajectory-level outcomes into dense step-level supervision that rewards useful actions (even in failed trajectories) while suppressing erroneous or redundant actions. Specifically, given a potentially obscure query and its corresponding ground-truth answer, ABC first performs Answer-Backtracked Clue Recovery, which traces back from the answer to recover intermediate clues required to solve the question. It then applies Clue-Anchored Step Scoring to evaluate each search step against these clues, converting sparse binary outcome supervision into dense step-level rewards. Based on these rewards, we develop ABC-SFT, which reweights the loss of each turn, and ABC-GRPO, which uses the step-level scores as rewards in GRPO. Building on this framework, we train ABSeeker based on Qwen3.5-4B with only 8.5k examples. ABSeeker achieves 37.3% on BrowseComp and 39.1% on BrowseComp-ZH. With context management, the scores further improve to 55.3% and 52.9%, respectively, significantly outperforming same-scale (4B) agents and even matching the performance of larger ones (approximately 30B). These results demonstrate the effectiveness of answer-backtracked step-level credit assignment for training long-horizon search agents.