Releases: Bear-03/vosk-rs
Releases · Bear-03/vosk-rs
v0.3.1
v0.3.0
- Add support for Batch recognition (PR).
- [BREAKING] Redesign
LogLevel
to adequately represent Kaldi log levels (PR). - [BREAKING]
Recognizer::accept_waveform
methods now returnResult<T, AcceptWaveformError>
(previouslyT
).
Vosk takes the buffer length as ani32
so the user should be able to handle errors that arise due to the
buffer being longer thani32::MAX
. - [BREAKING]
Model::find_word
now returnsOption<u32>
(previouslyOption<u16>
) to adjust it to the values
that Vosk can return.