neomemx 0.1.2

A high-performance memory library for AI agents with semantic search
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Core domain types for the agent memory system

pub mod change;
pub mod fact;
pub mod operation;
pub mod scope;

pub use change::{ChangeLog, ChangeType};
pub use fact::{ContentHash, EmbeddingVector, FactId, MetadataMap, StoredFact};
pub use operation::{FactOperation, IngestionOutcome, ModificationResult, RetrievalResult};
pub use scope::{ScopeFilter, ScopeIdentifiers};