gemini-memory-rs 2.0.0

Contextual memory engine for Gemini Live — OKF markdown memory, BM25 retrieval, session ingestion and reconciliation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! The fixture-driven quality harness.
//!
//! Memory quality is not something a type system can hold up. These are the
//! measurements that decide whether a change to ranking, extraction or policy
//! made B better or merely different: a hand-written corpus, a set of cases
//! stating what should happen, and the thresholds from the design's acceptance
//! criteria enforced as tests.

pub mod fixtures;
pub mod harness;
pub mod metrics;

pub use fixtures::{
    IngestionCase, RetrievalCase, corpus, eval_user, ingestion_cases, retrieval_cases,
};
pub use harness::{IngestionReport, RetrievalReport, run_ingestion_eval, run_retrieval_eval};