1 instantiation of Settings
Microsoft.Extensions.AI.Evaluation.Integration.Tests (1)
Settings.cs (1)
71return new Settings(config);
28 references to Settings
Microsoft.Extensions.AI.Evaluation.Integration.Tests (28)
AgentQualityEvaluatorTests.cs (4)
29if (Settings.Current.Configured) 68storageRootPath: Settings.Current.StorageRootPath, 76storageRootPath: Settings.Current.StorageRootPath, 271if (!Settings.Current.Configured)
NLPEvaluatorTests.cs (3)
23if (Settings.Current.Configured) 37storageRootPath: Settings.Current.StorageRootPath, 152if (!Settings.Current.Configured)
QualityEvaluatorTests.cs (4)
27if (Settings.Current.Configured) 56storageRootPath: Settings.Current.StorageRootPath, 69storageRootPath: Settings.Current.StorageRootPath, 285if (!Settings.Current.Configured)
ResultsTests.cs (2)
29storageRootPath: Settings.Current.Configured ? 30Settings.Current.StorageRootPath :
SafetyEvaluatorTests.cs (11)
32if (Settings.Current.Configured) 54endpointUrl: Settings.Current.AzureAIProjectEndpoint); 78storageRootPath: Settings.Current.StorageRootPath, 95storageRootPath: Settings.Current.StorageRootPath, 109storageRootPath: Settings.Current.StorageRootPath, 120storageRootPath: Settings.Current.StorageRootPath, 129subscriptionId: Settings.Current.AzureSubscriptionId, 130resourceGroupName: Settings.Current.AzureResourceGroupName, 131projectName: Settings.Current.AzureAIProjectName); 143storageRootPath: Settings.Current.StorageRootPath, 625if (!Settings.Current.Configured)
Settings.cs (2)
60public static Settings Current => field ??= GetCurrentSettings(); 62private static Settings GetCurrentSettings()
Setup.cs (2)
29Endpoint = new Uri(new Uri(Settings.Current.Endpoint), "/openai/v1") 40return client.GetChatClient(Settings.Current.DeploymentName);