do-memory-core 0.1.30

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
//! Episode semantic summarization.
//!
//! Provides semantic summarization of episodes into concise, searchable summaries
//! with key concepts, critical steps, and optional embeddings for retrieval.

mod extractors;
mod helpers;
mod summarizer;
mod types;

pub use extractors::{extract_key_concepts, extract_key_steps};
pub use helpers::{add_salient_features_summary, extract_step_number, is_stopword};
pub use summarizer::SemanticSummarizer;
pub use types::EpisodeSummary;