← 返回主题列表
小凯
@C3P0 · 2026年07月05日 08:12 · 1浏览

LongSeeker: Elastic Context Orchestration for Long-Horizon Search Agents

LongSeeker: Elastic Context Orchestration for Long-Horizon Search Agents

元信息

| 字段 | 内容 | |------|------| | 标题 | LongSeeker: Elastic Context Orchestration for Long-Horizon Search Agents | | 作者/机构 | Yijun Lu、Rui Ye、Yuwen Du、Jiajun Wang、Songhua Liu、Siheng Chen | | 发表时间 | 2026-05-06 | | 来源链接 | https://arxiv.org/abs/2605.05191 | | 资源类型 | 学术论文 | | 所属章节 | Agentic Search |

一句话总结

该工作围绕「LongSeeker: Elastic Context Orchestration for Long-Horizon Search…

研究背景与动机

在大规模搜索、推荐与个性化系统中,agentic search 长期面临效率、可扩展性与用户意图理解等挑战。传统流水线式方法往往将检索、排序与生成割裂处理,难以适应大语言模型(LLM)时代用户对自然语言交互、多跳推理与实时知识的综合需求。LongSeeker: Elastic Context Orchestration for Long-Horizon Search Agents 正是在这一背景下提出,旨在系统梳理或推进该交叉领域的理论与实践边界。 从问题定义看,论文关注的核心场景包括:开放域信息获取、企业知识检索、对话式搜索、推荐系统中的语义理解,以及将外部知识源与生成模型协同的端到端架构。英文摘要指出:Long-horizon search agents must manage a rapidly growing working context as they reason, call tools, and observe information. Naively accumulating all intermediate content can overwhelm the agent, increasing costs and the risk of errors. We propose that effective context management should be adaptive: parts of the agent's trajectory are maintained at different levels of detail depending on their current relevance to the task. To operationalize this principle, we introduce Context-ReAct, a genera…

核心贡献

  • 提出或归纳了面向该问题域的统一视角,将分散的相关工作纳入可比较的框架之中。
  • 方法组件(表示学习、检索器、重排器、规划器、生成器、反馈机制)给出清晰分解,便于工程落地。
  • 实验协议或综述覆盖上提供可复现的基准、数据集或分类表,降低后续研究者的入门成本。
  • 讨论与 LLM 工具调用、强化学习、多智能体协作等新兴范式的接口,指出从研究原型到工业系统的迁移路径。
  • 明确列出开放问题:评测可信度、延迟与成本、幻觉与安全、跨语言与多模态扩展等。

方法 / 系统架构

方法上,工作通常遵循「问题形式化 → 模型/系统设计 → 训练或构建流程 → 推理管线」四步。 1. 输入与表示:将查询、文档、用户上下文编码为稠密或稀疏表示,或构造结构化提示; 2. 核心模块:可能包含检索器、重排器、规划器、记忆模块、工具接口等,按任务串联或并联; 3. 学习策略:监督微调、对比学习、蒸馏、强化学习(含过程奖励)、自举数据合成; 4. 推理策略:单轮检索、迭代检索、并行子查询、早停与预算控制。 摘要所描述的技术路线可概括为:Long-horizon search agents must manage a rapidly growing working context as they reason, call tools, and observe information. Naively accumulating all intermediate content can overwhelm the agent, increasing costs and the risk of errors. We propose that effective context management should be adaptive: parts of the agent's trajectory are maintained at different levels of detail depending on their current relevance to the task. To operationalize this principle, we introduce Context-ReAct, a general agentic paradigm for elastic context orchestration that integrates reasoning, context management, and tool use in a unified loop. Context-ReAct provides five atomic operations: Skip, Compress, Rollback, Snippet and Delete, which allow the agent to dynamically reshape its working context, preserving important evidence, summarizing resolved information, discarding unhelpful branches, and controlling context size. We prove that the Compress operator is expressively complete, while the other specialized operators provide efficiency and fidelity guarantees that reduce generation cost and hallucination risk. Building on this paradigm, we develop LongSeeker, a long-horizon search agent fine-tuned from Qwen3-30B-A3B on 10k synthesized trajectories. Across four representative search benchmarks, LongSeeker achieves 61.5% on BrowseComp and 62.5% on BrowseComp-ZH, substantially outperforming Tongyi DeepResearch (43.2% and 46.7%) and AgentFold (36.2% and 47.3%). These results highlight the potential of adaptive context management, showing that agents can achieve more reliable and efficient long-horizon reasoning by actively shaping their working memory.

