mem0-rust 0.2.0

Rust implementation of mem0 - Universal memory layer for AI Agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Core memory management module.
//!
//! This module provides:
//! - Memory struct for managing memories
//! - Fact extraction from messages
//! - History tracking

mod manager;
mod prompts;

pub use manager::Memory;
pub use prompts::{FACT_EXTRACTION_PROMPT, MEMORY_UPDATE_PROMPT};