whisper_stream_rs/lib.rs
1//! whisper-stream-rs
2//!
3//! A library for performing real-time transcription using Whisper ASR models.
4//! It handles audio capture, processing, and streaming results.
5
6mod audio;
7mod model;
8mod error;
9mod audio_utils;
10mod score;
11mod whisper_stream;
12// New public API
13pub use whisper_stream::{WhisperStream, Event};
14pub use error::WhisperStreamError;
15pub use model::Model;