來源:arXiv · cs.CL查看原文 ↗
原文著作權歸來源方所有,本站僅作收錄、翻譯或格式整理。
事實脈絡
arXiv:2608.07531v1 Announce Type: new Abstract: Search-augmented language agents should retrieve external information only when necessary and ground their answers in retrieved evidence. Existing external rewards provide
解讀與影響
这篇来自 arXiv 的新论文提出了 Search-G1 框架,旨在解决一个核心矛盾:让大语言模型驱动的搜索智能体既能克制地仅在必要时检索外部信息,又能确保其回答严格基于检索到的证据,而非凭空生成。研究者通过引入一种基于表征的内在奖励机制,来引导智能体自主习得这种平衡能力。
当前,许多搜索增强型语言智能体依赖外部奖励信号(如最终答案的正确性)进行训练。这种稀疏的反馈往往难以教会智能体何时应该搜索、何时应该停止,以及如何将检索结果忠实地融入回答。Search-G1 的创新之处在于,它设计了一种基于智能体内部状态表征的“内在奖励”。来源名 这种奖励不直接来自任务成败,而是由模型对当前信息状态、不确定性以及证据支撑度的内部评估计算得出。这类似于强化学习中的“好奇心”驱动机制,来源名 鼓励智能体去探索信息不足的状态,并在获得充分证据后停止搜索,从而更自然地平衡检索成本与回答质量。
论文的关键发现在于,这种内在奖励机制能够有效提升搜索智能体的“证据基础性”,即回答内容与检索证据之间的一致性。这意味着智能体不仅能给出正确答案,还能更可靠地引用来源、减少“幻觉”。从证据强度看,这是一项算法框架级的创新,原文未提供大规模用户评测数据,其结论主要基于研究者在实验环境下的性能对比。不过,该思路与近期学界对智能体“可信度”的评估方向一致,例如在音乐推荐等领域的评估中,也开始引入“解释基础性”等指标来衡量输出与事实的贴合度。来源名
Search-G1 的意义在于,它为构建更可靠、更高效的自主智能体提供了一条新路径。其局限性也同样明显:内在奖励的设计高度依赖对“信息充分性”的建模,这在开放域、多步推理任务中可能面临巨大挑战。此外,该研究目前主要停留在学术探讨层面,其方法在真实世界嘈杂信息流中的鲁棒性仍有待检验。它初步显示,让智能体通过“内省”来学习搜索策略是可行的,但距离完全自主、可信的搜索智能体,仍有相当长的路要走。
參考來源
來源原文
arXiv:2608.07531v1 Announce Type: new Abstract: Search-augmented language agents should retrieve external information only when necessary and ground their answers in retrieved evidence. Existing external rewards provide either sparse outcome supervision or richer feedback from process annotations and LLM judges. Outcome rewards scale readily but cannot distinguish grounded retrieval from redundant search, whereas richer signals require costly annotation or inference during training. Internal rewards based on policy-side signals such as entropy, likelihood, or information gain are graded and inexpensive to evaluate, yet mainly reflect model confidence rather than evidence grounding. We propose Search-G1, a representation-based intrinsic reward framework that measures the operational grounding of an agent's answers through two intervention-calibrated readouts. A prompt-state readout predicts closed-book sufficiency, whose complement defines policy-relative retrieval necessity; an answer-commit readout estimates evidence reliance from answer-stage sensitivity to evidence deletion. Together, they provide additional credit to correct searched trajectories when retrieval is estimated necessary and the answer is evidence-sensitive, favor correct direct answers when closed-book knowledge suffices, and penalize repeated search. After calibration, reward scoring requires neither process annotations nor LLM-as-judge inference during policy optimization. Because reinforcement learning changes policy representations, Search-G1 periodically refits both readouts on trajectories from the latest checkpoint, allowing the reward to co-evolve with the policy. Experiments across multiple search-based question-answering benchmarks and two model scales show that Search-G1 improves the grounding--search-cost trade-off, producing shorter response-side trajectories at competitive task accuracy. Code is available at https://github.com/Rosy0912/Search-G1.