entrenar/monitor/inference/safety_andon/mod.rs
1//! Safety Andon for Inference (ENT-110)
2//!
3//! Toyota Way 自働化 (Jidoka): Automation with human touch.
4//! Inference-specific Andon rules: low confidence, high latency, drift.
5
6mod andon;
7mod emergency;
8mod sil;
9
10#[cfg(test)]
11mod tests;
12
13// Re-export all public types
14pub use andon::SafetyAndon;
15pub use emergency::EmergencyCondition;
16pub use sil::SafetyIntegrityLevel;