1 2 3 4 5 6 7 8 9 10 11
//! Swift-RS AI: AI/ML inference layer //! //! Provides fraud detection, anomaly detection, and intelligent message mapping //! using local LLM/ML inference (ONNX/Torch). pub mod fraud; pub mod mapping; pub mod models; pub use fraud::FraudDetector; pub use mapping::MessageMapper;