pith. sign in

arxiv: 2606.06036 · v1 · pith:3QMJ7JRYnew · submitted 2026-06-04 · 💻 cs.AI · cs.IR

Memory is Reconstructed, Not Retrieved: Graph Memory for LLM Agents

Pith reviewed 2026-06-28 01:06 UTC · model grok-4.3

classification 💻 cs.AI cs.IR
keywords LLM agentsmemory graphactive reconstructionlong-horizon reasoningCue-Tag-Contentassociative memoryretrieval pruning
0
0 comments X

The pith

LLM agents can reason over long histories by actively reconstructing memory from a Cue-Tag-Content graph instead of using static retrieval.

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The paper claims that static retrieve-then-reason pipelines limit LLM agents on long interaction histories because they cannot adapt retrieval to evidence found during inference. It introduces a memory representation as a Cue-Tag-Content graph in which associative tags act as semantic bridges, paired with an active reconstruction process that lets the LLM iteratively explore and prune retrieval paths. This integration of reasoning into memory access is presented as the way to handle long-horizon tasks without combinatorial explosion. Experiments on the LoCoMo and LongMemEval benchmarks report gains of up to 23 percent while lowering token and runtime costs.

Core claim

Memory for LLM agents is reconstructed rather than retrieved: an associative Cue-Tag-Content graph supplies semantic bridges via tags, and an active reconstruction mechanism folds LLM reasoning directly into the access process so that retrieval paths are explored and pruned on the basis of accumulating evidence.

What carries the argument

The Cue-Tag-Content graph, in which associative tags serve as semantic bridges between fine-grained cues and memory contents, operated on by an active reconstruction mechanism that integrates LLM reasoning into iterative path exploration and pruning.

If this is right

  • Memory access becomes dynamically adapted to intermediate evidence discovered during inference.
  • Unconstrained expansion of retrieval paths is prevented by evidence-driven pruning.
  • Long-horizon memory reasoning tasks become feasible with lower token consumption and shorter runtimes.
  • The rigid retrieve-then-reason pipeline is replaced by a unified reconstruction loop.

Where Pith is reading between the lines

These are editorial extensions of the paper, not claims the author makes directly.

  • The same graph-plus-reconstruction pattern could be tested on agent benchmarks that involve multi-turn tool use or multi-agent coordination.
  • If the tag-construction step can be made incremental, the method might support streaming memory updates without periodic rebuilds.
  • The approach may reduce the need for ever-larger context windows by keeping only the reconstructed subset active.

Load-bearing premise

The Cue-Tag-Content graph can be built and maintained so that its associative tags reliably connect cues to contents without representation errors or overhead that cancels the efficiency gains.

What would settle it

Running the MRAgent framework against the same strong baselines on the LoCoMo and LongMemEval benchmarks and observing no accuracy gain or no reduction in token or runtime cost.

Figures

Figures reproduced from arXiv: 2606.06036 by Bryan Hooi, Shuo Ji, Yibo Li.

