paper-with-me

Papers

Agentic Context Management: Solving Agent Memory and Cost by Treating Them as Lifecycle and Architecture Problems

2026-07-23 · Gaurav Dadhich arxiv

Production AI agents' failures are less often due to an inability to reason well and more often because they cannot manage what is in their reasoning context: conversation histories, large prompts, large tool definitions, and ballooning tool outputs. Agents drown in their own accumulating history while paying a token cost that grows every turn, producing missing recalls within and across conversations. The incumbent response treats this as a storage-and-retrieval problem. We argue that framing is too narrow. Actively managing what an agent holds in mind is a lifecycle, not merely a store: it spans deciding what to remember, extracting and structuring it, choosing the right store per data type, consolidating and forgetting while preserving provenance, deciding what is relevant now, anticipating what is needed next, and compacting context to a budget without losing what matters. In serious production this operates not over a single user but across an organizational scope hierarchy. We name this discipline Agentic Context Management (ACM) and decompose it into five primitives: architecting, ingesting, scoping, anticipating, and compacting & consolidation. We then make the economic case: naive context accumulation grows token cost quadratically in conversation length, crude summarization buys linear cost at the price of an accuracy cliff, and only validated compaction achieves linear cost with preserved fidelity. We describe a reference implementation, Maximem Synap, that realizes the five primitives as a multi-tenant service and reports 92% on LongMemEval and 93.2% on LoCoMo under the configuration detailed in Section 6. We close with dimensions existing benchmarks do not yet capture, latency, token efficiency, and context-rot resistance, and the frontier of decision-level and organization-level context the category points toward.

📄 PDF Abstract BibTeX arXiv:2607.21503

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

Agentic Memory: Learning Unified Long-Term and Short-Term Memory Management for Large Language Model Agents

2026-01-05 · Yi Yu, Liuyi Yao, Yuexiang Xie, Qingquan Tan 외 arxiv

Large language model (LLM) agents face fundamental limitations in long-horizon reasoning due to finite context windows, making effective memory management critical. Existing methods typically handle long-term memory (LTM…

Reinforcement Learning

AtomMem : Learnable Dynamic Agentic Memory with Atomic Memory Operation

2026-01-13 · Yupeng Huo, Yaxi Lu, Zhong Zhang, Haotian Chen 외 arxiv

Equipping agents with memory is essential for solving real-world long-horizon problems. However, most existing agent memory mechanisms rely on static and hand-crafted workflows. This limits the performance and generaliza…

Reinforcement Learning

KAIROS: Stateful, Context-Aware Power-Efficient Agentic Inference Serving

2026-04-17 · Yichao Yuan, Mosharaf Chowdhury, Nishil Talati arxiv

Power has become a central bottleneck for AI inference. This problem is becoming more urgent as agentic AI emerges as a major workload class, yet prior power-management techniques focus almost entirely on single-turn LLM…

TaskGen: A Task-Based, Memory-Infused Agentic Framework using StrictJSON

2024-07-22 · John Chong Min Tan, Prince Saroj, Bharat Runwal, Hardik Maheshwari 외

TaskGen is an open-sourced agentic framework which uses an Agent to solve an arbitrary task by breaking them down into subtasks. Each subtask is mapped to an Equipped Function or another Agent to execute. In order to red…

Language ModelingLanguage ModellingLarge Language ModelManagement+4

A-MEM: Agentic Memory for LLM Agents

2025-02-17 · Wujiang Xu, Kai Mei, Hang Gao, Juntao Tan 외

While large language model (LLM) agents can effectively use external tools for complex real-world tasks, they require memory systems to leverage historical experiences. Current memory systems enable basic storage and ret…

Large Language Model