https://arxiv.org/abs/2606.24775
https://github.com/OpenDataBox/MemoryData
2026.6.23
[ Are We Ready For An Agent-Native Memory System? ]
이 자료는 거대언어모델(LLM) 에이전트가 정보를 장기적으로 기억하고 관리할 수 있도록 돕는 에이전트 네이티브 메모리 시스템을 데이터 관리 관점에서 체계적으로 분석한 연구 보고서입니다. 저자들은 기존의 단순한 정보 검색 방식을 넘어 데이터의 저장, 추출, 검색, 유지보수라는 4대 핵심 모듈로 구성된 통합 분석 프레임워크를 제안하며, 12개의 대표적인 메모리 시스템을 다각도로 평가합니다. 특히 지식 그래프, 계층적 구조, 하이브리드 설계 등 다양한 아키텍처가 작업의 특성에 따라 성능과 비용 측면에서 뚜렷한 트레이드오프를 보인다는 점을 실험적으로 입증하였습니다. 최종적으로 이 논문은 단순한 성능 지표를 넘어 운영 비용, 업데이트 견고성, 장기 실행 안정성을 모두 고려한 차세대 에이전트 메모리 시스템의 설계 방향성을 제시하는 것을 목적으로 합니다.


<저장소 레이아웃>
project-root/
├── main.py # unified experiment entry point
├── config/ # flattened presets: reference, sequential, topological, hybrid
├── benchmark/
│ ├── memoryagentbench/ # MemoryAgentBench loaders and benchmark configs
│ ├── locomo/ # LoCoMo configs and JSON loader
│ ├── longbench/ # LongBench proportional-subset support
│ └── membench/ # MemBench slice configs and loader
├── evaluation/
│ └── longmemeval/ # retained LongMemEval sidecar evaluation helpers
├── methods/ # method runtimes grouped by the paper taxonomy
│ ├── embedding_rag/ # reference dense-retrieval baseline
│ ├── memagent/ mem0/ memochat/ # sequential context architectures
│ ├── cognee/ graph_rag/ hipporag/ memtree/ raptor/ zep/ zep_local/ # structural topological architectures
│ └── a_mem/ everos/ letta/ lightmem/ memorag/ memoryos/ self_rag/ simplemem/ MemOS/ # multi-paradigm hybrid architectures
├── utils/ # shared runtime utilities, including long-context and BM25 reference paths
├── requirements.txt # dependency manifest for Linux/macOS
└── requirements-windows.txt # dependency manifest for Windows





















'07.AI > 5. AI 자율성' 카테고리의 다른 글
| 에이전트 AI - Z.ai, GLM-5.2 오픈 에이전트 (0) | 2026.07.01 |
|---|---|
| AI 해석력 - Gemini, 추론(Reasoning) 은 왜 단순한 질문에도 유효한가? (0) | 2026.06.29 |
| 피지컬 AI (Physical AI) - ANSI, 자율주행과 첨단제조 분야 (0) | 2026.06.29 |
| 피지컬 AI (Physical AI) - 자율주행 웨이모(Waymo) (0) | 2026.06.29 |
| 에이전트 AI - The New Stack, 2026년 4가지 코딩 도구 비교 분석 (1) | 2026.06.26 |


