Implemented interface member:
method
GetStreamingTextAsync
Microsoft.Extensions.AI.ISpeechToTextClient.GetStreamingTextAsync(System.IO.Stream, Microsoft.Extensions.AI.SpeechToTextOptions, System.Threading.CancellationToken)
2 overrides of GetStreamingTextAsync
Microsoft.Extensions.AI (2)
SpeechToText\ConfigureOptionsSpeechToTextClient.cs (1)
47public override async IAsyncEnumerable<SpeechToTextResponseUpdate> GetStreamingTextAsync(
SpeechToText\LoggingSpeechToTextClient.cs (1)
95public override async IAsyncEnumerable<SpeechToTextResponseUpdate> GetStreamingTextAsync(
2 references to GetStreamingTextAsync
Microsoft.Extensions.AI (2)
SpeechToText\ConfigureOptionsSpeechToTextClient.cs (1)
50await foreach (var update in base.GetStreamingTextAsync(audioSpeechStream, Configure(options), cancellationToken))
SpeechToText\LoggingSpeechToTextClient.cs (1)
113e = base.GetStreamingTextAsync(audioSpeechStream, options, cancellationToken).GetAsyncEnumerator(cancellationToken);