rustmem 0.3.0

A lightweight Rust alternative to mem0 — long-term memory for AI agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod config;
pub mod embedding;
pub mod extract;
pub mod graph;
pub mod memory;
pub mod store;

// Re-export key types for convenience
pub use config::AppConfig;
pub use graph::{GraphStore, Relation};
pub use memory::MemoryManager;
pub use store::{MemoryRecord, MemoryStore, SearchResult};