Skip to content

v0.1.2

Compare
Choose a tag to compare
@ZachNagengast ZachNagengast released this 05 Feb 20:07
· 155 commits to main since this release

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)
  • 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 Contributors

Full Changelog: v0.1.1...v0.1.2