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
// src/platform/mod.rs
//
// This module provides platform-specific functionality for text insertion.
// It handles window detection, cursor management, and keyboard simulation.
//

pub mod text_handler;

pub use text_handler::InsertOptions;
pub use text_handler::PlatformTextInserterHandler;
pub use text_handler::StubTextInserter;
pub use text_handler::TextInserter;
pub use text_handler::EnigoTextInserter;