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
14
15
16
//! # Learning Module
//!
//! Asynchronous learning components for pattern extraction and analysis.
//!
//! This module provides non-blocking pattern extraction through a queue-based
//! worker pool system, allowing episode completion to return quickly while
//! pattern extraction happens in the background.

pub mod queue;

mod config;
mod stats;

pub use config::QueueConfig;
pub use queue::PatternExtractionQueue;
pub use stats::QueueStats;