arxiv-2410-10813 · paperLongMemEval: Benchmarking Chat Assistants on Long-Term Interactive Memory
Di Wu, Hongwei Wang, Wenhao Yu, Yuwei Zhang, Kai-Wei Chang, Dong Yu
Created: 2024 · Ingested: 2026-09-02
This source: LongMemEval: Benchmarking Chat Assistants on Long-Term Interactive Mem…How much the field cites it — very heavily cited in the last 12 months517 in the last 12 months · 588 totalpublished 2024checked 2026-09-04517 citations in the last 12 months · 588 total · checked 2026-09-04
https://arxiv.org/abs/2410.10813(opens in a new tab)In brief
Chat assistants with memory components lose most of their accuracy once user information is buried in a long, realistic interaction history, and long-context reading does not rescue them. LongMemEval supplies 500 hand-written questions across 7 types covering information extraction, multi-session reasoning, knowledge updates, temporal reasoning, and abstention, embedded in length-configurable task-oriented chat histories: LongMemEval S at ~115k tokens and LongMemEval M at 500 sessions (~1.5M tokens).
GPT-4o reading only the evidence sessions scores 0.870, but 0.606 on the full S history, a 30.3% drop; Llama 3.1 70B Instruct falls from 0.744 to 0.334 (55.1%). On a 97-question setting roughly 10x shorter than S, ChatGPT with GPT-4o scored 0.5773 and Coze 0.3299 against 0.9184 for offline reading with the same model.
Design choices were ablated along value, key, query, and reading strategy. Rounds beat whole sessions as the stored unit; expanding keys with extracted user facts added 9.4% recall@k and 5.4% accuracy; time-aware query expansion added 6.8%-11.3% recall on temporal questions, but only with GPT-4o as the expander. Chain-of-Note plus JSON formatting moved reading accuracy by as much as 10 absolute points even under oracle retrieval.
Ablations are matched on token budget, but the commercial-system numbers come from 97 manually driven conversations by 3 annotators, and questions were LLM-seeded then human-rewritten. If you build memory systems, this reframes retrieval quality and reading format as separate failure points.
Written from the abstract by claude-opus-5 on 2026-09-05, with every figure checked against it. Not a substitute for the paper.
Referenced by
Claims in this catalog that draw on this source, and whether as support or counterpoint.
- supportsCommercial assistants show a large accuracy drop when the relevant information sits in a long interaction history, especially for updates and multi-session reasoning.
- supportsA running summary buys continuity across a long conversation at the cost of specifics, because it is lossy compression by construction — so it helps with "what were we doing" and not with "what exactly did I say in turn 40." Keeping the raw turns retrievable alongside the summary covers the second case.