5 implementations of GetStreamingTextAsync
Microsoft.Extensions.AI.Abstractions (1)
SpeechToText\DelegatingSpeechToTextClient.cs (1)
51public virtual IAsyncEnumerable<SpeechToTextResponseUpdate> GetStreamingTextAsync(
Microsoft.Extensions.AI.Abstractions.Tests (1)
TestSpeechToTextClient.cs (1)
47public IAsyncEnumerable<SpeechToTextResponseUpdate> GetStreamingTextAsync(
Microsoft.Extensions.AI.Integration.Tests (1)
test\Libraries\Microsoft.Extensions.AI.Abstractions.Tests\TestSpeechToTextClient.cs (1)
47public IAsyncEnumerable<SpeechToTextResponseUpdate> GetStreamingTextAsync(
Microsoft.Extensions.AI.OpenAI (1)
OpenAISpeechToTextClient.cs (1)
68public async IAsyncEnumerable<SpeechToTextResponseUpdate> GetStreamingTextAsync(
Microsoft.Extensions.AI.Tests (1)
test\Libraries\Microsoft.Extensions.AI.Abstractions.Tests\TestSpeechToTextClient.cs (1)
47public IAsyncEnumerable<SpeechToTextResponseUpdate> GetStreamingTextAsync(
9 references to GetStreamingTextAsync
Microsoft.Extensions.AI.Abstractions (3)
SpeechToText\DelegatingSpeechToTextClient.cs (1)
54return InnerClient.GetStreamingTextAsync(audioSpeechStream, options, cancellationToken);
SpeechToText\ISpeechToTextClient.cs (1)
21/// <see cref="GetStreamingTextAsync"/>, such as by configuring the options instance. Thus, consumers of the interface either should avoid
SpeechToText\SpeechToTextClientExtensions.cs (1)
75return client.GetStreamingTextAsync(audioSpeechStream, options, cancellationToken);
Microsoft.Extensions.AI.Integration.Tests (1)
SpeechToTextClientIntegrationTests.cs (1)
52await foreach (var chunk in _client.GetStreamingTextAsync(audioSpeechStream))
Microsoft.Extensions.AI.OpenAI.Tests (3)
OpenAISpeechToTextClientTests.cs (3)
132.GetStreamingTextAsync(fileStream, cancellationToken: cancellationTokenSource.Token) 166await foreach (var update in client.GetStreamingTextAsync(audioSpeechStream, new SpeechToTextOptions 201await foreach (var update in client.GetStreamingTextAsync(audioSpeechStream, new SpeechToTextOptions
Microsoft.Extensions.AI.Tests (2)
SpeechToText\ConfigureOptionsSpeechToTextClientTests.cs (1)
83await using var e = client.GetStreamingTextAsync(audioSpeechStream2, providedOptions, cts.Token).GetAsyncEnumerator();
SpeechToText\LoggingSpeechToTextClientTests.cs (1)
121await foreach (var update in client.GetStreamingTextAsync(