What's Changed
Added flexible timestamp grouping modes for better transcription output quality.
Updated API signatures:
- Both models now support optional TimestampMode
parakeet.transcribe_file(path, Some(TimestampMode::Words))?parakeet.transcribe_samples(audio, sample_rate, channels, Some(TimestampMode::Sentences))?
note: - fully backward compatible, passing None defaults to TimestampMode::Tokens (previous behavior).
PR:
- Include different timestamps options by @altunenes in #15
Full Changelog: v0.1.7...v0.1.8