Sync from internal repo (2026/07/13)#163
Merged
Merged
Conversation
GitOrigin-RevId: c43188ee72156a76561031084ce181d35aaad8b2
bgotthold-aai
approved these changes
Jul 13, 2026
bgotthold-aai
left a comment
Collaborator
There was a problem hiding this comment.
Add basic description
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.
Copybara sync from the internal monorepo (
master) →main. Bumps the SDK 4.35.4 → 4.36.3.This sync introduces the synchronous transcription surface (
client.sync) and its follow-up refinements.4.36.0 —
client.syncclient.syncfor synchronous transcription: audio in, transcript out in a single request against the sync API host — no job id, no polling. Accepts a local file path, raw bytes, aBlob, or a readable stream (not URLs), plus config forprompt,keyterms_prompt,conversation_context,language_codes, and raw PCM (sample_rate+channels).SyncTranscriber.warm()to pre-open the connection so the nexttranscribe()skips the DNS + TCP + TLS handshake.SyncTranscriptErrorwithstatus, a machine-readableerrorCode, andretryAfter(seconds) on 429/503 responses.syncBaseUrlclient option (defaults tohttps://sync.assemblyai.com).4.36.1 — rename + default model
client.direct→client.sync,Direct*types →Sync*,directBaseUrl→syncBaseUrl;word_boost→keyterms_prompt.universal-3-5-pro(sent as theX-AAI-Modelrouting header).4.36.2 — opt-in word timestamps
timestampssync config option. Whentrue, sync words carry accuratestart/endtimings at a small latency cost. By default no timings are computed or returned;SyncWord.start/endare now optional and absent unless requested.4.36.3 — canonical routes
/v1sync API routes (/v1/transcribe,/v1/warm); the unprefixed paths remain served for older SDK versions.Generated by Copybara from internal
master. Merging this PR publishes 4.36.3 to npm.