6 references to AsChatClient
Microsoft.Extensions.AI.AzureAIInference.Tests (6)
AzureAIInferenceChatClientIntegrationTests.cs (1)
12?.AsChatClient(Environment.GetEnvironmentVariable("AZURE_AI_INFERENCE_CHAT_MODEL") ?? "gpt-4o-mini");
AzureAIInferenceChatClientTests.cs (5)
49Assert.Throws<ArgumentNullException>("chatCompletionsClient", () => ((ChatCompletionsClient)null!).AsChatClient("model")); 52Assert.Throws<ArgumentException>("modelId", () => client.AsChatClient(" ")); 63IChatClient chatClient = client.AsChatClient(model); 73IChatClient chatClient = client.AsChatClient("model"); 634.AsChatClient(modelId);