Research
BMAM: Brain-inspired Multi-Agent Memory Framework
Overview Research area: Natural Language Processing — long-term memory architectures for large-language-model (LLM) agents, with a cognitive-neuroscience-inspired design. Technical level: Intermediate
- arXiv
- 2601.20465
- Published
- 2026-01-28
- Authors
- Yang Li, Jiaxiang Liu, Yusong Wang, Yujie Wu, Mingkun Xu
AI summary
Overview
Research area: Natural Language Processing — long-term memory architectures for large-language-model (LLM) agents, with a cognitive-neuroscience-inspired design.
Technical level: Intermediate to Advanced. The paper assumes familiarity with retrieval-augmented generation, agent frameworks, and memory benchmarks, though its central ideas are explained through brain-region analogies.
Scope: The paper proposes BMAM, a brain-inspired multi-agent memory framework that decomposes agent memory into functionally specialized subsystems (episodic, semantic, salience, and control), and evaluates it on four long-horizon memory benchmarks: LoCoMo, LongMemEval, PersonaMem, and PrefEval.
What This Paper Is About
LLM-based agents that interact with users over long periods lose temporal grounding and behavioral consistency — the authors name this failure pattern soul erosion. The paper argues that a single unstructured memory store (as in typical retrieval-augmented generation) cannot defend against this, because temporal, semantic, and identity failures come from different causes. BMAM's goal is a general-purpose memory architecture whose components map to distinct brain regions, each targeting a specific erosion mode.
Key Contributions
- Identification of "soul erosion." The authors define a formal composite metric — a soulfulness score combining temporal coherence, semantic consistency, and identity preservation with weights α, β, γ that sum to 1 — and define soul erosion as the degradation of that score between a reference point t₀ and a later step t. In experiments, they use LoCoMo temporal accuracy for T, cross-session consistency metrics for C, and PrefEval and PersonaMem scores for I.
- The BMAM architecture. A coordinator-centered multi-agent framework decomposing memory into hippocampus-inspired episodic storage, temporal-lobe-style semantic memory and knowledge graph, amygdala-inspired salience tagging, prefrontal executive control, and basal ganglia procedural memory, all sharing a unified memory substrate.
- Timeline-indexed episodic organization (StoryArc) plus hybrid retrieval. StoryArc maintains per-entity timelines with normalized timestamps; retrieval fuses BM25 (lexical), dense vector (semantic), knowledge-graph (relational), and StoryArc (temporal) signals via weighted reciprocal rank fusion with smoothing constant k = 60.
- Empirical validation and ablation. BMAM reaches 78.45% accuracy on LoCoMo, with ablation and error analyses identifying which components matter and where failures remain.
Main Findings
- LoCoMo: BMAM achieves 78.45% overall accuracy (1558/1986). By question type: single-hop 82.0%, multi-hop 70.4%, temporal 62.3%, open-domain 79.6% (Table 11 reports 82.00, 70.42, 62.31, 79.55).
- LongMemEval: 67.60% overall (338/500). Category results: single-session-preference 100.0% (30/30), single-session-user 87.1% (61/70), single-session-assistant 76.8% (43/56), knowledge-update 70.5% (55/78), temporal-reasoning 59.4% (79/133), multi-session 52.6% (70/133).
- PersonaMem: 48.9% accuracy (288/589). The paper attributes the weaker result to PersonaMem's exact surface-form multiple-choice format versus BMAM's open-ended retrieval focus.
- PrefEval: 72.90% personalized rate (729/1000), with outcomes breaking down as preference-unaware 18.9% (189), preference hallucination 6.7% (67), unhelpful 1.4% (14), and inconsistency 0.1% (1).
- Hippocampus ablation dominates: Removing the hippocampus-inspired episodic memory causes a 24.62% accuracy drop on a LoCoMo subset, the largest by far. On the 199-question subset (Group 1), full BMAM scores 77.39% (154/199, 95% CI 71.1–82.6) versus 52.76% for the hippocampus-ablated variant (105/199, 95% CI 45.7–59.7). Only the hippocampus ablation is statistically significant (p < 0.001, Wilson CIs and two-proportion z-tests).
- Counterintuitive ablation results: Removing the Prefrontal component (+5.03%) or the Temporal Lobe (+4.02%) improves overall accuracy on the 199-question subset, which the authors explain as an efficiency–robustness trade-off: 67% of that subset is single-hop factual queries where direct episodic retrieval suffices. However, on temporal queries specifically, removing the Temporal Lobe causes a 12.3% accuracy drop — a loss masked in the aggregate. The paper also notes the components are tightly coupled because the system was built incrementally, so removing one disrupts information flows in ways that do not reflect its true contribution. (Table 10 reports different ablation values — w/o Temp. Lobe 76.38%, w/o Prefrontal 75.88%, w/o Amygdala 75.38%, w/o Basal Ganglia 76.88% — alongside the confidence intervals.)
- Error analysis of 50 sampled LoCoMo errors: temporal confusion 38%, entity ambiguity 28%, retrieval coverage 22%, with the remaining 12% from annotation ambiguity or required external knowledge.
- Baseline comparison: BMAM outperforms the re-run MemOS baseline of 73.90%, with gains of +17.5% on single-hop and +13.1% on multi-hop. Its temporal accuracy (62.31%) is lower than Memobase (81.20%) and re-run MemOS (71.34%). On PersonaMem, BMAM (48.9%) outperforms re-run MemOS (33.98%) and approaches Mem0 (53.88%). On LongMemEval, MemOS-1031 reports 77.8% overall versus BMAM's 67.6%.
- Component capacities: hippocampus 20k, temporal lobe 70k, amygdala 1k, prefrontal working-memory buffer 10 items, basal ganglia 500. Capacities are upper bounds, with low-priority items pruned when budgets are reached.
- Protocol details: MemOS was re-run with GPT-4o-mini to match BMAM's backend; all experiments were run three times and reported numbers are means; background processes (consolidation, reconsolidation, pruning) were disabled during evaluation so memory state is frozen after ingestion.
Methodology in Plain English
The authors start from the observation in cognitive science that human memory is not one store but several specialized systems running at different speeds. They map that structure onto an agent: a coordinator routes information between a fast episodic store (with explicit timelines), a slower semantic store (a knowledge graph of stable facts), a salience module that tags important or identity-relevant content, and a control module that classifies incoming queries (temporal, identity, preference, factual), keeps a small working-memory buffer, and decides which sources to consult.
Memory moves through a six-stage lifecycle: perception, encoding, consolidation, reflection, reconsolidation, and forgetting. Frequent, high-confidence episodes are promoted into semantic memory; retrieved evidence can update semantic facts via an exponential moving average with update rate λ, damping noisy evidence. When a query arrives, the system retrieves candidates from each source in parallel and fuses the ranked lists using reciprocal rank fusion, with weights that can be reweighted if uncertainty or salience signals warrant extra retrieval rounds.
Evaluation uses four benchmarks with the same protocol as MemOS (official scripts and judge prompts), resetting persistent memory between independent units (e.g., LoCoMo conversation groups or individual users) while preserving it within each unit, and disabling all background learning at test time. Ablations disable one brain-region component at a time.
Why This Matters
The paper reframes long-horizon memory failure as a diagnosable condition with named sub-types — temporal, semantic, and identity erosion — rather than a generic "context limit" problem. That framing connects specific architecture choices to specific failure modes, which is a more useful design methodology than adding memory volume.
Real-world applications:
- Personal assistants and companion agents that must remember who a user is across months — the identity and preference preservation that PrefEval and PersonaMem measure.
- Customer support and CRM agents that need cross-session recall of past issues plus accurate knowledge updates when policies change.
- Healthcare or advisory agents where the ordering and duration of past events (temporal grounding) matters for advice quality.
- Enterprise knowledge agents that consolidate repeated interactions into a stable shared knowledge graph instead of re-retrieving raw documents.
Industry relevance: The 72.90% personalized rate with only 0.1% inconsistency violations on PrefEval is directly relevant to production personalization, and the finding that higher-order control components add overhead on simple queries but are indispensable for temporal reasoning suggests that adaptive component activation — turning subsystems on or off by query complexity — is a practical cost lever.
Future Directions
- Temporal normalization and entity-aware retrieval. Error analysis shows temporal confusion (38%) and entity ambiguity (28%) dominate failures, so better date handling and entity disambiguation are the authors' stated priorities.
- Cross-session integration. Multi-session LongMemEval performance (52.6%) lags well behind within-session recall, making improved cross-session consolidation an open challenge.
- Multi-modal and embodied memory. Extending BMAM beyond text to images and audio, and to embodied agents where temporal grounding ties to physical actions.
- Adaptive component activation. Dynamically activating or bypassing brain-region components based on query complexity, motivated by the finding that prefrontal and temporal-lobe modules add routing overhead on simple factual queries.
- Untangling component coupling. The paper attributes counterintuitive ablation results to components being deeply interdependent, leaving open how to measure each component's true contribution.
Target Audience
Researchers and engineers building LLM agents that operate over extended interaction horizons, particularly those working on agent memory architectures, retrieval systems, or personalization. It is also relevant to researchers interested in cognitive-science-inspired AI design, and to practitioners who need to choose among memory frameworks — the baseline tables comparing MemOS, Mem0, MIRIX, Zep, Memobase, Supermemory, and MemU provide a useful reference. Readers seeking rigorous statistical comparison should note that most baseline numbers are reported from the MemOS paper rather than re-run, something the authors flag as making those comparisons indicative rather than strictly comparable.
Authors’ abstract
Language-model-based agents operating over extended interaction horizons face persistent challenges in preserving temporally grounded information and maintaining behavioral consistency across sessions, a failure mode we term soul erosion. We present BMAM (Brain-inspired Multi-Agent Memory), a general-purpose memory architecture that models agent memory as a set of functionally specialized subsystems rather than a single unstructured store. Inspired by cognitive memory systems, BMAM decomposes memory into episodic, semantic, salience-aware, and control-oriented components that operate at complementary time scales. To support long-horizon reasoning, BMAM organizes episodic memories along explicit timelines and retrieves evidence by fusing multiple complementary signals. Experiments on the LoCoMo benchmark show that BMAM achieves 78.45 percent accuracy under the standard long-horizon evaluation setting, and ablation analyses confirm that the hippocampus-inspired episodic memory subsystem plays a critical role in temporal reasoning.