← 首页|学术|ReFind: Raw Chat Logs Rival Structured Memory
cs.CL · 2608.12888 · 2026/08/13

When Your Agent Opens the Chat App: Agent-Controlled Search over Raw Chat Logs Rivals Structured Memory

Li, Ruizhe, Zhang, Licheng, Xu, Benfeng, Du, Mingxuan, Fu, Zheren, Chen, Weidong
TL;DR:不加任何结构化预处理,agent 自己控制搜索原始聊天记录,反而胜过树/图结构记忆。ReFind 用迭代关键词搜索+四个聊天原生控制(会话感知融合、局部上下文扩展、时间收窄、跳过已查会话),MemoryAgentBench 多轮设定下 mean 58.2 > HippoRAG 2 的 53.2。

🎯 问题

Agent 记忆系统普遍先用摘要/embedding/树/知识图把原始对话历史结构化再检索,代价高且结构本身未必是收益来源。核心问题:收益到底来自「结构」还是来自「对原始历史的能力检索」?

🔬 方法

ReFind:对原始对话档案零改动,按 turn 粒度做词法索引;通用迭代关键词搜索循环 + 四个聊天原生控制(session-aware rank fusion、local context expansion、temporal narrowing、跳过已检会话);证据收集后由独立推理阶段作答。无任何语义结构。
章节结构(全文标题提取):
1 Introduction
2 Related Work
3 Method
4 Experiments
5 Analysis and Discussion
6 Conclusion
Statement on the Use of AI Assistants
7 Prompts
8 Hyperparameters
9 Evaluation Details
10 Resource Use
11 Artifact Use and Licenses
12 Ablation Variant Definitions
13 Example Search Trajectory
System Architecture · Search Engine Design · Evaluation Setup · Implementation Details · Baselines · Main Results: Precise Retrieval and Fact Tracking · Backbone Scaling · Ablation Study · Discussion · Stage 1: Retrieval Agent Prompt · Stage 2: LongMemEval Reasoning Prompts · Stage 2: MemoryAgentBench Task Prompts · Baseline Sources · LongMemEval Evaluation · Repeated-Run Stability · Generic Agentic BM25 Control · Repeated Component Ablations · One-Search Control

📊 结果

约 2800 题、单跳/多跳 QA、事件排序、事实合并任务,mean accuracy 58.2 全场最高,超过最强图/树记忆(HippoRAG 2 53.2),全部统一 GPT-4o-mini 骨干。消融支持 agent 控制与聊天原生控制在其中的作用。

💡 与研究方向关联

记忆是 duplex/long-horizon agent 的地基。这篇的挑衅性结论——「结构记忆 vs 原始日志检索」——直接关系到长期对话 agent 的记忆-成本权衡,与 LycheeMemory V2(同一批)构成正反两派。

📝 原文摘要

▶ 原文摘要 Abstract
Agent-memory systems increasingly buy retrieval quality with structure, transforming raw conversation histories into summaries, embeddings, trees, or knowledge graphs before any question is asked. We ask how much of that benefit comes from the structure itself, rather than from competent retrieval over the raw history. We present ReFind, an agent-controlled search interface that builds no semantic structure at all: it leaves the conversation archive unmodified, indexes it lexically at turn granularity, and combines a generic iterative keyword-search loop with four chat-native controls grounded in empirical refinding work: session-aware rank fusion, local context expansion, temporal narrowing, and skipping already-inspected sessions. A separate reasoning stage answers from the collected evidence. Across a broad suite of conversational-memory tasks (single- and multi-hop QA, event ordering, and fact consolidation), roughly 2,800 questions on precise-retrieval and fact-tracking capabilities evaluated under the incremental multi-turn setting of MemoryAgentBench, ReFind attains the highest mean accuracy (58.2) of any system compared, above the strongest graph- and tree-based memory systems (HippoRAG 2, 53.2), all under a GPT-4o-mini backbone matched to every reused baseline. Controlled comparisons to single-shot BM25, a matched generic-agentic BM25 control, component removals, and agentic dense/hybrid variants separately support the roles of agent control, chat-native controls, and lexical retrieval. On LongMemEval-S/M, the same interface reaches 93.2 +/- 3.3 and 89.3 +/- 6.0 with GPT-5-mini. The results indicate that for precise, evidence-grounded questions over chat archives, much of the benefit credited to elaborate memory structures is recoverable by giving an agent controllable search over the unmodified record, with no LLM-based index construction at all.
Deep Read · 2026-08-15高松灯 / Agent 日报
Agent MemoryRetrievalChat LogsReFind