[research] · · 1 min read
Oracle: A New Framework for Long-Term Agent Memory and Personalization
Researchers propose Oracle, a memory system that lets AI agents maintain persistent, structured user profiles across sessions without retraining.
By ByteBulletin Editors · Editorial Team
A new paper on arXiv introduces Oracle, a framework designed to give AI agents persistent, long-term memory — a capability that could significantly improve personalization without the cost of fine-tuning or repeated context windows.
Current agent systems largely treat each interaction as stateless, forcing users to re-state preferences or relying on massive context windows that degrade performance and cost more. Oracle tackles this by storing structured user memories — preferences, facts, and interaction history — in an external memory store that agents query at inference time.
The framework separates memory into three tiers:
- Episodic memory: records of past interactions and their outcomes
- Semantic memory: extracted facts and user preferences
- Procedural memory: learned interaction patterns and tool usage
Memories are indexed using a combination of embeddings and symbolic metadata, allowing the agent to retrieve only the most relevant context for a given query. Oracle also includes a consolidation mechanism that periodically summarizes and prunes older memories, preventing storage bloat.
In experiments on a suite of personal assistant tasks — including travel planning, scheduling, and preference-guided recommendation — Oracle-equipped agents outperformed both context-window baselines and simpler retrieval-augmented generation (RAG) approaches. The paper reports up to a 34% improvement in task success rate and a 41% reduction in user corrections, while using an order of magnitude less context than a full-history window.
The work is significant because it addresses a known bottleneck in agent usability: the inability to learn from past interactions. As AI agents move from single-turn assistants to persistent digital coworkers, memory architectures like Oracle will be essential.
The code is not yet released, but the paper describes the architecture in sufficient detail for implementation.
SHARE
RELATED
[research] ·
Self-Improving Agent Systems: A New Framework for Iterative Autonomy
Researchers propose a method for AI agents to autonomously refine their own capabilities through structured feedback loops.
[research] ·
Hacked Files Reveal Suno Scraped Millions of Tracks from YouTube and Other Platforms for AI Training
Leaked source code suggests the AI music generator built its training dataset by ripping audio from protected platforms, including YouTube Music and Deezer, amid ongoing copyright lawsuits.
[research] ·
Sticky Routing MoE: Reducing Expert Switching for More Efficient Inference
New research proposes sticky routing for mixture-of-experts models, keeping tokens on the same expert across layers to cut communication overhead and improve throughput.