pub mod config;
pub mod model;
pub mod tasks;
#[cfg(test)]
mod tests;
pub use config::WhisperConfig;
pub use model::{
Conv1d, WhisperAudioEncoder, WhisperDecoder, WhisperDecoderLayer, WhisperEncoderLayer,
WhisperForConditionalGeneration, WhisperModel,
};
pub use tasks::{
SpeechRecognitionTask, WhisperDecoderWrapper, WhisperError, WhisperForAudioClassification,
WhisperTimestamp,
};