Files
myWiki/concepts/long-term-interactive-memory.md

50 lines
1.9 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: "Long-Term Interactive Memory"
created: 2026-06-25
updated: 2026-06-25
type: concept
tags: ["memory", "chat-assistant", "personalization", "benchmark"]
sources:
- "[[longmem-eval-2025]]"
---
# Long-Term Interactive Memory
Long-Term Interactive Memory 是 LLM 聊天助手在持续用户交互中积累、回忆和推理个人知识的能力——区别于短期的上下文窗口记忆和静态的知识库检索。
## 定义
三个关键属性:
1. **Long-Term长期性**:跨时间跨度(天/月/年),不是单次对话
2. **Interactive交互性**:在用户-AI 对话中动态积累,而非被动加载的静态文档
3. **Memory记忆**:不仅存储,还需回忆 + 推理(综合、更新、遗忘)
## 为什么关键
- **个性化**:心理咨询、秘书服务等场景高度依赖长期积累的用户背景和偏好
- **可靠性**:不整合用户历史会导致不准确甚至矛盾的回复
- **信任**:用户期望助手"记住"而不是反复询问相同信息
## 三种实现路线
| 路线 | 方法 | 代表系统 |
|------|------|---------|
| Long-Context | 直接将全部历史喂入 LLM | GPT-4-128k, Gemini-1M |
| Memory Module | 可微分记忆模块嵌入模型 | MemNN, Memformer |
| Context Compression | 压缩 → 索引 → 检索RAG 思路) | [[atlas-memory-system]], MemGPT |
LongMemEval 的评测框架与路线 3Context Compression + RAG对齐每个交互会话被顺序处理、存储、通过索引和检索机制按需访问。
## 与 Atlas 的关系
| 维度 | Atlas (Agent 记忆系统) | LongMemEval (评测基准) |
|------|------|------|
| 关注点 | 记忆系统实现(存储+召回) | 记忆能力评测5 种能力) |
| 输出 | 召回结果 | QA 准确度 |
| 互补 | 可被 LongMemEval 评测 | 可指导 Atlas 优化方向 |
## 参考
- [[longmem-eval-2025]]
- [[atlas-memory-system]]
- [[agent-memory-taxonomy]]