paper-with-me

Papers

Dual-Layer Agentic Memory with Fast Write Routing and Slow Consolidation

2026-08-23 · Wenzhi Li, Dong Nie, Rui Lan, Tongtong Lyu, Peiyao Wang, Lingzi Hong, Weihang Pan, Binbin Lin, Boyuan Pan, Yao Hu arxiv

Large language model (LLM) agents operate in dynamic environments where knowledge continuously evolves. Existing memory systems typically treat external memory as a monotonically growing repository, inevitably leading to retrieval degradation and increasing computational costs over time. We argue that the core challenge is not retrieval alone, but managing the knowledge lifecycle: deciding what to externalize, update, or ultimately internalize. Inspired by Complementary Learning Systems (CLS) theory in neuroscience, we propose Dual-Layer Agentic Memory, a framework that shifts memory management to the write phase through cost-aware epistemic routing and periodic parametric consolidation. Incoming information is categorized as non-write, write-new, or write-update, and routed through a small-to-large model cascade that minimizes routing overhead while filtering redundant memories. A subsequent write-back phase selectively consolidates high-value external memories into model parameters via supervised fine-tuning. Experiments demonstrate the dual efficiency of our approach: a 1.7B/8B cascade prunes up to 68% of redundant external memory while escalating fewer than 50% of inputs, yet retains over 98% of the downstream QA Exact Match (EM) achieved by an exhaustive retention baseline. We further show that periodic consolidation successfully internalizes external knowledge, allowing the router to adaptively suppress redundant writes as the model's epistemic boundaries evolve. Overall, our framework presents a unified paradigm for agent memory: selective externalization followed by selective internalization. Code and dataset will be released upon acceptance.

📄 PDF Abstract BibTeX arXiv:2608.22215

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

D-MEM: Dopamine-Gated Agentic Memory via Reward Prediction Error Routing

2026-03-15 · Yuru Song, Qi Xin arxiv

Autonomous LLM agents require structured long-term memory, yet current "append-and-evolve" systems like A-MEM face O(N^2) write-latency and excessive token costs. We introduce D-MEM (Dopamine-Gated Agentic Memory), a bio…

SAGE: A Novelty Gate for Efficient Memory Evolution in Agentic LLMs

2026-05-29 · Sijia Wang, Dhanajit Brahma, Ricardo Henao arxiv

Agentic LLMs must continuously decide whether newly extracted facts should be added, merged with existing memories, or ignored, yet prior work has focused more on retrieval and storage than on principled write-side contr…

SAGE: A Self-Evolving Agentic Graph-Memory Engine for Structure-Aware Associative Memory

2026-05-12 · Juntong Wang, Haoyue Zhao, guanghui Pan, Xiyuan Wang 외 arxiv

Long-term memory is becoming a central bottleneck for language agents. Exsting RAG and GraphRAG systems largely treat memory graphs as static retrieval middleware, which limits their ability to recover complete evidence …

Oblivion: Self-Adaptive Agentic Memory Control through Decay-Driven Activation

2026-03-31 · Ashish Rana, Chia-Chien Hung, Qumeng Sun, Julian Martin Kunkel 외 arxiv

Human memory adapts through selective forgetting: experiences become less accessible over time but can be reactivated by reinforcement or contextual cues. In contrast, memory-augmented LLM agents rely on "always-on" retr…

Towards Improving Sequential Decision-Making in LLM Agents via Experience Memory

2026-08-04 · Jakub Rada, Viliam Lisý arxiv

Large language models have improved substantially on single-shot reasoning tasks, but their performance in sequential decision-making is less well understood. We study this on fully-observable two-player zero-sum games, …