Figure 1
Figure 1. Figure 1: Comparison between passive retrieval and active memory reconstruction in MRAgent. are fundamentally constrained by their limited context win￾dows, which restrict their ability to retain interaction history over time (Hatalis et al., 2023). To mitigate these limitations, prior work equips LLM agents with external memory systems. Early approaches adopt Retrieval-Augmented Generation (RAG) (Lewis et al., 2020… view at source ↗
Figure 2
Figure 2. Figure 2: Illustrative example comparing passive retrieval and active reconstruction: passive retrieval only retrieves memory content related to Nate’s video game tournaments based on the query, while active reconstruction infers a critical temporal cue (“July”) through LLM reasoning and identifies Caroline’s corresponding activity. This perspective highlights two key challenges for LLM￾based memory systems, as illu… view at source ↗
Figure 3
Figure 3. Figure 3: Functional correspondence between human memory reconstruction and the MRAgent architecture. where tags serve as intermediate associative structures that encode how cues are linked to memory contents and guide the memory reconstruction process. Memory content can be distinguished into episodic memory for concrete events and semantic memory for shared concepts and knowledge, as supported by cognitive neurosc… view at source ↗
Figure 4
Figure 4. Figure 4: MRAgent: An Associative Memory System with LLM-Driven Active Memory Reconstruction. (a) MRAgent constructs an associative memory system from dialogues, organizing episodic and semantic memories through Cue–Tag–Content structures that explicitly encode semantic and relational associations through tags. (b) Upon a query, the agent performs active memory reconstruction, where an LLM iteratively reasons over c… view at source ↗
Figure 5
Figure 5. Figure 5: Ablation results on LOCOMO for multi-hop queries, evaluated using Recall and LLM-Judge (J) under Claude backbone. irrelevant paths before accessing expensive episodic content. This “on-demand” approach ensures that computational re￾sources are focused strictly on query-relevant evidence. 5.4. Ablation Study (RQ3) [PITH_FULL_IMAGE:figures/full_fig_p008_5.png] view at source ↗
Figure 7
Figure 7. Figure 7: Reasoning trajectory of MRAgent over the memory graph for a multi-session query. Starting from the cue “Jonna”, the agent traverses multiple associative tags to retrieve both episodic memories (e.g., screenplay submissions) and semantic information (e.g., background about the screenplay). It then reasons over higher-level topics to recover rejection events and aligns them with previously retrieved submissi… view at source ↗
Figure 8
Figure 8. Figure 8: Left: An illustrative example of memory reconstruction given a query. Right: Pseudocode of the memory reconstruction algorithm. MRAgent operates under two execution modes, Ψ ∈ {Navigate, Answer}. In the Navigate mode, the agent invokes the toolkit to progressively explore the memory graph and accumulate evidence. Once sufficient evidence has been collected, the agent transitions into the Answer mode to gen… view at source ↗
Figure 9
Figure 9. Figure 9: Performance on multi-hop queries in LOCOMO as a function of the number of reasoning turns (T) and the per-round retrieval budget (K), evaluated under the Claude backbone using LLM-Judge (J). Reconstruction depth cannot be substituted by increased parallel exploration. As the number of reasoning turns T increases, accuracy improves steadily and monotonically across all values of K, with deeper reconstructio… view at source ↗
read the original abstract

Despite recent progress, LLM agents still struggle with reasoning over long interaction histories. While current memory-augmented agents rely on a static retrieve-then-reason paradigm, this rigid pipeline design prevents them from dynamically adapting memory access to intermediate evidence discovered during inference. To bridge this gap, we propose MRAgent, a framework that combines an associative memory graph with an active reconstruction mechanism. We represent memory as a Cue-Tag-Content graph, where associative tags serve as semantic bridges connecting fine-grained cues to memory contents. Operating on this structure, our active reconstruction mechanism integrates LLM reasoning directly into memory access, allowing the agent to iteratively explore and prune retrieval paths based on accumulated evidence. This ensures that memory retrieval is dynamically adapted to the reasoning context while avoiding combinatorial explosion caused by unconstrained expansion. Experiments on the LoCoMo benchmark and LongMemEval benchmark demonstrate significant improvements over strong baselines (up to 23%), while substantially reducing token and runtime cost, highlighting the effectiveness of active and associative reconstruction for long-horizon memory reasoning.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, simulated authors' rebuttal, and a circularity audit. Tearing a paper down is the easy half of reading it; the pith above is the substance, this is the friction.

Referee Report

3 major / 2 minor

Summary. The paper proposes MRAgent, a memory-augmented LLM agent framework that represents interaction histories as a Cue-Tag-Content graph in which associative tags act as semantic bridges between cues and contents. It introduces an active reconstruction mechanism that integrates LLM reasoning into the retrieval process, allowing iterative exploration and pruning of paths based on intermediate evidence. The central claim is that this dynamic, evidence-driven approach outperforms static retrieve-then-reason baselines by up to 23% on the LoCoMo and LongMemEval benchmarks while also reducing token usage and runtime.

Significance. If the performance and efficiency claims hold under rigorous validation, the work would represent a meaningful shift from static memory retrieval to adaptive reconstruction in LLM agents, with potential applicability to long-horizon tasks. The graph-based associative structure combined with evidence-driven pruning is a conceptually coherent proposal that addresses a recognized limitation in current memory-augmented agents.

major comments (3)
  1. [Abstract, §4] Abstract and §4 (Experiments): The headline claim of 'significant improvements over strong baselines (up to 23%)' and 'substantially reducing token and runtime cost' is presented without any description of the baselines used, statistical tests performed, error bars, dataset splits, or ablation studies. This absence makes it impossible to evaluate whether the reported gains support the central claim that active reconstruction is responsible for the observed benefits.
  2. [§3] §3 (Method): The Cue-Tag-Content graph construction, tag generation procedure, and update rules are not specified in sufficient detail to assess the weakest assumption that associative tags can be maintained as low-error semantic bridges. Without an explicit algorithm or cost model for tag creation and maintenance, it is unclear whether the claimed efficiency gains survive the overhead of graph operations.
  3. [§3.2] §3.2 (Active Reconstruction): The pruning mechanism is described as using 'intermediate LLM evidence' to avoid combinatorial explosion, yet no formal condition, threshold, or termination criterion is given. This leaves open the possibility that the mechanism either omits relevant paths or fails to prune, directly undermining both accuracy and runtime claims.
minor comments (2)
  1. [§3.1] Notation for the Cue-Tag-Content graph (e.g., how edges are typed and how tags are represented) is introduced without a formal definition or example instance, making the subsequent algorithmic description harder to follow.
  2. [Abstract] The abstract states results on 'LoCoMo benchmark and LongMemEval benchmark' but does not indicate whether these are standard public benchmarks or newly introduced; a citation or brief description would improve clarity.

Simulated Author's Rebuttal

3 responses · 0 unresolved

We thank the referee for the constructive and detailed feedback. We address each major comment below and commit to revisions that directly respond to the concerns raised.

read point-by-point responses
  1. Referee: [Abstract, §4] Abstract and §4 (Experiments): The headline claim of 'significant improvements over strong baselines (up to 23%)' and 'substantially reducing token and runtime cost' is presented without any description of the baselines used, statistical tests performed, error bars, dataset splits, or ablation studies. This absence makes it impossible to evaluate whether the reported gains support the central claim that active reconstruction is responsible for the observed benefits.

    Authors: We agree that the presentation of results requires greater transparency. In the revised manuscript we will expand both the abstract and §4 to name every baseline, report error bars across multiple runs, specify dataset splits, include statistical significance tests, and add ablation studies that isolate the contribution of active reconstruction from the graph structure alone. revision: yes

  2. Referee: [§3] §3 (Method): The Cue-Tag-Content graph construction, tag generation procedure, and update rules are not specified in sufficient detail to assess the weakest assumption that associative tags can be maintained as low-error semantic bridges. Without an explicit algorithm or cost model for tag creation and maintenance, it is unclear whether the claimed efficiency gains survive the overhead of graph operations.

    Authors: We will revise §3 to include an explicit algorithm (presented as pseudocode) for graph construction, tag generation, and update rules, together with a cost model that quantifies the overhead of tag maintenance relative to the observed token and runtime savings. revision: yes

  3. Referee: [§3.2] §3.2 (Active Reconstruction): The pruning mechanism is described as using 'intermediate LLM evidence' to avoid combinatorial explosion, yet no formal condition, threshold, or termination criterion is given. This leaves open the possibility that the mechanism either omits relevant paths or fails to prune, directly undermining both accuracy and runtime claims.

    Authors: We accept that a more formal specification is needed. The revised §3.2 will define explicit pruning conditions, evidence thresholds, and termination criteria that govern path exploration and pruning, thereby clarifying how the mechanism balances completeness and efficiency. revision: yes

Circularity Check

0 steps flagged

No circularity: framework proposal evaluated on external benchmarks with no fitted predictions or self-referential derivations.

full rationale

The paper introduces MRAgent as a new Cue-Tag-Content graph plus active reconstruction mechanism, then reports empirical gains on the independent LoCoMo and LongMemEval benchmarks. No equations, fitted parameters, or predictions appear that reduce by construction to the inputs; the central claims rest on the external benchmark results rather than any self-definition or self-citation chain. The absence of any load-bearing mathematical derivation makes circularity analysis inapplicable.

Axiom & Free-Parameter Ledger

0 free parameters · 1 axioms · 1 invented entities

The central claim rests on the untested premise that the proposed graph representation and reconstruction loop will produce the reported efficiency and accuracy gains; no independent evidence for these mechanisms is supplied beyond the new experiments.

axioms (1)
  • domain assumption Current memory-augmented agents rely on a static retrieve-then-reason paradigm that prevents dynamic adaptation.
    Stated as the motivating gap in the abstract.
invented entities (1)
  • Cue-Tag-Content graph no independent evidence
    purpose: To serve as associative memory structure with tags acting as semantic bridges between cues and contents.
    New representation introduced by the framework; no independent evidence provided outside the paper.

pith-pipeline@v0.9.1-grok · 5705 in / 1252 out tokens · 40161 ms · 2026-06-28T01:06:47.593633+00:00 · methodology

discussion (0)

Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.

Reference graph

Works this paper leans on

49 extracted references · 12 canonical work pages · 6 internal anchors

  1. [1]

    Nature Neuroscience , volume =

    The neurobiological foundation of memory retrieval , author =. Nature Neuroscience , volume =

  2. [2]

    Neuroscience & Biobehavioral Reviews , volume =

    The cognitive neuroscience of memory representation , author =. Neuroscience & Biobehavioral Reviews , volume =

  3. [3]

    Neuron , year =

    Key--value memory in the brain , author =. Neuron , year =

  4. [4]

    LongMemEval: Benchmarking Chat Assistants on Long-Term Interactive Memory , booktitle =

    Di Wu and Hongwei Wang and Wenhao Yu and Yuwei Zhang and Kai. LongMemEval: Benchmarking Chat Assistants on Long-Term Interactive Memory , booktitle =. 2025 , url =

  5. [10]

    Proceedings of the AAAI Symposium Series , volume=

    Memory matters: The need to improve long-term memory in llm-agents , author=. Proceedings of the AAAI Symposium Series , volume=

  6. [11]

    Retrieval-Augmented Generation for Knowledge-Intensive

    Patrick Lewis and Ethan Perez and Aleksandra Piktus and Fabio Petroni and Vladimir Karpukhin and Naman Goyal and Heinrich K. Retrieval-Augmented Generation for Knowledge-Intensive. Advances in Neural Information Processing Systems 33: Annual Conference on Neural Information Processing Systems 2020, NeurIPS 2020, December 6-12, 2020, virtual , year =

  7. [13]

    Organization of memory , volume=

    Episodic and semantic memory , author=. Organization of memory , volume=. 1972 , publisher=

  8. [14]

    Current opinion in neurobiology , volume=

    Brain networks underlying episodic memory retrieval , author=. Current opinion in neurobiology , volume=. 2013 , publisher=

  9. [18]

    2025 , howpublished =

    LangMem SDK for Agent Long-Term Memory , author =. 2025 , howpublished =

  10. [20]

    Science , volume=

    Competition between engrams influences fear memory formation and recall , author=. Science , volume=. 2016 , publisher=

  11. [21]

    Neuron , volume=

    Semantic memory and the human hippocampus , author=. Neuron , volume=. 2003 , publisher=

  12. [22]

    A Survey of Self-Evolving Agents: What, When, How, and Where to Evolve on the Path to Artificial Super Intelligence , journal =

    Huan. A Survey of Self-Evolving Agents: What, When, How, and Where to Evolve on the Path to Artificial Super Intelligence , journal =. 2026 , biburl =

  13. [23]

    arXiv preprint arXiv:2510.13614 , year=

    Memotime: Memory-augmented temporal knowledge graph enhanced large language model reasoning , author=. arXiv preprint arXiv:2510.13614 , year=

  14. [24]

    From Isolated Conversations to Hierarchical Schemas: Dynamic Tree Memory Representation for LLMs , author=

  15. [25]

    The Thirteenth International Conference on Learning Representations , year=

    Secom: On memory construction and retrieval for personalized conversational agents , author=. The Thirteenth International Conference on Learning Representations , year=

  16. [26]

    Proceedings of the 63rd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) , pages=

    In prospect and retrospect: Reflective memory management for long-term personalized dialogue agents , author=. Proceedings of the 63rd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) , pages=

  17. [31]

    Langley , title =

    P. Langley , title =. Proceedings of the 17th International Conference on Machine Learning (ICML 2000) , address =. 2000 , pages =

  18. [32]

    T. M. Mitchell. The Need for Biases in Learning Generalizations. 1980

  19. [33]

    M. J. Kearns , title =

  20. [34]

    Machine Learning: An Artificial Intelligence Approach, Vol. I. 1983

  21. [35]

    R. O. Duda and P. E. Hart and D. G. Stork. Pattern Classification. 2000

  22. [36]

    Suppressed for Anonymity , author=

  23. [37]

    Newell and P

    A. Newell and P. S. Rosenbloom. Mechanisms of Skill Acquisition and the Law of Practice. Cognitive Skills and Their Acquisition. 1981

  24. [38]

    A. L. Samuel. Some Studies in Machine Learning Using the Game of Checkers. IBM Journal of Research and Development. 1959

  25. [39]

    Arigraph: Learning knowledge graph world models with episodic memory for llm agents

    Anokhin, P., Semenov, N., Sorokin, A., Evseev, D., Kravchenko, A., Burtsev, M., and Burnaev, E. Arigraph: Learning knowledge graph world models with episodic memory for llm agents. arXiv preprint arXiv:2407.04363, 2024

  26. [40]

    Mem0: Building Production-Ready AI Agents with Scalable Long-Term Memory

    Chhikara, P., Khant, D., Aryan, S., Singh, T., and Yadav, D. Mem0: Building production-ready AI agents with scalable long-term memory. CoRR, abs/2504.19413, 2025. doi:10.48550/ARXIV.2504.19413. URL https://doi.org/10.48550/arXiv.2504.19413

  27. [41]

    LightMem: Lightweight and Efficient Memory-Augmented Generation

    Fang, J., Deng, X., Xu, H., Jiang, Z., Tang, Y., Xu, Z., Deng, S., Yao, Y., Wang, M., Qiao, S., Chen, H., and Zhang, N. Lightmem: Lightweight and efficient memory-augmented generation. CoRR, abs/2510.18866, 2025. doi:10.48550/ARXIV.2510.18866. URL https://doi.org/10.48550/arXiv.2510.18866

  28. [42]

    Frankland, P. W. and Josselyn, S. A. The neurobiological foundation of memory retrieval. Nature Neuroscience, 22 0 (10): 0 1576--1585, 2019

  29. [43]

    A survey of self-evolving agents: What, when, how, and where to evolve on the path to artificial super intelligence

    Gao, H., Geng, J., Hua, W., Hu, M., Juan, X., Liu, H., Liu, S., Qiu, J., Qi, X., Ren, Q., Wu, Y., Wang, H., Xiao, H., Zhou, Y., Zhang, S., Zhang, J., Xiang, J., Fang, Y., Zhao, Q., Liu, D., Qian, C., Wang, Z., Hu, M., Wang, H., Wu, Q., Ji, H., and Wang, M. A survey of self-evolving agents: What, when, how, and where to evolve on the path to artificial sup...

  30. [44]

    Retrieval-Augmented Generation with Graphs (GraphRAG)

    Han, H., Wang, Y., Shomer, H., Guo, K., Ding, J., Lei, Y., Halappanavar, M., Rossi, R. A., Mukherjee, S., Tang, X., He, Q., Hua, Z., Long, B., Zhao, T., Shah, N., Javari, A., Xia, Y., and Tang, J. Retrieval-augmented generation with graphs (graphrag). CoRR, abs/2501.00309, 2025. doi:10.48550/ARXIV.2501.00309. URL https://doi.org/10.48550/arXiv.2501.00309

  31. [45]

    Memory matters: The need to improve long-term memory in llm-agents

    Hatalis, K., Christou, D., Myers, J., Jones, S., Lambert, K., Amos-Binks, A., Dannenhauer, Z., and Dannenhauer, D. Memory matters: The need to improve long-term memory in llm-agents. In Proceedings of the AAAI Symposium Series, volume 2, pp.\ 277--280, 2023

  32. [46]

    A definition of agi.arXiv preprint arXiv:2510.18212, 2025

    Hendrycks, D., Song, D., Szegedy, C., Lee, H., Gal, Y., Brynjolfsson, E., Li, S., Zou, A., Levine, L., Han, B., Fu, J., Liu, Z., Shin, J., Lee, K., Mazeika, M., Phan, L., Ingebretsen, G., Khoja, A., Xie, C., Salaudeen, O., Hein, M., Zhao, K., Pan, A., Duvenaud, D., Li, B., Omohundro, S., Alfour, G., Tegmark, M., McGrew, K., Marcus, G., Tallinn, J., Schmid...

  33. [47]

    Memory in the age of ai agents

    Hu, Y., Liu, S., Yue, Y., Zhang, G., Liu, B., Zhu, F., Lin, J., Guo, H., Dou, S., Xi, Z., et al. Memory in the age of ai agents. arXiv preprint arXiv:2512.13564, 2025

  34. [48]

    Licomemory: Lightweight and cognitive agentic memory for efficient long-term reasoning

    Huang, Z., Tian, Z., Guo, Q., Zhang, F., Zhou, Y., Jiang, D., and Zhou, X. Licomemory: Lightweight and cognitive agentic memory for efficient long-term reasoning. CoRR, abs/2511.01448, 2025. doi:10.48550/ARXIV.2511.01448. URL https://doi.org/10.48550/arXiv.2511.01448

  35. [49]

    Search-R1: Training LLMs to Reason and Leverage Search Engines with Reinforcement Learning

    Jin, B., Zeng, H., Yue, Z., Wang, D., Zamani, H., and Han, J. Search-r1: Training llms to reason and leverage search engines with reinforcement learning. CoRR, abs/2503.09516, 2025. doi:10.48550/ARXIV.2503.09516. URL https://doi.org/10.48550/arXiv.2503.09516

  36. [50]

    URLhttps://arxiv.org/abs/2506.06326

    Kang, J., Ji, M., Zhao, Z., and Bai, T. Memory OS of AI agent. CoRR, abs/2506.06326, 2025. doi:10.48550/ARXIV.2506.06326. URL https://doi.org/10.48550/arXiv.2506.06326

  37. [51]

    Langmem sdk for agent long-term memory

    LangChain . Langmem sdk for agent long-term memory. https://blog.langchain.com/langmem-sdk-launch/, 2025. Accessed: 2025-01

  38. [52]

    u ttler, H., Lewis, M., Yih, W., Rockt \

    Lewis, P., Perez, E., Piktus, A., Petroni, F., Karpukhin, V., Goyal, N., K \" u ttler, H., Lewis, M., Yih, W., Rockt \" a schel, T., Riedel, S., and Kiela, D. Retrieval-augmented generation for knowledge-intensive NLP tasks. In Larochelle, H., Ranzato, M., Hadsell, R., Balcan, M., and Lin, H. (eds.), Advances in Neural Information Processing Systems 33: A...

  39. [53]

    Proceedings of the 2025 Conference on Empirical Methods in Natural Language Processing , month = nov, year =

    Li, X., Dong, G., Jin, J., Zhang, Y., Zhou, Y., Zhu, Y., Zhang, P., and Dou, Z. Search-o1: Agentic search-enhanced large reasoning models. In Christodoulopoulos, C., Chakraborty, T., Rose, C., and Peng, V. (eds.), Proceedings of the 2025 Conference on Empirical Methods in Natural Language Processing, EMNLP 2025, Suzhou, China, November 4-9, 2025 , pp.\ 54...

  40. [54]

    URLhttps://aclanthology.org/2024.acl-long.747/

    Maharana, A., Lee, D., Tulyakov, S., Bansal, M., Barbieri, F., and Fang, Y. Evaluating very long-term conversational memory of LLM agents. In Ku, L., Martins, A., and Srikumar, V. (eds.), Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), ACL 2024, Bangkok, Thailand, August 11-16, 2024 , pp.\ 1...

  41. [55]

    R., Hopkins, R

    Manns, J. R., Hopkins, R. O., and Squire, L. R. Semantic memory and the human hippocampus. Neuron, 38 0 (1): 0 127--133, 2003

  42. [56]

    V., Qiu, L., et al

    Pan, Z., Wu, Q., Jiang, H., Luo, X., Cheng, H., Li, D., Yang, Y., Lin, C.-Y., Zhao, H. V., Qiu, L., et al. Secom: On memory construction and retrieval for personalized conversational agents. In The Thirteenth International Conference on Learning Representations, 2025

  43. [57]

    J., Yan, C., Mercaldo, V., Hsiang, H.-L., Park, S., Cole, C

    Rashid, A. J., Yan, C., Mercaldo, V., Hsiang, H.-L., Park, S., Cole, C. J., De Cristofaro, A., Yu, J., Ramakrishnan, C., Lee, S. Y., et al. Competition between engrams influences fear memory formation and recall. Science, 353 0 (6297): 0 383--387, 2016

  44. [58]

    Zep: A Temporal Knowledge Graph Architecture for Agent Memory

    Rasmussen, P., Paliychuk, P., Beauvais, T., Ryan, J., and Chalef, D. Zep: A temporal knowledge graph architecture for agent memory. CoRR, abs/2501.13956, 2025. doi:10.48550/ARXIV.2501.13956. URL https://doi.org/10.48550/arXiv.2501.13956

  45. [59]

    Rugg, M. D. and Renoult, L. The cognitive neuroscience of memory representation. Neuroscience & Biobehavioral Reviews, 155: 0 105450, 2025

  46. [60]

    In prospect and retrospect: Reflective memory management for long-term personalized dialogue agents

    Tan, Z., Yan, J., Hsu, I.-H., Han, R., Wang, Z., Le, L., Song, Y., Chen, Y., Palangi, H., Lee, G., et al. In prospect and retrospect: Reflective memory management for long-term personalized dialogue agents. In Proceedings of the 63rd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pp.\ 8416--8439, 2025

  47. [61]

    Longmemeval: Benchmarking chat assistants on long-term interactive memory

    Wu, D., Wang, H., Yu, W., Zhang, Y., Chang, K., and Yu, D. Longmemeval: Benchmarking chat assistants on long-term interactive memory. In The Thirteenth International Conference on Learning Representations, ICLR 2025, Singapore, April 24-28, 2025 . OpenReview.net, 2025. URL https://openreview.net/forum?id=pZiyCaVuti

  48. [62]

    A-MEM: Agentic Memory for LLM Agents

    Xu, W., Liang, Z., Mei, K., Gao, H., Tan, J., and Zhang, Y. A-MEM: agentic memory for LLM agents. CoRR, abs/2502.12110, 2025. doi:10.48550/ARXIV.2502.12110. URL https://doi.org/10.48550/arXiv.2502.12110

  49. [63]

    URL https://ojs.aaai.org/index.php/AAAI/article/view/29946

    Zhong, W., Guo, L., Gao, Q., Ye, H., and Wang, Y. Memorybank: Enhancing large language models with long-term memory. In Wooldridge, M. J., Dy, J. G., and Natarajan, S. (eds.), Thirty-Eighth AAAI Conference on Artificial Intelligence, AAAI 2024, Thirty-Sixth Conference on Innovative Applications of Artificial Intelligence, IAAI 2024, Fourteenth Symposium o...