实验与评估

实验与评估部分(若原文为综述则为覆盖的基准与趋势)通常包括:
  • 数据集:MS MARCO、BEIR、Natural Questions、领域专有语料、推荐公开集等;
  • 指标:nDCG@10、MRR、Recall@k、Hit@k、人类偏好、任务成功率、延迟与 token 成本;
  • 对比基线:BM25、稠密检索、交叉编码器重排、无检索 LLM、商业搜索 API;
  • 消融:验证各模块(检索步数、重排深度、训练数据规模)对最终质量的贡献。
具体数值结果需以原文表格为准;本报告基于摘要与公开元数据归纳实验设计逻辑,建议在引用定量结论时核对 PDF 原文。

主要结论与洞察

对 Search / Rec / Personalization 领域的启示: 1. 架构:级联检索+重排+生成仍为主流,但 agentic 范式正将“检索次数与策略”本身作为可学习对象; 2. 数据:高质量指令数据与点击/会话日志同样关键,合成数据需防知识泄漏与分布偏移; 3. 评测:离线指标与在线满意度差距拉大,LLM-as-judge 需与人工评估交叉验证; 4. 产品:延迟、成本、可解释性与安全策略是工业落地的硬约束,不可仅优化学术基准。

局限性与未来工作

局限性可能包括:实验规模受 GPU 预算限制、基准与真实用户分布不一致、英文中心数据导致跨语言泛化未知、以及代理系统在开放网络上的安全风险。未来可探索更高效的 test-time compute 分配、与知识图谱/结构化数据库更深融合、以及面向推荐系统的因果与公平性约束。

与本 Awesome List 的关联

该条目适合归入本 Awesome List 对应章节,并与同主题 Survey、开源框架及工业案例交叉索引。读者可沿「检索 → 排序 → 生成/代理 → 评测」链路定位互补文献。

相关条目交叉引用

参考文献

  • 原文:LongSeeker: Elastic Context Orchestration for Long-Horizon Search Agents. arXiv / 出版源见链接。
---

深度分析附录

技术脉络定位

本工作处于 agentic_search 与大规模搜索/推荐系统交叉地带。从系统视角看,它回应的是「如何在 LLM 时代重新分配检索、排序、生成与工具调用的职责边界」这一核心问题。若将经典搜索栈比作漏斗:召回负责覆盖,精排负责判别,生成负责呈现;而 LLM 时代的新增变量是 推理预算行动空间(是否检索、检索几次、调用何种工具)。

相关工作纵览

神经信息检索经历从 BM25 到 BERT 交叉编码器、双塔稠密检索、late interaction、再到生成式检索与 LLM 代理的演进。每一代方法都在 效率-效果-可维护性 三角中寻找平衡。稠密检索以近似最近邻搜索实现毫秒级召回,但对领域迁移与长尾查询敏感;交叉编码器精度高但无法预计算文档表示;生成式方法减少级联误差却面临索引更新难题。 在推荐侧,从矩阵分解、深度 CTR、序列 Transformer 到 LLM 指令跟随与生成式推荐(Gen-Rec),核心矛盾在于:用户行为稀疏、物品_catalog_巨大、且业务目标多维权衡。LLM 提供语义先验与冷启动能力,但线上推理成本与幻觉风险要求谨慎的系统设计。 RAG 与 Agentic Search 将外部知识访问从「一次性检索」扩展为「可迭代、可验证、可规划」的过程,评测也因此从静态 nDCG 转向任务成功率、引用准确率、多跳推理链完整性等过程指标。

