//! L3 verification via cross-encoder reranking.
//!
//! Given a query and candidate `CacheEntry`s, score them with [`Reranker`](crate::embedding::Reranker)
//! and decide whether the best candidate is above the configured threshold.
//!
//! Note: [`CrossEncoderScorer`] treats `CacheEntry::payload_blob` as UTF-8 candidate text.
/// Scoring/verification errors.
/// Cross-encoder scorer.
/// Scoring result types.
pub use ScoringError;
pub use CrossEncoderScorer;
pub use ;