stt-cli 0.2.1

Speech to text Cli using Groq API and OpenAI API
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use thiserror::Error;

#[derive(Error, Debug)]
pub enum Error {
    #[error("Platform-specific error: {0}")]
    PlatformError(String),

    #[error("Window detection failed: {0}")]
    WindowDetection(String),

    #[error("Text insertion failed: {0}")]
    InsertionFailed(String),

    #[error("Unsupported platform operation")]
    UnsupportedPlatform,
}