//! Python bindings for inference module
//!//! Provides access to:
//! - Prediction: Point predictions with optional intervals
//! - ConformalPredictor: Distribution-free prediction intervals
modpredict;usepyo3::prelude::*;/// Register all inference classes with the module
pubfnregister(m:&Bound<'_, PyModule>)->PyResult<()>{predict::register(m)}