3 references to ConfigureOptionsChatClient
Microsoft.Extensions.AI (1)
ChatCompletion\ConfigureOptionsChatClientBuilderExtensions.cs (1)
34
return builder.Use(innerClient => new
ConfigureOptionsChatClient
(innerClient, configure));
Microsoft.Extensions.AI.Tests (2)
ChatCompletion\ConfigureOptionsChatClientTests.cs (2)
18
Assert.Throws<ArgumentNullException>("innerClient", () => new
ConfigureOptionsChatClient
(null!, _ => { }));
19
Assert.Throws<ArgumentNullException>("configure", () => new
ConfigureOptionsChatClient
(new TestChatClient(), null!));