Skip to content

Release 0.2.0

Compare
Choose a tag to compare
@jhen0409 jhen0409 released this 27 Mar 03:10
· 240 commits to main since this release

0.2.0 (2023-03-27)

This version contains breaking change, you will need to migrate the transcribe usage after upgrading to v0.2:

v0.1.x:

const { result } = await whisperContext.transcribe(sampleFilePath, options)

To (v0.2):

const { stop, promise } = whisperContext.transcribe(sampleFilePath, options)
const { result } = await promise

Features

  • Implement abort method for transcribe (#7) (7d39694)
  • implement transcribe realtime method (#10) (f63c49f)