gemini_memory_rs/evals/
mod.rs

1//! The fixture-driven quality harness.
2//!
3//! Memory quality is not something a type system can hold up. These are the
4//! measurements that decide whether a change to ranking, extraction or policy
5//! made B better or merely different: a hand-written corpus, a set of cases
6//! stating what should happen, and the thresholds from the design's acceptance
7//! criteria enforced as tests.
8
9pub mod fixtures;
10pub mod harness;
11pub mod metrics;
12
13pub use fixtures::{
14    IngestionCase, RetrievalCase, corpus, eval_user, ingestion_cases, retrieval_cases,
15};
16pub use harness::{IngestionReport, RetrievalReport, run_ingestion_eval, run_retrieval_eval};