zeph-sanitizer 0.22.3

Content sanitization, exfiltration guard, PII filtering, and quarantine for Zeph
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-FileCopyrightText: 2026 Andrei G <bug-ops>
// SPDX-License-Identifier: MIT OR Apache-2.0

//! Audit signal types emitted by sanitizer subsystems for trajectory-level accumulation.
//!
//! These types are consumed by `TrajectoryRiskAccumulator` in `zeph-memory` to maintain
//! a rolling per-session risk score without coupling the sanitizer to the memory crate.
//!
//! The canonical definitions live in [`zeph_common::audit`]; this module re-exports them
//! for backward compatibility with existing `zeph_sanitizer::audit` import paths.

pub use zeph_common::audit::{AuditSignal, AuditSignalType, Severity};