From 08a5921014690bc68064eefb2ef84c444465c76e Mon Sep 17 00:00:00 2001 From: AssemblyAI Date: Tue, 23 Jun 2026 09:56:55 -0600 Subject: [PATCH] Project import generated by Copybara. GitOrigin-RevId: f82b46aca1b2586e24b8d7edb69b5d954f9b536a --- README.md | 4 ++-- samples/streaming-dual-channel-mic-system/README.md | 2 +- samples/streaming-dual-channel-mic-system/main.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 85ecab1..c80f89a 100644 --- a/README.md +++ b/README.md @@ -313,13 +313,13 @@ const res = await client.transcripts.delete(transcript.id); ### Transcribe streaming audio -Refer to [AssemblyAI's streaming documentation](https://www.assemblyai.com/docs/getting-started/transcribe-streaming-audio) for full code examples. +Refer to [AssemblyAI's streaming documentation](https://www.assemblyai.com/docs/streaming/getting-started/transcribe-streaming-audio) for full code examples. Create the streaming transcriber. ```typescript const transcriber = client.streaming.transcriber({ - speechModel: "u3-rt-pro", + speechModel: "universal-3-5-pro", sampleRate: 16_000, formatTurns: true, }); diff --git a/samples/streaming-dual-channel-mic-system/README.md b/samples/streaming-dual-channel-mic-system/README.md index 318f7fd..62ea29b 100644 --- a/samples/streaming-dual-channel-mic-system/README.md +++ b/samples/streaming-dual-channel-mic-system/README.md @@ -227,7 +227,7 @@ const systemVad = await MicVAD.new({ }) const transcriber = client.streaming.transcriber({ - speechModel: "u3-rt-pro", + speechModel: "universal-3-5-pro", sampleRate: 16_000, channels: [{ name: "mic" }, { name: "system" }], channelAttribution: { diff --git a/samples/streaming-dual-channel-mic-system/main.ts b/samples/streaming-dual-channel-mic-system/main.ts index 5a7a4cd..12f4e9a 100644 --- a/samples/streaming-dual-channel-mic-system/main.ts +++ b/samples/streaming-dual-channel-mic-system/main.ts @@ -151,7 +151,7 @@ async function start(): Promise { transcriber = new StreamingTranscriber({ token, sampleRate: 16_000, - speechModel: "u3-rt-pro", + speechModel: "universal-3-5-pro", speakerLabels: true, ...(maxSpeakers !== undefined && { maxSpeakers }), continuousPartials: true,