v0.4.1¶
Release Date: 2026-02-14
Patch release adding STT conformance tests for batch transcription methods.
Highlights¶
- STT conformance tests for
TranscribeFileandTranscribeURLbatch transcription methods
Tests¶
TranscribeFileconformance test for local file transcription (c441944)TranscribeURLconformance 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",
// ...
})