Skip to main content

zeph_core/quality/
mod.rs

1// SPDX-FileCopyrightText: 2026 Andrei G <bug-ops>
2// SPDX-License-Identifier: MIT OR Apache-2.0
3
4//! MARCH self-check quality pipeline.
5//!
6//! Provides post-response factual consistency checking via a two-stage
7//! Proposer → Checker pipeline.
8//!
9//! See [`pipeline::SelfCheckPipeline`] for the entry point.
10
11pub mod checker;
12pub mod config;
13pub mod parser;
14pub mod pipeline;
15pub mod prompts;
16pub mod proposer;
17pub mod types;
18
19#[cfg(test)]
20mod tests;
21
22pub use config::QualityConfig;
23pub use pipeline::{RetrievedContext, SelfCheckPipeline};
24pub use types::SelfCheckReport;