vidsage-core 0.1.0

Core functionality for VidSage video processing and AI commentary generation
Documentation
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;