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