swift-rs-ai 0.1.0

AI-powered fraud detection and risk scoring for SWIFT financial messages
Documentation
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;