Skip to content

v0.4.1

Release Date: 2026-02-14

Patch release adding STT conformance tests for batch transcription methods.

Highlights

  • STT conformance tests for TranscribeFile and TranscribeURL batch transcription methods

Tests

  • TranscribeFile conformance test for local file transcription (c441944)
  • TranscribeURL conformance test for remote URL transcription (c441944)

Usage

Provider implementations can now test batch transcription by setting TestAudioFile and TestAudioURL in the conformance test config:

providertest.RunAll(t, providertest.Config{
    Provider:      p,
    TestAudioFile: "/path/to/test.mp3",
    TestAudioURL:  "https://example.com/test.mp3",
    // ...
})

Full Changelog | Compare to v0.4.0