1 write to _client
Microsoft.Extensions.AI.Integration.Tests (1)
SpeechToTextClientIntegrationTests.cs (1)
21
_client
= CreateClient();
6 references to _client
Microsoft.Extensions.AI.Integration.Tests (6)
SpeechToTextClientIntegrationTests.cs (6)
26
_client
?.Dispose();
38
var response = await
_client
.GetTextAsync(audioSpeechStream);
51
await foreach (var chunk in
_client
.GetStreamingTextAsync(audioSpeechStream))
72
var response = await
_client
.GetTextAsync(audioSpeechStream);
89
[MemberNotNull(nameof(
_client
))]
94
Assert.SkipUnless(skipIntegration is null &&
_client
is not null, "Client is not enabled.");