do-memory-core 0.1.31

Core episodic learning system for AI agents with pattern extraction, reward scoring, and dual storage backend
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Capacity management for episodic storage.
//!
//! Implements capacity-constrained episodic storage with relevance-weighted
//! eviction based on the GENESIS research (arXiv Oct 2025).
//!
//! The capacity manager enforces storage limits and intelligently evicts
//! low-relevance episodes using a combination of quality scores and recency.

pub mod manager;
pub mod policy;

pub use manager::CapacityManager;
pub use policy::EvictionPolicy;