v0.1.2
What's Changed
- Added implementation for SuppressTokensFilter by @jkrukowski in #14
- You can now use the
SuppressTokensFilter
protocol via the decoding options:
let options = DecodingOptions( supressTokens: [220, 50257] // array of tokens you want to supress ) let transcribeResult = try await whisperKit.transcribe(audioPath: path, decodeOptions: options)
- You can now use the
- Fixes and cleanup from early feedback by @ZachNagengast in #15
- New Makefile command:
make download-model MODEL=tiny
to download only the specified model instead of the entire model repo - This release also includes the new macOS 14 github runner for CI.
- New Makefile command:
New Contributors
- @jkrukowski made their first contribution in #14
Full Changelog: v0.1.1...v0.1.2