1 instantiation of Settings
Microsoft.Extensions.AI.Evaluation.Integration.Tests (1)
Settings.cs (1)
75return new Settings(config);
27 references to Settings
Microsoft.Extensions.AI.Evaluation.Integration.Tests (27)
AgentQualityEvaluatorTests.cs (4)
29if (Settings.Current.Configured) 68storageRootPath: Settings.Current.StorageRootPath, 76storageRootPath: Settings.Current.StorageRootPath, 271if (!Settings.Current.Configured)
NLPEvaluatorTests.cs (3)
26if (Settings.Current.Configured) 40storageRootPath: Settings.Current.StorageRootPath, 155if (!Settings.Current.Configured)
QualityEvaluatorTests.cs (4)
30if (Settings.Current.Configured) 59storageRootPath: Settings.Current.StorageRootPath, 72storageRootPath: Settings.Current.StorageRootPath, 286if (!Settings.Current.Configured)
ResultsTests.cs (2)
31storageRootPath: Settings.Current.Configured ? 32Settings.Current.StorageRootPath :
SafetyEvaluatorTests.cs (9)
30if (Settings.Current.Configured) 55subscriptionId: Settings.Current.AzureSubscriptionId, 56resourceGroupName: Settings.Current.AzureResourceGroupName, 57projectName: Settings.Current.AzureAIProjectName); 73storageRootPath: Settings.Current.StorageRootPath, 90storageRootPath: Settings.Current.StorageRootPath, 104storageRootPath: Settings.Current.StorageRootPath, 115storageRootPath: Settings.Current.StorageRootPath, 558if (!Settings.Current.Configured)
Settings.cs (3)
55private static Settings? _currentSettings; 57public static Settings Current 66private static Settings GetCurrentSettings()
Setup.cs (2)
19IChatClient chatClient = azureOpenAIClient.GetChatClient(Settings.Current.DeploymentName).AsIChatClient(); 25var endpoint = new Uri(Settings.Current.Endpoint);