1 2 3 4 5 6 7 8 9 10 11 12
//! Utility modules for oxirs-chat //! //! This module provides various utility functions and helpers for the chat system. pub mod nlp; pub mod ranking; pub mod stats; // Re-export commonly used utilities pub use nlp::*; pub use ranking::*; pub use stats::*;