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
//! Step batching for efficient I/O
//!
//! Buffers execution steps in memory and flushes to storage when conditions are met,
//! reducing I/O overhead for episodes with many steps.

mod buffer;
mod config;
mod ops;

pub use buffer::StepBuffer;
pub use config::BatchConfig;