AutoViewMem: 自配置正交视图用于对话长期记忆
摘要
AutoViewMem是一个数据驱动的框架,它将长期对话记忆组织为自配置语义视图,以提升LLM代理的检索和个性化能力,并在基准测试中表现出色。
arXiv:2609.21940v1 Announce Type: new
Abstract: Long-term memory is essential for large language model (LLM) agents to maintain consistency and personalization over extended interactions. Existing memory systems typically rely on fixed granularities or static schemas, but these designs struggle when heterogeneous information, such as preferences, events, constraints, and temporal updates, is embedded in a single mixed representation. The resulting semantic interference makes top-K retrieval sensitive to noise and often leaves relevant evidence poorly ranked. We present AutoViewMem, a data-driven framework that organizes long-term conversational memory into self-configuring, low-overlap semantic views before indexing. AutoViewMem discovers candidate views from interaction traces, selects a compact complementary view set, and uses these views to guide write-time structured extraction of provenance-grounded memories. This representation-first design moves semantic disentanglement from retrieval time to write time, allowing standard top-K similarity search to retrieve focused evidence without explicit routing or iterative retrieval. We further apply offline consolidation to improve memory compactness and consistency. Experiments on the LoCoMo and PersonaMem benchmarks, under both Qwen3-8B and Qwen3-14B backbones, show that AutoViewMem improves long-horizon question answering and personalization over strong memory baselines while preserving a simple inference pipeline.
查看缓存全文
缓存时间: 2026/09/21 09:35
# AutoViewMem: Self-Configuring Orthogonal Views for Conversational Long-Term Memory
Source: [https://arxiv.org/html/2609.21940](https://arxiv.org/html/2609.21940)
Xijun QuZhicheng GuXiaoshu ChenDuanyang YuanYanning HouSihang Zhou††thanks:Corresponding author\.Jianxing GongJian HuangYang Mei\*Affiliation:National University of Defense Technology, Changsha, ChinaE\-mail[\{caozijie,zhousihang12,yangmei\}@nudt\.edu\.cn](mailto:{caozijie,zhousihang12,yangmei}@nudt.edu.cn)
###### Abstract
Long\-term memory is essential for large language model \(LLM\) agents to maintain consistency and personalization over extended interactions\. Existing memory systems typically rely on fixed granularities or static schemas, but these designs struggle when heterogeneous information—such as preferences, events, constraints, and temporal updates—is embedded in a single mixed representation\. The resulting semantic interference makes top\-KKretrieval sensitive to noise and often leaves relevant evidence poorly ranked\. We present AutoViewMem, a data\-driven framework that organizes long\-term conversational memory into self\-configuring, low\-overlap semantic views before indexing\. AutoViewMem discovers candidate views from interaction traces, selects a compact complementary view set, and uses these views to guide write\-time structured extraction of provenance\-grounded memories\. This representation\-first design moves semantic disentanglement from retrieval time to write time, allowing standard top\-KKsimilarity search to retrieve focused evidence without explicit routing or iterative retrieval\. We further apply offline consolidation to improve memory compactness and consistency\. Experiments on the LoCoMo and PersonaMem benchmarks, under both Qwen3\-8B and Qwen3\-14B backbones, show that AutoViewMem improves long\-horizon question answering and personalization over strong memory baselines while preserving a simple inference pipeline\.
###### Keywords:
Long\-term memory Conversational agents Multi\-view memory Retrieval Memory consolidation\.
## 1Introduction
Large language model \(LLM\)\-driven conversational agents are increasingly deployed in long\-term companionship, personalized assistance, and enterprise support\[[29](https://arxiv.org/html/2609.21940#bib.bib4),[21](https://arxiv.org/html/2609.21940#bib.bib3),[22](https://arxiv.org/html/2609.21940#bib.bib5)\]\. In these scenarios, interactions spanning weeks or months quickly exceed any finite context window\. Even with long\-context models, naively supplying the full history is rarely effective: topic drift, evolving user states, and a long\-tail distribution of salient facts mean that large amounts of low\-relevance context increase cost and noise while crucial details remain buried in distant tokens\[[19](https://arxiv.org/html/2609.21940#bib.bib2),[21](https://arxiv.org/html/2609.21940#bib.bib3),[25](https://arxiv.org/html/2609.21940#bib.bib6)\]\.
To address this, recent systems adopt external non\-parametric memory under a write–retrieve–generate paradigm\[[15](https://arxiv.org/html/2609.21940#bib.bib1),[29](https://arxiv.org/html/2609.21940#bib.bib4),[22](https://arxiv.org/html/2609.21940#bib.bib5),[25](https://arxiv.org/html/2609.21940#bib.bib6),[6](https://arxiv.org/html/2609.21940#bib.bib9)\]\. The central design problem is often framed as memory granularity: fine\-grained units fragment evidence and hurt recall, while coarse\-grained units inject irrelevant content\. This has motivated multi\-granularity methods such as MemGAS\[[26](https://arxiv.org/html/2609.21940#bib.bib8)\]and segmentation\-and\-compression pipelines such as SeCom\[[23](https://arxiv.org/html/2609.21940#bib.bib7)\]\.
However, granularity alone does not fully explain retrieval failures\. Long conversations are intrinsically heterogeneous—preferences, plans, facts, events, and temporal updates often coexist in the same dialogue span\. When such mixed\-content memories are embedded in a single representation space, semantically unrelated information interferes during similarity search, creating blind spots and a persistent coverage–noise trade\-off\[[19](https://arxiv.org/html/2609.21940#bib.bib2),[21](https://arxiv.org/html/2609.21940#bib.bib3),[23](https://arxiv.org/html/2609.21940#bib.bib7),[26](https://arxiv.org/html/2609.21940#bib.bib8),[6](https://arxiv.org/html/2609.21940#bib.bib9),[9](https://arxiv.org/html/2609.21940#bib.bib21)\]\. This points to a representation question that arises*before*retrieval: how should memory be organized before indexing so that heterogeneous semantics remain accessible under diverse future queries?
We proposeAutoViewMem\(Figure[1](https://arxiv.org/html/2609.21940#S3.F1)\), a data\-driven framework that organizes long\-term memory into self\-configuring, low\-overlap semantic views\. A view is orthogonal to granularity: granularity controls memory unit size, whereas a view defines a semantic projection over the same evidence\. AutoViewMem discovers candidate views from interaction traces, selects a compact complementary set, and uses these views to guide write\-time structured extraction with timestamps and provenance\. The key design choice is to reduce semantic entanglement before items enter the vector index—once memories are written under complementary views, a simple global top\-KKsearch can construct focused contexts without explicit routing or iterative retrieval\. An offline graph\-based consolidation step further improves compactness and consistency\.
We evaluate AutoViewMem on the LoCoMo\[[21](https://arxiv.org/html/2609.21940#bib.bib3)\]and PersonaMem\[[11](https://arxiv.org/html/2609.21940#bib.bib26)\]benchmarks\. Results show that AutoViewMem improves answer quality over representative long\-term memory baselines in several settings, including Mem0\[[6](https://arxiv.org/html/2609.21940#bib.bib9)\], MemGAS\[[26](https://arxiv.org/html/2609.21940#bib.bib8)\], MemoryBank\[[29](https://arxiv.org/html/2609.21940#bib.bib4)\], and A\-mem\[[27](https://arxiv.org/html/2609.21940#bib.bib10)\]\. The gains are supported by ablations and retrieval diagnostics showing that low\-overlap multi\-view organization improves the ranking and separation of relevant evidence under a fixed retrieval budget\.
Our main contributions are:
- •A representation\-first perspective on conversational memory,arguing that semantic interference in mixed\-content representations is as central as granularity to long\-horizon retrieval failures\.
- •AutoViewMem,a self\-configuring framework that discovers complementary low\-overlap views from streaming interactions and uses them to structure memory before indexing, enabling effective top\-KKretrieval without complex query\-time control\.
- •Empirical evidenceacross LoCoMo and PersonaMem, with ablations and retrieval diagnostics, that write\-time view\-based organization improves long\-horizon QA and personalization over representative baselines\.
## 2Related Work
##### Retrieval and long\-term memory\.
Retrieval grounds LLM outputs in external evidence: sparse retrievers such as BM25 remain strong lexical baselines\[[24](https://arxiv.org/html/2609.21940#bib.bib13)\], while dense retrieval, contrastive retrievers, and RAG\-style pipelines make semantic matching the standard interface for external memory\[[13](https://arxiv.org/html/2609.21940#bib.bib14),[15](https://arxiv.org/html/2609.21940#bib.bib1),[10](https://arxiv.org/html/2609.21940#bib.bib15),[20](https://arxiv.org/html/2609.21940#bib.bib16)\]\. Building on this, a growing body of work equips LLM agents with long\-term memory through memory paging, external modules, time\-aware updating, hierarchical storage, and scalable consolidation\[[22](https://arxiv.org/html/2609.21940#bib.bib5),[25](https://arxiv.org/html/2609.21940#bib.bib6),[29](https://arxiv.org/html/2609.21940#bib.bib4),[6](https://arxiv.org/html/2609.21940#bib.bib9),[12](https://arxiv.org/html/2609.21940#bib.bib17),[27](https://arxiv.org/html/2609.21940#bib.bib10),[7](https://arxiv.org/html/2609.21940#bib.bib25),[28](https://arxiv.org/html/2609.21940#bib.bib22),[16](https://arxiv.org/html/2609.21940#bib.bib23),[4](https://arxiv.org/html/2609.21940#bib.bib28),[3](https://arxiv.org/html/2609.21940#bib.bib29),[5](https://arxiv.org/html/2609.21940#bib.bib27)\]\. These systems mainly focus on how memory is stored, consolidated, or accessed at scale\. Our work is complementary: rather than designing a new retriever or memory manager, we study how memory should be*represented before indexing*, since retrieval quality in long\-horizon dialogue depends on whether stored items preserve semantically focused evidence rather than entangled mixed\-content spans\[[19](https://arxiv.org/html/2609.21940#bib.bib2),[21](https://arxiv.org/html/2609.21940#bib.bib3),[23](https://arxiv.org/html/2609.21940#bib.bib7),[26](https://arxiv.org/html/2609.21940#bib.bib8)\]\. This is salient for agent memory, where the storage distribution is created online by the system itself rather than given as a fixed corpus\.
##### Structured memory, schema induction, and benchmarks\.
Our work also relates to schema induction and structured memory construction\. Prior work studies how reusable structures can be induced from unstructured text\[[1](https://arxiv.org/html/2609.21940#bib.bib18),[17](https://arxiv.org/html/2609.21940#bib.bib19)\], and that slot structures can be induced directly from dialogue without manual design\[[8](https://arxiv.org/html/2609.21940#bib.bib20)\]; in conversational memory, entity–attribute records and preference frames are often more reusable than raw logs under topic drift\[[29](https://arxiv.org/html/2609.21940#bib.bib4),[23](https://arxiv.org/html/2609.21940#bib.bib7)\]\. Unlike approaches with fixed templates or manually specified fields, AutoViewMem induces lightweight semantic views online and uses them to guide write\-time extraction while keeping retrieval simple\. On the benchmark side, LoCoMo provides a controlled testbed for very long\-term dyadic dialogue\[[21](https://arxiv.org/html/2609.21940#bib.bib3)\], and newer benchmarks extend toward multi\-party, cross\-topic, and temporally evolving settings\[[9](https://arxiv.org/html/2609.21940#bib.bib21),[18](https://arxiv.org/html/2609.21940#bib.bib24)\], motivating evaluation of both final QA quality and the evidence\-ranking behavior of the memory store\.
## 3Methodology
Figure 1:The AutoViewMem architecture\. The system processes a conversation stream through online view discovery, selects an orthogonal view set via DPP, and performs schema\-guided memory extraction and retrieval to provide context for the LLM agent\.We propose AutoViewMem \(Figure[1](https://arxiv.org/html/2609.21940#S3.F1)\), a two\-stage memory architecture with \(i\) an online view induction\-and\-writing pipeline and \(ii\) offline consolidation for compactness and consistency\. Online, the system incrementally induces lightweight reusable schemas—*views*—from a conversation stream and uses them to guide structured memory writing\. Offline, it deduplicates and consolidates extracted memories through graph clustering and LLM\-based adjudication\. The query\-time interface remains conventional: the retriever searches a single index, while the main organization work happens before indexing\.
##### Views and memory items\.
A viewvvis a lightweight schema with a name, a set of slots, and an extraction template that instructs the LLM to populate those fields from dialogue\[[23](https://arxiv.org/html/2609.21940#bib.bib7),[29](https://arxiv.org/html/2609.21940#bib.bib4)\]\. We use*orthogonal*pragmatically: views are intended to be complementary and low\-overlap under semantic similarity, not strictly orthogonal in the linear\-algebraic sense\. For each useruuwith conversation stream𝒮u\\mathcal\{S\}\_\{u\}, we maintain an active view set𝒱u∗\\mathcal\{V\}\_\{u\}^\{\*\}and a structured memory storeℳu\\mathcal\{M\}\_\{u\}where each item carries its source span, timestamp, and view tag\. Organizing memory under multiple focused views reduces the semantic entanglement that arises when heterogeneous content from the same dialogue span is stored as one undifferentiated representation\.
### 3\.1Online Adaptive Memory Learning
The online learner follows a Divergence–Convergence strategy with three phases: \(i\)View Discovery, which accumulates weak signals from the stream before committing to a stable schema basis; \(ii\)View Convergence, which aggregates noisy candidates into a compact active view set; and \(iii\)Schema\-guided Extraction, which writes structured memories conditioned on the selected views\.
#### Phase 1: View Discovery
The conversation arrives as an ordered sequence of dialogue chunks\. Instead of treating each chunk as an isolated memory write, the system first accumulates weak signals such as repeated entities, stable preferences, and recurring constraints\. Periodically, everyN=50N=50chunks, an LLM proposes1010candidate views𝒱~u=\{v1,…,v10\}\\tilde\{\\mathcal\{V\}\}\_\{u\}=\\\{v\_\{1\},\\dots,v\_\{10\}\\\}from the recent interaction trace\. Each candidate view contains a name, slots, and an extraction template, making the candidate directly usable as a write\-time extraction instruction\.
#### Phase 2: View Convergence
The candidate set𝒱~u\\tilde\{\\mathcal\{V\}\}\_\{u\}is noisy and redundant\. We normalize exact\-duplicate instructions and encode each remaining candidate with the same dense encoder used by the memory index\. We select a compact, diverse active set𝒱u∗\\mathcal\{V\}\_\{u\}^\{\*\}ofK=10K=10views using a Determinantal Point Process \(DPP\)\[[14](https://arxiv.org/html/2609.21940#bib.bib11),[2](https://arxiv.org/html/2609.21940#bib.bib12)\]that discourages views inducing similar extraction behavior; the non\-DPP ablation \(Section[4\.3](https://arxiv.org/html/2609.21940#S4.SS3)\) uses uniform random selection\. For each viewviv\_\{i\}withℓ2\\ell\_\{2\}\-normalized embeddingziz\_\{i\}, theLL\-ensemble kernel isLij=qi\(zi⊤zj\)qjL\_\{ij\}=q\_\{i\}\(z\_\{i\}^\{\\top\}z\_\{j\}\)q\_\{j\}with uniform qualityqiq\_\{i\}, and we favor subsets with largedet\(LS\)\\det\(L\_\{S\}\)\. Each selected seed is expanded with its top\-30 nearest neighbors and summarized by the LLM into a canonical extraction instruction\.
##### View normalization\.
Candidate views are deduplicated at the instruction\-string level, and semantically similar candidates are rewritten into one concise extraction instruction\. Every extracted item stores its view tag, timestamp, and provenance\. Views are not forced to be mutually exclusive; overlapping projections are handled downstream by deduplicating on provenance identity \(see Section[3\.2](https://arxiv.org/html/2609.21940#S3.SS2)\)\.
#### Phase 3: Adaptive Extraction
Given𝒱u∗\\mathcal\{V\}\_\{u\}^\{\*\}, for each dialogue chunkxx, the LLM evaluates the chunk under each active view and returns structured facts only when evidence is relevant to that view—allowing the same evidence to be projected into multiple complementary views when appropriate\. The resulting items carry structured fields, view tags, timestamps, and provenance pointers\.
At query time, we perform standard top\-KKdense retrieval over all memory items in a single unified index\[[15](https://arxiv.org/html/2609.21940#bib.bib1),[13](https://arxiv.org/html/2609.21940#bib.bib14)\]\. Retrieved items are merged under a token budget with lightweight deduplication before being passed to the LLM\. When multiple retrieved items share the same underlying evidence, only the first occurrence contributes to retrieval metrics, preventing multi\-view projections from artificially inflating coverage\.
### 3\.2Offline Memory Consolidation
Online extraction prioritizes responsiveness and recall, while offline consolidation improves compactness and semantic consistency\. The stage is deliberately separated from online writing: it runs asynchronously and does not change the query\-time retrieval interface\.
We first remove exact duplicates by hashing canonicalized text and/or structured representations, keeping one record per duplicate and merging metadata \(view tags, occurrence counts, provenance\)\. We then build an undirected similarity graphG=\(V,E\)G=\(V,E\)over items with an edge\(i,j\)\(i,j\)whencos\(ei,ej\)≥0\.9\\cos\(e\_\{i\},e\_\{j\}\)\\geq 0\.9; connected components define candidate consolidation batches, and oversized components are recursively split by increasingτ\\tau\(e\.g\.,0\.90→0\.9990\.90\\rightarrow 0\.999\)\. Similarity only proposes candidates, never forces merging: records encoding conflicting claims, different time versions, or distinct concrete details remain separate unless the consolidation prompt can safely resolve them\. Because embedding similarity alone is insufficient for safe merging, for each cluster an LLM rewrites the grouped items into one or more canonical records according to three cases—Containment\(one item subsumes another\),Complementarity\(non\-overlapping facts merge\), andIndependence despite similarity\(similar items expressing different facts stay separate\)\[[29](https://arxiv.org/html/2609.21940#bib.bib4)\]\. Canonical records retain merged provenance and replace redundant variants, reducing memory growth while preserving the evidence needed to audit or reverse a consolidation\.
## 4Experiments
We evaluate AutoViewMem on LoCoMo\[[21](https://arxiv.org/html/2609.21940#bib.bib3)\]and PersonaMem\[[11](https://arxiv.org/html/2609.21940#bib.bib26)\], testing whether multi\-view write\-time organization improves long\-horizon QA, which components drive the gains, and whether the resulting store improves evidence ranking under a fixed retrieval budget\.
### 4\.1Experimental Setup
##### Benchmarks and metrics\.
LoCoMo\[[21](https://arxiv.org/html/2609.21940#bib.bib3)\]has 200–400 turn conversations with 1,540 questions spanning Multi\-Hop, Temporal, Open\-Domain, and Single\-Hop reasoning; we report BLEU\-1 \(B1\), F1, and LLM\-Judge \(J\), category\-wise and overall, using a unified Qwen3\-8B judge\.PersonaMem\[[11](https://arxiv.org/html/2609.21940#bib.bib26)\]is a personalization benchmark; we use its 32k\-context tier \(589 multiple\-choice questions\) and report accuracy under the official deterministic protocol, with per\-capability breakdown\.
##### Retrieval evaluation\.
AutoViewMem may produce multiple view\-specific items grounded in the same evidence, so item\-level retrieval can overestimate performance by rewarding redundant hits\. We evaluate at the*evidence level*using provenance pointers: each memory item records its source span IDs, and at evaluation we map retrieved items to provenance identity and match against ground\-truth dialogue turns\. For each query we retrieve top\-K0=30K\_\{0\}=30items per speaker\-specific store, merge, and deduplicate by evidence identity\. We report the no\-positive rate—the fraction of queries where no relevant evidence appears in the retrieved pool\.
##### Backbones and baselines\.
We evaluate with Qwen3\-8B and Qwen3\-14B backbones, used for both memory processing and generation, against representative systems—A\-mem\[[27](https://arxiv.org/html/2609.21940#bib.bib10)\], Mem0\[[6](https://arxiv.org/html/2609.21940#bib.bib9)\], MemGAS\[[26](https://arxiv.org/html/2609.21940#bib.bib8)\], and MemoryBank\[[29](https://arxiv.org/html/2609.21940#bib.bib4)\]—and a Full\-History oracle\. All methods share the same embedding \(e5\-base\-v2\) and LLM backend, with temperature 0, max 8,192 generation tokens, and hyperparameters tuned on a held\-out validation split\.
### 4\.2Main Results
Tables[1](https://arxiv.org/html/2609.21940#S4.T1)and[2](https://arxiv.org/html/2609.21940#S4.T2)report end\-to\-end results under both backbones\.
On LoCoMo, AutoViewMem attains the best overall Judge under both backbones and the strongest overall F1 and BLEU\-1, surpassing Full History on Judge under Qwen3\-8B and trailing it only narrowly under Qwen3\-14B\. Lexical gains are most pronounced on Temporal and Single\-Hop questions, indicating that view\-organized memory yields more grounded answers\.
On PersonaMem\-32k, AutoViewMem attains the best overall accuracy under both backbones, outperforming the strongest baseline by over five points and Full History by nearly fourteen points under Qwen3\-14B\. Its advantage concentrates on capabilities requiring synthesis rather than mere recall—generalization, preference recommendation, suggestion, and recall of reasons—and widens with the larger backbone, suggesting more capable generators make better use of view\-organized memory\.
Since AutoViewMem uses standard top\-KKretrieval, these gains stem primarily from how memories are written and consolidated rather than from a more complex query\-time controller\.
Table 1:Main Results on LoCoMo \(1,540 questions\) under Qwen3\-8B and Qwen3\-14B generation, scored by a unified Qwen3\-8B judge\. Each category and the overall block report LLM\-Judge \(J\), F1, and BLEU\-1 \(B1\)\. Best results among external\-memory methods are inbold; Full History is a full\-context oracle \(not bolded\)\.Table 2:Main Results on PersonaMem\-32k \(589 questions\) under Qwen3\-8B and Qwen3\-14B generation\. We report overall accuracy \(%\) under the official deterministic multiple\-choice protocol and per\-capability accuracy: recall of user\-shared facts \(R\-Fact\), recall of mentioned content \(R\-Ment\), preference tracking \(Track\), recall of reasons \(R\-Rsn\), preference recommendation \(P\-Rec\), generalization \(Gen\), and suggestion \(Sugg\)\. Best results among external\-memory methods are inbold; Full History is a full\-context oracle \(not bolded\)\.
### 4\.3Efficiency and Ablation Analysis
##### Performance–cost trade\-off\.
Figure[2](https://arxiv.org/html/2609.21940#S4.F2)\(left\) compares answer quality and token cost\. AutoViewMem improves quality over lower\-cost baselines \(Mem0, MemoryBank\) at a comparable retrieval budget, indicating that better write\-time organization increases context usefulness without expensive query\-time control\.
Figure 2:Left: performance–cost trade\-off on LoCoMo \(x\-axis: average token cost, log scale; y\-axis: Judge score\)\. Right: effect of the top\-KKretrieval budget on Judge score, comparing AutoViewMem with Mem0\.
##### Ablation settings\.
We conduct ablations on the Qwen3\-8B backbone: \(1\)Single\-view Structured, which removes multi\-view organization while retaining structured extraction; \(2\)w/o DPP Selection, which replaces DPP\-based selection with random view selection; and \(3\)w/o Graph Consolidation, which removes offline consolidation\. These variants isolate whether the improvement comes from structure alone, diversity\-aware view selection, or post\-hoc memory cleanup\.
Table 3:Ablation on the Qwen3\-8B backbone\. We report overall LLM\-Judge \(J\), F1, BLEU\-1 \(B1\), and the no\-positive rate \(no\-pos%, lower is better: the fraction of queries with no relevant evidence in the retrieved pool\)\. All variants are evaluated under the same fixedK0=30K\_\{0\}=30retrieval budget\.
##### Ablation results\.
Table[3](https://arxiv.org/html/2609.21940#S4.T3)reports variants under a fixedK0=30K\_\{0\}=30budget\. The full model attains the best Judge \(0\.837\) and lowest no\-positive rate \(5\.14%\), meaning it finds gold evidence for more queries\. Removing multi\-view organization gives the weakest Judge and BLEU\-1, confirming structured extraction alone is insufficient\. Removing consolidation drops J to 0\.801 with the worst no\-positive rate \(9\.83%\), showing redundancy control matters at a tight budget\. The random\-selection variant \(w/o DPP\) is competitive on lexical metrics but has a higher no\-positive rate \(7\.03%\) than the full model, consistent with DPP acting as a diversity prior rather than the sole source of gains\.
### 4\.4Retrieval Analysis
##### Sensitivity to retrieval budget\.
Varying the top\-KKcontext budget \(Figure[2](https://arxiv.org/html/2609.21940#S4.F2), right\), both AutoViewMem and Mem0 improve withKKand then saturate; AutoViewMem remains consistently better, especially at smaller budgets—focused views make early retrieved context less noisy\.
### 4\.5Case Study: User\-Adaptive Semantic Projections of the Same Evidence
Table[4](https://arxiv.org/html/2609.21940#S4.T4)illustrates how AutoViewMem differs from a fixed general\-purpose memory extractor\. The current utterance is intentionally ambiguous: it never explicitly mentions football or the user’s previous difficulty finding partners\. A fixed extraction prompt therefore preserves mainly the surface\-level facts\. In contrast, AutoViewMem interprets the same evidence through user\-adaptive views induced from the interaction history, exposing multiple semantically distinct aspects of the utterance\. Importantly, history\-dependent interpretations are expressed conservatively when they are not directly confirmed by the current dialogue\.
##### Source dialogue\.
“*That grassy area is close to the office, and the lights are still on at ten\. Li and the others finally agreed to come along\. It doesn’t matter if we’re not that good; it would be nice just to chat afterward\. At last, I won’t have to do it alone every time\.*”
##### Relevant interaction history\.
The user frequently plays football after work\. Since moving, they have repeatedly mentioned difficulty finding people to play with and that practicing alone is less enjoyable\.
Table 4:Case study on an ambiguous utterance\. A fixed general\-purpose prompt records only the surface\-level content, whereas AutoViewMem’s user\-adaptive views project the same evidence onto three semantically distinct aspects \(— = nothing exposed beyond surface extraction\)\. The first projection is stated tentatively because the football reading is supported by the interaction history but is not confirmed in the current utterance\.
##### Interpretation\.
The fixed prompt mainly records*what was explicitly said*\. AutoViewMem additionally separates*what the situation is about*,*what the user values in it*, and*why it matters emotionally*\. These memories are not produced by simply storing more text: they arise from applying different user\-adaptive semantic projections to the same dialogue evidence\. The first projection is marked as tentative because the football interpretation is supported by interaction history but is not explicitly confirmed in the current utterance\.
## 5Conclusion
We presented AutoViewMem, a self\-configuring multi\-view framework for long\-term conversational memory\. Beyond granularity, our work highlights memory organization as a key factor in long\-horizon retrieval: storing heterogeneous content in a single representation space introduces semantic interference that destabilizes top\-KKsearch\. By organizing interaction streams into complementary low\-overlap views at write time, AutoViewMem supports provenance\-grounded extraction and effective retrieval with a simple pipeline, with offline consolidation further improving compactness\.
Results on LoCoMo and PersonaMem under both Qwen3\-8B and Qwen3\-14B backbones show that this representation\-first design improves over strong external\-memory baselines\. Analyses confirm low\-overlap multi\-view organization as the main source of improvement, enabling more stable retrieval without complex query\-time control\.
AutoViewMem has limitations: it depends on the underlying LLM for view discovery, extraction, and consolidation; view convergence runs periodically from buffered traces rather than fully online, which may slow adaptation under rapid distribution shift; offline consolidation can over\-merge when subtle temporal changes should keep items separate, though provenance retention reduces this risk; and evaluation is limited to LoCoMo and PersonaMem, requiring broader validation on multi\-party, multilingual, or safety\-critical settings\. We will release our code, prompts, and evaluation scripts upon acceptance\.
## References
- \[1\]N\. Chambers and D\. Jurafsky\(2010\)A database of narrative schemas\.InProceedings of the Seventh International Conference on Language Resources and Evaluation \(LREC’10\),Cited by:[§2](https://arxiv.org/html/2609.21940#S2.SS0.SSS0.Px2.p1.1)\.
- \[2\]L\. Chen, G\. Zhang, and E\. Zhou\(2018\)Fast greedy MAP inference for determinantal point process to improve recommendation diversity\.InAdvances in Neural Information Processing Systems,Cited by:[§3\.1](https://arxiv.org/html/2609.21940#S3.SS1.SSSx2.p1.1)\.
- \[3\]X\. Chen, S\. Zhou, K\. Liang, and X\. Liu\(2025\)Distilling reasoning ability from large language models with adaptive thinking\.IEEE Transactions on Neural Networks and Learning Systems36\(11\),pp\. 19820–19833\.Cited by:[§2](https://arxiv.org/html/2609.21940#S2.SS0.SSS0.Px1.p1.1)\.
- \[4\]X\. Chen, S\. Zhou, K\. Liang, J\. Wu, X\. Liu, D\. Li, and K\. Lu\(2025\)Thinking on context: inductive relation prediction guided by the reasoning ability of large language models\.IEEE Transactions on Knowledge and Data Engineering37\(10\),pp\. 6202–6215\.Cited by:[§2](https://arxiv.org/html/2609.21940#S2.SS0.SSS0.Px1.p1.1)\.
- \[5\]X\. Chen, S\. Zhou, K\. Liang, T\. Zhou, and X\. Liu\(2026\)ImgCoT: compressing long chain of thought into compact visual tokens for efficient reasoning of large language model\.arXiv preprint arXiv:2601\.22730\.Cited by:[§2](https://arxiv.org/html/2609.21940#S2.SS0.SSS0.Px1.p1.1)\.
- \[6\]P\. Chhikara, D\. Khant, S\. Aryan, T\. Singh, and D\. Yadav\(2025\)Mem0: building production\-ready AI agents with scalable long\-term memory\.arXiv preprint arXiv:2504\.19413\.Cited by:[§1](https://arxiv.org/html/2609.21940#S1.p2.1),[§1](https://arxiv.org/html/2609.21940#S1.p3.1),[§1](https://arxiv.org/html/2609.21940#S1.p5.1),[§2](https://arxiv.org/html/2609.21940#S2.SS0.SSS0.Px1.p1.1),[§4\.1](https://arxiv.org/html/2609.21940#S4.SS1.SSS0.Px3.p1.1)\.
- \[7\]J\. Fang, X\. Deng, H\. Xu, Z\. Jiang, Y\. Tang, Z\. Xu, S\. Deng, Y\. Yao, M\. Wang, S\. Qiao, H\. Chen, and N\. Zhang\(2026\)LightMem: lightweight and efficient memory\-augmented generation\.InInternational Conference on Learning Representations,Note:arXiv:2510\.18866Cited by:[§2](https://arxiv.org/html/2609.21940#S2.SS0.SSS0.Px1.p1.1)\.
- \[8\]J\. D\. Finch, B\. Zhao, and J\. D\. Choi\(2024\)Transforming slot schema induction with generative dialogue state inference\.InProceedings of the 25th Annual Meeting of the Special Interest Group on Discourse and Dialogue,pp\. 317–324\.Cited by:[§2](https://arxiv.org/html/2609.21940#S2.SS0.SSS0.Px2.p1.1)\.
- \[9\]C\. Hu, T\. Li, X\. Gao, H\. Chen, Y\. Bai, D\. Xu, T\. Lin, X\. Li, Y\. Han, J\. Pei, and Y\. Deng\(2026\)Evaluating long\-horizon memory for multi\-party collaborative dialogues\.arXiv preprint arXiv:2602\.01313\.Cited by:[§1](https://arxiv.org/html/2609.21940#S1.p3.1),[§2](https://arxiv.org/html/2609.21940#S2.SS0.SSS0.Px2.p1.1)\.
- \[10\]G\. Izacard, M\. Caron, L\. Hosseini, S\. Riedel, P\. Bojanowski, A\. Joulin, and E\. Grave\(2022\)Unsupervised dense information retrieval with contrastive learning\.Transactions on Machine Learning Research\.Cited by:[§2](https://arxiv.org/html/2609.21940#S2.SS0.SSS0.Px1.p1.1)\.
- \[11\]B\. Jiang, Z\. Hao, Y\. Cho, B\. Li, Y\. Yuan, S\. Chen, L\. Ungar, C\. J\. Taylor, and D\. Roth\(2025\)Know me, respond to me: benchmarking LLMs for dynamic user profiling and personalized responses at scale\.InConference on Language Modeling \(COLM\),Note:arXiv:2504\.14225Cited by:[§1](https://arxiv.org/html/2609.21940#S1.p5.1),[§4\.1](https://arxiv.org/html/2609.21940#S4.SS1.SSS0.Px1.p1.1),[§4](https://arxiv.org/html/2609.21940#S4.p1.1)\.
- \[12\]J\. Kang, M\. Ji, Z\. Zhao, and T\. Bai\(2025\)Memory OS of AI agent\.InProceedings of the 2025 Conference on Empirical Methods in Natural Language Processing,pp\. 25961–25970\.Cited by:[§2](https://arxiv.org/html/2609.21940#S2.SS0.SSS0.Px1.p1.1)\.
- \[13\]V\. Karpukhin, B\. Oguz, S\. Min, P\. Lewis, L\. Wu, S\. Edunov, D\. Chen, and W\. Yih\(2020\)Dense passage retrieval for open\-domain question answering\.InProceedings of the 2020 Conference on Empirical Methods in Natural Language Processing \(EMNLP\),pp\. 6769–6781\.Cited by:[§2](https://arxiv.org/html/2609.21940#S2.SS0.SSS0.Px1.p1.1),[§3\.1](https://arxiv.org/html/2609.21940#S3.SS1.SSSx3.p2.1)\.
- \[14\]A\. Kulesza and B\. Taskar\(2012\)Determinantal point processes for machine learning\.Foundations and Trends in Machine Learning5\(2–3\),pp\. 123–286\.Cited by:[§3\.1](https://arxiv.org/html/2609.21940#S3.SS1.SSSx2.p1.1)\.
- \[15\]P\. Lewis, E\. Perez, A\. Piktus, F\. Petroni, V\. Karpukhin, N\. Goyal, H\. Küttler, M\. Lewis, W\. Yih, T\. Rocktäschel, S\. Riedel, and D\. Kiela\(2020\)Retrieval\-augmented generation for knowledge\-intensive NLP tasks\.InAdvances in Neural Information Processing Systems,Cited by:[§1](https://arxiv.org/html/2609.21940#S1.p2.1),[§2](https://arxiv.org/html/2609.21940#S2.SS0.SSS0.Px1.p1.1),[§3\.1](https://arxiv.org/html/2609.21940#S3.SS1.SSSx3.p2.1)\.
- \[16\]K\. Li, X\. Yu, Z\. Ni, Y\. Zeng, Y\. Xu, Z\. Zhang, X\. Li, J\. Sang, X\. Duan, X\. Wang, C\. Liu, and J\. Tan\(2026\)TiMem: temporal\-hierarchical memory consolidation for long\-horizon conversational agents\.arXiv preprint arXiv:2601\.02845\.Cited by:[§2](https://arxiv.org/html/2609.21940#S2.SS0.SSS0.Px1.p1.1)\.
- \[17\]S\. Li, R\. Zhao, M\. Li, H\. Ji, C\. Callison\-Burch, and J\. Han\(2023\)Open\-domain hierarchical event schema induction by incremental prompting and verification\.InProceedings of the 61st Annual Meeting of the Association for Computational Linguistics \(Volume 1: Long Papers\),pp\. 5677–5697\.Cited by:[§2](https://arxiv.org/html/2609.21940#S2.SS0.SSS0.Px2.p1.1)\.
- \[18\]Y\. Li, W\. Guo, L\. Zhang, R\. Xu, M\. Huang, H\. Liu, L\. Xu, Y\. Xu, and J\. Liu\(2026\)LoCoMo\-Plus: beyond\-factual cognitive memory evaluation framework for LLM agents\.arXiv preprint arXiv:2602\.10715\.Cited by:[§2](https://arxiv.org/html/2609.21940#S2.SS0.SSS0.Px2.p1.1)\.
- \[19\]N\. F\. Liu, K\. Lin, J\. Hewitt, A\. Paranjape, M\. Bevilacqua, F\. Petroni, and P\. Liang\(2024\)Lost in the middle: how language models use long contexts\.Transactions of the Association for Computational Linguistics12,pp\. 157–173\.Cited by:[§1](https://arxiv.org/html/2609.21940#S1.p1.1),[§1](https://arxiv.org/html/2609.21940#S1.p3.1),[§2](https://arxiv.org/html/2609.21940#S2.SS0.SSS0.Px1.p1.1)\.
- \[20\]K\. Luo, Z\. Liu, S\. Xiao, T\. Zhou, Y\. Chen, J\. Zhao, and K\. Liu\(2024\)Landmark embedding: a chunking\-free embedding method for retrieval augmented long\-context large language models\.InProceedings of the 62nd Annual Meeting of the Association for Computational Linguistics \(Volume 1: Long Papers\),pp\. 3268–3281\.Cited by:[§2](https://arxiv.org/html/2609.21940#S2.SS0.SSS0.Px1.p1.1)\.
- \[21\]A\. Maharana, D\. Lee, S\. Tulyakov, M\. Bansal, F\. Barbieri, and Y\. Fang\(2024\)Evaluating very long\-term conversational memory of LLM agents\.InProceedings of the 62nd Annual Meeting of the Association for Computational Linguistics \(Volume 1: Long Papers\),pp\. 13851–13870\.Cited by:[§1](https://arxiv.org/html/2609.21940#S1.p1.1),[§1](https://arxiv.org/html/2609.21940#S1.p3.1),[§1](https://arxiv.org/html/2609.21940#S1.p5.1),[§2](https://arxiv.org/html/2609.21940#S2.SS0.SSS0.Px1.p1.1),[§2](https://arxiv.org/html/2609.21940#S2.SS0.SSS0.Px2.p1.1),[§4\.1](https://arxiv.org/html/2609.21940#S4.SS1.SSS0.Px1.p1.1),[§4](https://arxiv.org/html/2609.21940#S4.p1.1)\.
- \[22\]C\. Packer, S\. Wooders, K\. Lin, V\. Fang, S\. G\. Patil, I\. Stoica, and J\. E\. Gonzalez\(2023\)MemGPT: towards LLMs as operating systems\.arXiv preprint arXiv:2310\.08560\.Cited by:[§1](https://arxiv.org/html/2609.21940#S1.p1.1),[§1](https://arxiv.org/html/2609.21940#S1.p2.1),[§2](https://arxiv.org/html/2609.21940#S2.SS0.SSS0.Px1.p1.1)\.
- \[23\]Z\. Pan, Q\. Wu, H\. Jiang, X\. Luo, H\. Cheng, D\. Li, Y\. Yang, C\. Lin, H\. V\. Zhao, L\. Qiu, and J\. Gao\(2025\)SeCom: on memory construction and retrieval for personalized conversational agents\.InInternational Conference on Learning Representations,Cited by:[§1](https://arxiv.org/html/2609.21940#S1.p2.1),[§1](https://arxiv.org/html/2609.21940#S1.p3.1),[§2](https://arxiv.org/html/2609.21940#S2.SS0.SSS0.Px1.p1.1),[§2](https://arxiv.org/html/2609.21940#S2.SS0.SSS0.Px2.p1.1),[§3](https://arxiv.org/html/2609.21940#S3.SS0.SSS0.Px1.p1.1)\.
- \[24\]S\. E\. Robertson and H\. Zaragoza\(2009\)The probabilistic relevance framework: BM25 and beyond\.Foundations and Trends in Information Retrieval3\(4\),pp\. 333–389\.Cited by:[§2](https://arxiv.org/html/2609.21940#S2.SS0.SSS0.Px1.p1.1)\.
- \[25\]W\. Wang, L\. Dong, H\. Cheng, X\. Liu, X\. Yan, J\. Gao, and F\. Wei\(2023\)Augmenting language models with long\-term memory\.InAdvances in Neural Information Processing Systems,Cited by:[§1](https://arxiv.org/html/2609.21940#S1.p1.1),[§1](https://arxiv.org/html/2609.21940#S1.p2.1),[§2](https://arxiv.org/html/2609.21940#S2.SS0.SSS0.Px1.p1.1)\.
- \[26\]D\. Xu, Y\. Wen, P\. Jia, Y\. Zhang, W\. Zhang, Y\. Wang, H\. Guo, R\. Tang, X\. Zhao, E\. Chen, and T\. Xu\(2025\)From single to multi\-granularity: toward long\-term memory association and selection of conversational agents\.arXiv preprint arXiv:2505\.19549\.Cited by:[§1](https://arxiv.org/html/2609.21940#S1.p2.1),[§1](https://arxiv.org/html/2609.21940#S1.p3.1),[§1](https://arxiv.org/html/2609.21940#S1.p5.1),[§2](https://arxiv.org/html/2609.21940#S2.SS0.SSS0.Px1.p1.1),[§4\.1](https://arxiv.org/html/2609.21940#S4.SS1.SSS0.Px3.p1.1)\.
- \[27\]W\. Xu, Z\. Liang, K\. Mei, H\. Gao, J\. Tan, and Y\. Zhang\(2025\)A\-mem: agentic memory for LLM agents\.InAdvances in Neural Information Processing Systems,Note:arXiv:2502\.12110Cited by:[§1](https://arxiv.org/html/2609.21940#S1.p5.1),[§2](https://arxiv.org/html/2609.21940#S2.SS0.SSS0.Px1.p1.1),[§4\.1](https://arxiv.org/html/2609.21940#S4.SS1.SSS0.Px3.p1.1)\.
- \[28\]N\. Zhang, X\. Yang, Z\. Tan, W\. Deng, and W\. Wang\(2026\)HiMem: hierarchical long\-term memory for LLM long\-horizon agents\.arXiv preprint arXiv:2601\.06377\.Cited by:[§2](https://arxiv.org/html/2609.21940#S2.SS0.SSS0.Px1.p1.1)\.
- \[29\]W\. Zhong, L\. Guo, Q\. Gao, H\. Ye, and Y\. Wang\(2024\)MemoryBank: enhancing large language models with long\-term memory\.Proceedings of the AAAI Conference on Artificial Intelligence38\(17\),pp\. 19724–19731\.Cited by:[§1](https://arxiv.org/html/2609.21940#S1.p1.1),[§1](https://arxiv.org/html/2609.21940#S1.p2.1),[§1](https://arxiv.org/html/2609.21940#S1.p5.1),[§2](https://arxiv.org/html/2609.21940#S2.SS0.SSS0.Px1.p1.1),[§2](https://arxiv.org/html/2609.21940#S2.SS0.SSS0.Px2.p1.1),[§3](https://arxiv.org/html/2609.21940#S3.SS0.SSS0.Px1.p1.1),[§3\.2](https://arxiv.org/html/2609.21940#S3.SS2.p2.1),[§4\.1](https://arxiv.org/html/2609.21940#S4.SS1.SSS0.Px3.p1.1)\.
#### Disclosure of Interests\.
The authors have no competing interests to declare that are relevant to the content of this article\.相似文章
AutoMem: 作为认知技能的记忆自动化学习
AutoMem 引入了一个框架,将记忆管理作为 LLM 的可训练技能进行自动化学习,通过优化记忆结构和熟练度,将长期任务的性能提升 2-4 倍。
从多模态经验中学会学习
本文介绍了AutoMMemo,一个使多模态智能体能够自动设计记忆机制(可表达为可执行的备忘录程序)以从多模态交互轨迹中学习的框架,在GUI/Web导航和视觉推理基准上优于无记忆和固定记忆基线。
AutoMem: 一种用于自动化记忆架构搜索的文本梯度递归自我改进框架
AutoMem 是一个文本梯度递归自我改进框架,用于LLM代理中的自动化记忆架构搜索,它发现任务自适应架构,这些架构在准确性和效率上超越了人类设计的基线。
@omarsar0: // AutoMem // 我非常喜欢这个元记忆的概念。(标记一下) 这项来自斯坦福的新研究将智能体的记忆…
这篇斯坦福研究论文介绍了AutoMem,这是一个将智能体记忆管理视为可训练技能的框架。通过分别优化记忆结构和熟练度,AutoMem在长周期任务上将基础智能体性能提升了2到4倍,使得一个32B开源权重模型能够与Claude Opus 4.5和Gemini 3.1 Pro Thinking等前沿系统竞争。
Cognis:面向对话式 AI 智能体的上下文感知记忆系统
Lyzr Cognis 推出统一开源记忆系统,融合 BM25 与 Matryoshka 向量搜索并支持版本感知写入,在 LoCoMo 与 LongMemEval 基准上实现 SOTA。