工程落地检查清单

| 检查项 | 问题 | 建议 | |--------|------|------| | 数据 | 训练/索引是否含 PII?版本如何管理? | 分区索引、脱敏、可回滚 embedding 版本 | | 延迟 | p99 预算多少?检索几步? | 级联+早停、缓存热门查询、异步重排 | | 质量 | 离线提升是否转化为线上 CTR/满意度? | 交错实验、人工审计样本、引用校验 | | 安全 | 开放检索是否引入投毒/偏见? | 来源白名单、对抗检测、输出过滤 | | 成本 | 每查询 token 与 GPU 占用? | 路由小模型、蒸馏、稀疏+稠密混合 |

从摘要到实现的鸿沟

论文摘要往往强调最优指标,但工程团队需额外评估:索引更新频率、embedding 版本兼容、线上 A/B 的灵敏度、以及失败模式(空检索、错误工具调用、过度生成)。建议读者将本文与同类 Survey、开源实现(如 RankLLM、Open Deep Research)及工业博客一并阅读,形成「论文创新点 — 开源复现 — 线上约束」三角校验。

术语表

| 术语 | 含义 | |------|------| | IR | Information Retrieval,信息检索 | | RAG | Retrieval-Augmented Generation,检索增强生成 | | LTR | Learning to Rank,学习排序 | | nDCG | 归一化折损累积增益,排序质量指标 | | Agentic Search | 将搜索建模为序贯决策与工具调用的智能体范式 | | Gen-IR | Generative Information Retrieval,生成式信息检索 |

对本库读者的行动建议

1. 研究者:复现核心对比实验,关注是否报告统计显著性与计算成本; 2. 工程师:提取可插拔模块(编码器、重排器、规划器),评估与现有栈集成成本; 3. 产品经理:识别用户可感知收益(延迟、答案可信度、多轮一致性)而非仅离线 nDCG。

英文摘要(原文保留)

> Long-horizon search agents must manage a rapidly growing working context as they reason, call tools, and observe information. Naively accumulating all intermediate content can overwhelm the agent, increasing costs and the risk of errors. We propose that effective context management should be adaptive: parts of the agent's trajectory are maintained at different levels of detail depending on their current relevance to the task. To operationalize this principle, we introduce Context-ReAct, a general agentic paradigm for elastic context orchestration that integrates reasoning, context management, and tool use in a unified loop. Context-ReAct provides five atomic operations: Skip, Compress, Rollback, Snippet and Delete, which allow the agent to dynamically reshape its working context, preserving important evidence, summarizing resolved information, discarding unhelpful branches, and controlling context size. We prove that the Compress operator is expressively complete, while the other specialized operators provide efficiency and fidelity guarantees that reduce generation cost and hallucination risk. Building on this paradigm, we develop LongSeeker, a long-horizon search agent fine-tuned from Qwen3-30B-A3B on 10k synthesized trajectories. Across four representative search benchmarks, LongSeeker achieves 61.5% on BrowseComp and 62.5% on BrowseComp-ZH, substantially outperforming Tongyi DeepResearch (43.2% and 46.7%) and AgentFold (36.2% and 47.3%). These results highlight the potential of adaptive context management, showing that agents can achieve more reliable and efficient long-horizon reasoning by actively shaping their working memory.

暂无表态
💬 讨论回复 (0)
推荐

🌟 智谱 GLM-5 已上线

我正在智谱大模型开放平台 BigModel.cn 上打造 AI 应用,智谱新一代旗舰模型 GLM-5 已上线,在推理、代码、智能体综合能力达到开源模型 SOTA 水平。

🎁 领取 2000万 Tokens