memory-systems

Tag

Cards List
#memory-systems

ComMem: Complementary Memory Systems for Test-Time Adaptation of Vision-Language Models

arXiv cs.AI · 3d ago Cached

ComMem proposes complementary memory systems inspired by biological memory to improve test-time adaptation of vision-language models, outperforming state-of-the-art on 15 benchmarks.

0 favorites 0 likes
#memory-systems

@yibie: Recommend this article. The author argues that most AI memory systems are designed the wrong way—designing memory architecture from the top down, rather than letting good memory systems emerge naturally from evaluation. Memory is not a first-class ability, but a second-order effect that evolves under pressure. Memory systems should be evolved, not designed. People...

X AI KOLs Timeline · 3d ago Cached

This article discusses the design approach for AI memory systems, advocating for letting good memory systems emerge naturally from evaluation rather than designing memory architecture from the top down. The author argues that memory is a second-order effect evolved under pressure and proposes a longitudinal evaluation framework.

0 favorites 0 likes
#memory-systems

@yibie: Recommend this article. The teams from SJTU and Tsinghua systematically evaluated 12 agent memory systems. It's not one of those "our model is better" papers but rather breaks down how to choose memory systems from a data management perspective—when to use RAG, when to use vector databases, when to use knowledge graphs. Long-term memory for agents...

X AI KOLs Timeline · 2026-06-26 Cached

This paper from SJTU and Tsinghua systematically evaluates 12 agent memory systems from a data management perspective, decomposing memory into four modules and providing guidelines on when to use RAG, vector databases, or knowledge graphs for long-term agent memory.

0 favorites 0 likes
#memory-systems

@chenchengpro: The more fancy "memory" architectures you stack on an LLM Agent, the better the results? Not necessarily. A new paper tested 12 memory systems and found no universal winner. It decomposes Agent memory like a database — representation & storage, extraction, retrieval & routing, and maintenance — and tested Mem0, Letta, Zep, C…

X AI KOLs Timeline · 2026-06-25 Cached

A paper systematically evaluates 12 LLM Agent memory systems, breaks them into four modules, finds no single architecture dominates all scenarios, and reveals cost-performance trade-offs and common issues (e.g., 'past hallucinations').

0 favorites 0 likes
#memory-systems

Tired of onboarding your agent every session? Building a memory system to fix the problem? Here's a guide to some things you should be thinking about when designing your system.

Reddit r/AI_Agents · 2026-06-25

An exploration of how AI agent memory systems often miss crucial cognitive processes like working memory, drawing parallels to anterograde amnesia, and offering design guidance for more effective solutions.

0 favorites 0 likes
#memory-systems

MEMPROBE: Probing Long-Term Agent Memory via Hidden User-State Recovery

arXiv cs.CL · 2026-06-24 Cached

MEMPROBE is a benchmark that evaluates long-term memory in LLM agents by reconstructing hidden user states from the agent's memory after interaction.

0 favorites 0 likes
#memory-systems

Are We Ready For An Agent-Native Memory System?

Hugging Face Daily Papers · 2026-06-23 Cached

This paper presents a systematic experimental study of agent memory systems from a data management perspective, decomposing memory into four core modules and evaluating 12 representative systems across 11 datasets, finding no single architecture dominates and highlighting cost-performance trade-offs.

0 favorites 0 likes
#memory-systems

@neural_avb: There are two to three completely different schools of thoughts for building memory systems into LLMs. When it comes to…

X AI KOLs Timeline · 2026-06-19 Cached

Discussion of different schools of thought for building memory systems in LLMs, with a focus on graph memory and its potential for human creativity and inductive bias.

0 favorites 0 likes
#memory-systems

Hallucinations = Imagination

Reddit r/ArtificialInteligence · 2026-06-18

A developer working on an AI agent wrapper observes that the agent's hallucinations of user responses can actually aid problem-solving, and proposes treating such hallucinations as imagined events rather than errors.

0 favorites 0 likes
#memory-systems

File systems are the new primitive for AI agents

Reddit r/AI_Agents · 2026-06-15

