5 references to ChatClientExtensions
Microsoft.Extensions.AI.Abstractions.Tests (5)
ChatCompletion\ChatClientExtensionsTests.cs (5)
17
Assert.Throws<ArgumentNullException>("client", () =>
ChatClientExtensions
.GetService<object>(null!));
25
_ =
ChatClientExtensions
.CompleteAsync(null!, "hello");
30
_ =
ChatClientExtensions
.CompleteAsync(new TestChatClient(), null!);
39
_ =
ChatClientExtensions
.CompleteStreamingAsync(null!, "hello");
44
_ =
ChatClientExtensions
.CompleteStreamingAsync(new TestChatClient(), null!);