stt-cli 0.2.1

Speech to text Cli using Groq API and OpenAI API
// src/audio/mod.rs
//
// This module contains all audio-related functionality including:
// - Audio buffer management
// - Device management and selection
// - Audio processing and streaming

pub mod buffer;
pub mod commands;
pub mod constants;
pub mod device;
pub mod device_manager;
pub mod stream;
pub mod stream_manager;

// Re-export key types for convenience
pub use stream_manager::{AudioStreamError, AudioStreamManager};

// Note: These modules are used directly through their paths
// rather than through re-exports to avoid confusion