AI 智能体该何时停手?
我们总想让 AI 多干活,但这篇论文反着来:研究 AI 智能体什么时候该主动放弃。研究者发现,在购物、终端操作等任务中,很多智能体要么该停时不停,要么拖很久才停——尤其是那些看起来可行、实际却无解的任务。他们测试了 13 种模型和 2 种框架,发现更大的模型有时反而更不会及时收手。最后他们提出一种方法,把完整交互轨迹提炼成停止规则,让 Llama-3.3-70B 的及时放弃率从 26.7% 提升到 57.4%。这不是你明天能用上的技巧,但它点出了一个关键趋势:AI 的可靠性不仅在于能做什么,更在于知道什么时候不该做。
📄 原文摘要(英文)
LLM agents are expected to act over multiple turns, using search, browsing interfaces, and terminal tools to complete user goals. Yet not every goal is well specified or achievable in the available environment. In such cases, a reliable agent should recognize that further interaction is unlikely to help and abstain from additional tool calls. We define Agentic Abstention, the problem of deciding when an agent should stop acting under uncertainty. Unlike standard LLM abstention, which is usually evaluated as a single-turn answer-or-abstain decision, agentic abstention is a sequential decision problem: an agent can answer, abstain, or gather more information at each turn, and the need to abstain may only become clear after interacting with the environment. We study this problem across web shopping, terminal environments, and question answering, evaluating 13 LLM-as-agent systems and 2 agent scaffolds on more than 28,000 tasks. Our results show that the main challenge is not only whether agents can abstain, but also when they abstain. Some agents never abstain when they should, while others do so only after many unnecessary interactions. This gap is especially large on tasks where the instruction appears feasible until the environment reveals otherwise (e.g., no valid result matches the instruction). We further find that model scale, reasoning, and agent scaffolding affect abstention in different ways, where larger or more capable models sometimes perform worse at timely abstention. Finally, we introduce CONVOLVE, a context engineering method for improving agentic abstention that distills full interaction trajectories into reusable stopping rules. On WebShop, CONVOLVE substantially improves timely abstention without updating model parameters, raising Llama-3.3-70B's timely recall rate from 26.7 to 57.4. Our dataset and code are available at https://lhannnn.github.io/agentic-abstention