Expand description
A safe wrapper around the Coqui STT API
Typically, to use this,
- start by creating a
Model
, - if you have a scorer to load, call
enable_external_scorer
, - then call
speech_to_text
to run the algorithm.
§Features
No features are enabled by default.
raw-bindings
: exposes thecoqui-stt-sys
crate at the root under the same name.
Structs§
- A single transcript computed by the model, including a confidence value and the metadata for its constituent tokens.
- An array of
CandidateTranscript
objects computed by the model. - A trained Coqui STT model.
- An owned variant of
CandidateTranscript
. - An owned variant of
Metadata
. - An owned variant of
TokenMetadata
. - Streaming inference state.
- Stores text of an individual token, along with its timing information.
Enums§
- All possible errors returned by the C API plus some Rust errors.