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
//! Pattern clustering and deduplication
//!
//! This module provides functionality for:
//! - K-means clustering of episodes by pattern similarity
//! - Pattern deduplication based on similarity scores
//! - Pattern merging with confidence scoring

pub mod clusterer;
pub mod tests;
pub mod types;

pub use clusterer::PatternClusterer;
pub use types::{ClusterCentroid, ClusteringConfig, EpisodeCluster};