hoosh 1.3.0

AI inference gateway — multi-provider LLM routing, local model serving, speech-to-text, and token budget management
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Data Loss Prevention — PII scanning, content classification, privacy-aware routing.
//!
//! Feature-gated behind `dlp`. When enabled, scans inference request content
//! for PII and sensitive patterns, classifying requests into privacy levels
//! that drive routing decisions (e.g., confidential data → local models only).

mod patterns;
mod scanner;

pub use patterns::BuiltinPatterns;
pub use scanner::{ClassificationLevel, DlpConfig, DlpScanner, PatternMatch, ScanResult};