3 instantiations of ConfigureOptionsSpeechToTextClient
Microsoft.Extensions.AI (1)
SpeechToText\ConfigureOptionsSpeechToTextClientBuilderExtensions.cs (1)
36return builder.Use(innerClient => new ConfigureOptionsSpeechToTextClient(innerClient, configure));
Microsoft.Extensions.AI.Tests (2)
SpeechToText\ConfigureOptionsSpeechToTextClientTests.cs (2)
19Assert.Throws<ArgumentNullException>("innerClient", () => new ConfigureOptionsSpeechToTextClient(null!, _ => { })); 20Assert.Throws<ArgumentNullException>("configure", () => new ConfigureOptionsSpeechToTextClient(new TestSpeechToTextClient(), null!));
2 references to ConfigureOptionsSpeechToTextClient
Microsoft.Extensions.AI (2)
SpeechToText\ConfigureOptionsSpeechToTextClient.cs (1)
22/// <summary>Initializes a new instance of the <see cref="ConfigureOptionsSpeechToTextClient"/> class with the specified <paramref name="configure"/> callback.</summary>
SpeechToText\ConfigureOptionsSpeechToTextClientBuilderExtensions.cs (1)
12/// <summary>Provides extensions for configuring <see cref="ConfigureOptionsSpeechToTextClient"/> instances.</summary>