Skip to content

Commit 625a047

Browse files
HavenDVclaude
andcommitted
Add streaming behavior notes to MEAI guide
Co-Authored-By: Claude Opus 4.6 <[email protected]>
1 parent 3c3e239 commit 625a047

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

docs/guides/meai.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,12 @@ Console.WriteLine($"Start: {response.StartTime}");
161161
Console.WriteLine($"End: {response.EndTime}");
162162
```
163163

164+
### Streaming Behavior
165+
166+
`GetStreamingTextAsync` delegates to the non-streaming `GetTextAsync` method internally. The Reka transcription API processes audio synchronously, and then the full result is converted to `SpeechToTextResponseUpdate` events using `ToSpeechToTextResponseUpdates()`.
167+
168+
This means you will not receive incremental transcription updates as audio is processed. The entire transcript is returned at once after processing completes. For most use cases, calling `GetTextAsync` directly is equivalent and simpler.
169+
164170
## Dependency Injection
165171

166172
```csharp

0 commit comments

Comments
 (0)