memrust 0.5.4

Agent-native memory engine: hybrid retrieval (HNSW + BM25 + entity graph + recency) behind remember/recall/forget, with HTTP and MCP interfaces
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod embed;
pub mod engine;
pub mod index;
pub mod rerank;
pub mod server;
pub mod store;
pub mod summarize;
pub mod types;

pub use engine::MemoryEngine;
pub use types::{
    MemoryFilter, MemoryKind, MemoryRecord, RecallHit, RecallRequest, RecallStrategy,
    RememberRequest,
};