Crate coqui_stt

Source
Expand description

A safe wrapper around the Coqui STT API

Typically, to use this,

§Features

No features are enabled by default.

  • raw-bindings: exposes the coqui-stt-sys crate at the root under the same name.

Structs§

CandidateTranscript
A single transcript computed by the model, including a confidence value and the metadata for its constituent tokens.
Metadata
An array of CandidateTranscript objects computed by the model.
Model
A trained Coqui STT model.
OwnedCandidateTranscript
An owned variant of CandidateTranscript.
OwnedMetadata
An owned variant of Metadata.
OwnedTokenMetadata
An owned variant of TokenMetadata.
Stream
Streaming inference state.
TokenMetadata
Stores text of an individual token, along with its timing information.

Enums§

Error
All possible errors returned by the C API plus some Rust errors.

Type Aliases§

Result
Type alias of the standard Result type to this crate’s Error type