1 2 3 4 5 6 7 8 9 10
//! AI commentary generation functionality pub mod generator; pub mod style; pub mod traits; // Re-export types for convenience pub use generator::{Commentary, CommentaryInput, CommentaryOutput}; pub use style::CommentaryStyle; pub use traits::CommentaryGenerator;