Search papers, labs, and topics across Lattice.
The paper introduces Agentic Knowledge Boundary Enhancement (AKBE), an on-policy method that addresses the problem of redundant tool calls and blurred intrinsic knowledge boundaries in agentic RL training of LLMs. AKBE dynamically probes the model's knowledge boundary using dual-path rollouts (with and without tools) to determine when tools are truly needed. By generating targeted supervisory signals based on correctness comparisons, AKBE guides efficient tool use, improving accuracy by +1.85% and reducing tool calls by 18% across seven QA benchmarks.
LLM agents can learn to use tools more efficiently and accurately by explicitly learning when *not* to use them, leading to a 25% increase in tool productivity.
Agentic reinforcement learning (RL) has proven effective for training LLM-based agents with external tool-use capabilities. However, we identify that agentic RL training induces increasing redundant tool calls and blurs the model's intrinsic knowledge boundary, where the model fails to distinguish when tools are needed versus when parametric knowledge suffices. Existing solutions based on reward shaping create coarse-grained optimization targets that tend to incentivize indiscriminate tool-call suppression, leading to reward hacking. In this paper, we propose AKBE (Agentic Knowledge Boundary Enhancement), an on-policy method that dynamically probes the model's intrinsic knowledge boundary through dual-path (with-tool and no-tool) rollouts during training. We define the knowledge boundary as the per-instance determination of whether tools are required and the minimum tool calls necessary. By comparing correctness across paths, AKBE categorizes trajectories and constructs targeted supervisory signals that guide efficient tool-use patterns for each question. These signals are integrated seamlessly into the agentic RL training loop. Experiments on seven QA benchmarks demonstrate that AKBE improves task accuracy by +1.85 on average and reduces tool calls by 18% over standard agentic RL, yielding 25% higher tool productivity without any accuracy-efficiency trade-off. Further analysis suggests its plug-and-play compatibility across different RL algorithms and the mechanism of each signal category. Our code is available at https://github.com/CuSO4-Chen/AKBE.