6 references to OpenAIChatClient
Microsoft.Extensions.AI.OpenAI (1)
OpenAIClientExtensions.cs (1)
18new OpenAIChatClient(openAIClient, modelId);
Microsoft.Extensions.AI.OpenAI.Tests (5)
OpenAIChatClientTests.cs (5)
29Assert.Throws<ArgumentNullException>("openAIClient", () => new OpenAIChatClient(null!, "model")); 33Assert.Throws<ArgumentNullException>("modelId", () => new OpenAIChatClient(openAIClient, null!)); 34Assert.Throws<ArgumentException>("modelId", () => new OpenAIChatClient(openAIClient, "")); 35Assert.Throws<ArgumentException>("modelId", () => new OpenAIChatClient(openAIClient, " ")); 41using OpenAIChatClient client = new(new("key"), "model");