Implemented interface member:
method
GetTextAsync
Microsoft.Extensions.AI.ISpeechToTextClient.GetTextAsync(System.IO.Stream, Microsoft.Extensions.AI.SpeechToTextOptions, System.Threading.CancellationToken)
2 overrides of GetTextAsync
Microsoft.Extensions.AI (2)
SpeechToText\ConfigureOptionsSpeechToTextClient.cs (1)
40
public override async Task<SpeechToTextResponse>
GetTextAsync
(
SpeechToText\LoggingSpeechToTextClient.cs (1)
57
public override async Task<SpeechToTextResponse>
GetTextAsync
(
3 references to GetTextAsync
Microsoft.Extensions.AI (2)
SpeechToText\ConfigureOptionsSpeechToTextClient.cs (1)
43
return await base.
GetTextAsync
(audioSpeechStream, Configure(options), cancellationToken);
SpeechToText\LoggingSpeechToTextClient.cs (1)
74
var response = await base.
GetTextAsync
(audioSpeechStream, options, cancellationToken);
Microsoft.Extensions.AI.Abstractions.Tests (1)
SpeechToText\DelegatingSpeechToTextClientTests.cs (1)
44
var resultTask = delegating.
GetTextAsync
(expectedAudioSpeechStream, expectedOptions, expectedCancellationToken);