MLE-5321: docs(audio): broaden supported file formats to include ogg, opus, aac#269
Merged
rishabh-bhargava merged 1 commit intomainfrom May 7, 2026
Merged
Conversation
Verified end-to-end on api.together.ai for both /audio/transcriptions and /audio/translations across nvidia/parakeet-tdt-0.6b-v3, openai/whisper-large-v3, and mistralai/Voxtral-Mini-3B-2507: HTTP 200 + correct LibriSpeech transcript on .ogg, .opus, and .aac. The decoder is shared across STT models, so the broader format set was already supported in practice — just not documented. Surfaced via the STT feature-test framework (formats.unsupported test on together-voice repo).
✱ Stainless preview buildsThis PR will update the go openapi python terraform typescript
|
sbeurnier
approved these changes
May 7, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds
.ogg,.opus, and.aacto the documented supported-format list for/audio/transcriptionsand/audio/translations. The decoder is shared across STT models, so these formats were already supported in practice — just not in the docs.Verification
End-to-end on
api.together.ai, both endpoints, three models, three new formats — 9 combinations all return HTTP 200 with the correct LibriSpeech reference transcript:/audio/transcriptionsnvidia/parakeet-tdt-0.6b-v3/audio/transcriptionsopenai/whisper-large-v3/audio/transcriptionsmistralai/Voxtral-Mini-3B-2507/audio/translationsopenai/whisper-large-v3Reproduction:
Test plan
mintlify-docs/openapi.yamlper the team's replication setup)How this was found
Surfaced by the
formats.unsupportedtest in the new STT feature-test framework (benchmarks/stt/features/on thetogether-voicerepo). The test originally probed for a 4xx on.ogg(per the docs) and instead got 200 + a correct transcription, so I expanded the probe to.opus/.aacacross all three STT models and both endpoints to confirm.A follow-up commit will need to update the hand-written guide at
mintlify-docs/docs/speech-to-text.mdx:189-193(separate PR on the mintlify-docs repo) since that page lists the formats independently of the OpenAPI spec.🤖 Generated with Claude Code