注册并分享邀请链接,可获得视频播放与邀请奖励。

cv usk
@cv_usk
AI / Software Research Notes AI Agent, LLMOps, MLOps, Software Architecture 投稿は個人の意見です。
加入 May 2026
279 正在关注    408 粉丝
Still calling an LLM for every single memory operation your agent makes? This paper splits that work between a "fast brain" and a "slow brain" instead. Title: Jev-Mem: System-One-Controlled Agentic Memory for Efficient AI Agents URL: Inspired by dual-process cognition (System One vs. System Two), Jev-Mem handles most memory operations with lightweight structured decisions and reserves the LLM for genuinely complex reasoning. Three highlights stand out. 🧠 Typed System-One control Frequent operations like typing, relation judgment, and query routing run through a lightweight interface that returns probabilities and labels instead of free-form text — the same control layer governs both memory construction and retrieval. 🕸️ A four-relation memory graph Memory is organized across semantic, temporal, causal, and entity relations, with retrieval budget allocated to whichever views matter most for a given query — avoiding wasted traversal. 📊 Accuracy and speed improve together On the LoCoMo benchmark, Jev-Mem scores 0.777 overall, an 11% gain over the best baseline, while building memory 6.6x faster (158 seconds) and answering queries 36.7% faster (0.93 seconds). What stands out to me is that separating control from reasoning improved accuracy and efficiency at the same time, not one at the expense of the other. #AIAgents# #MemoryArchitecture#
显示更多