This article argues that filesystems, due to their long history and extensive inclusion in LLM training data, offer a natural and intuitive primitive for AI agent memory, outperforming traditional databases and APIs for exploratory reasoning and persistent context.

0 favorites 0 likes
#memory-systems

@degenrsc: https://x.com/degenrsc/status/2064714047241736302

X AI KOLs Timeline · 2026-06-10 Cached

A detailed guide on building an agentic research framework using a multi-LLM system with persistent memory, allowing researchers to avoid re-explaining context across sessions by leveraging file-based identity, project docs, and memory indices.

0 favorites 0 likes
#memory-systems

Less Context, More Accuracy: A Bi-Temporal Memory Engine for LLM Agents Where a Lean Retrieved Context Beats the Full History

arXiv cs.CL · 2026-06-10 Cached

This paper introduces Engram, an open-source bi-temporal memory engine for LLM agents that retrieves a compact context slice (∼9.6k tokens) to outperform the full-history baseline (79k tokens) by 10.4 accuracy points on LongMemEval, using a hybrid read path fusing dense, lexical, graph, and temporal signals.

0 favorites 0 likes
#memory-systems

Do you see agent memory primarily as an AI problem, or as an infrastructure/data-management problem that happens to be used by AI?

Reddit r/AI_Agents · 2026-06-08

A reflection on agent memory as primarily an infrastructure/data-management problem rather than an AI problem, focusing on practical complexities like permissions, scopes, and revision history.

0 favorites 0 likes
#memory-systems

@omarsar0: // Continual Learning Bench // One of the research areas with lots of investments is continual learning. While there ar…

X AI KOLs Following · 2026-06-06 Cached

CL-Bench is a new expert-validated benchmark across six domains that evaluates whether LLM-based agents genuinely learn from sequential experience. It finds that naive in-context learning often outperforms dedicated memory systems, indicating current architectures add overhead rather than genuine learning.

0 favorites 0 likes
#memory-systems

How ChatGPT Dreaming V3 works (+ every other agent Memory Framework)

Reddit r/AI_Agents · 2026-06-05

An in-depth analysis of ChatGPT Dreaming V3's memory architecture, explaining how it synthesizes a coherent memory state from raw sources and comparing it to other open-source memory frameworks like mem0, supermemory, and Letta.

0 favorites 0 likes
#memory-systems

Exploring Cross-Scenario Generality of Agentic Memory Systems: Diagnostics and a Strong Baseline

arXiv cs.AI · 2026-06-04 Cached

This paper evaluates eight memory systems for LLM agents across five diverse scenarios, finding that giving agents active control over storage and retrieval (rather than passive pipelines) yields the best cross-scenario generalization, leading to the proposed AutoMEM framework.

0 favorites 0 likes
#memory-systems

Why do we have version control for code but not for AI memory?

Reddit r/AI_Agents · 2026-06-02

The article highlights the lack of version control and observability in AI memory systems compared to code version control, and questions the current state of tooling for memory history.

0 favorites 0 likes
#memory-systems

MemPro: Agentic Memory Systems as Evolvable Programs

arXiv cs.CL · 2026-06-02 Cached

MemPro is a system-level evolution framework that treats the memory construction–retrieval pipeline as an evolvable program, using an Evolving Agent to iteratively diagnose failures and create improved versions. Experiments on long-horizon benchmarks show consistent improvement over static and prompt-level baselines with favorable performance–cost trade-off.

0 favorites 0 likes
#memory-systems

AI memory is becoming the new technical debt.

Reddit r/AI_Agents · 2026-05-31

The article warns that AI memory systems, while impressive in demos, often lead to stale facts, conflicting preferences, and broken summaries, creating future debugging nightmares and technical debt.

0 favorites 0 likes
#memory-systems

@HuggingPapers: MemTrace: automatic error tracing for LLM memory systems Traces how memories evolve by transforming memory pipelines in…

X AI KOLs Timeline · 2026-05-31 Cached

MemTrace automatically traces errors in LLM memory systems by converting memory pipelines into executable graphs, identifying root causes of failures, and self-correcting to improve performance by up to 7.62%.

0 favorites 0 likes
Next →
← Back to home

Submit Feedback