Release 17.7.0: add voice transcription#174
Merged
Merged
Conversation
Generated by Fern CLI Version: unknown Generators: - fernapi/fern-java-sdk: 4.9.2
🌿 Generated with Fern
…5591c1aa8cabef10 [skip ci]
…5591c1aa8cabef10 [skip ci]
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit b09fed0. Configure here.
kerbearasaurus
approved these changes
Jun 23, 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.

17.6.0 -> 17.7.0
Adds the Voice transcription SDK surface for
POST /transcribe, including raw audio upload support and typed voice errors. Minor bump because the release is additive.Added
PhenomlClient.voice().voice().transcribe(...)— new sync method that uploads raw audio bytes (WAV, FLAC, MP3, or OGG/WebM Opus) toPOST /transcribeand returns aTranscribeResponse, supporting up to ~5 minutes of audio per request.AsyncPhenomlClient.voice().voice().transcribe(...)— new async method for the same voice transcription endpoint.TranscribeRequest— new request type carrying raw audio bytes plus an optional BCP-47languagelist.TranscribeResponse.getTranscript()— new response accessor exposing the full transcript returned by the voice service.BadRequestError,UnauthorizedError,PaymentRequiredError,ContentTooLargeError,BadGatewayError,ServiceUnavailableError,GatewayTimeoutError) thrown by the voice service.Migration notes
No migration required; this release only adds the voice transcription surface.
Note
Low Risk
Additive, auto-generated client surface with no breaking changes to existing APIs; risk is limited to consumers adopting the new voice upload path and billing/auth behavior on the server.
Overview
SDK 17.7.0 (Fern regeneration from updated API spec) adds voice transcription and bumps package/version metadata (
build.gradle,ClientOptionsUser-Agent, OpenAPI embed).Callers get
client.voice().voice().transcribe(...)on bothPhenomlClientandAsyncPhenomlClient, backed by newVoiceClient/AsyncVoiceClient(plus raw variants).transcribeposts raw audio asapplication/octet-streamtoPOST /transcribe, with optional BCP-47languagequery params viaTranscribeRequest, and returnsTranscribeResponse(getTranscript()).Voice failures map to new typed exceptions (400, 401, 402, 413, 502, 503, 504). Changelog,
reference.md, andcode-examples.jsondocument the new endpoint.Reviewed by Cursor Bugbot for commit b09fed0. Bugbot is set up for automated code reviews on this repo. Configure here.