Skip to main content

swift_rs_ai/
lib.rs

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).
5
6pub mod fraud;
7pub mod mapping;
8pub mod models;
9
10pub use fraud::FraudDetector;
11pub use mapping::MessageMapper;