// Copyright (c) Microsoft. All rights reserved.
internal sealed class AppConfig
{
///
/// The business id of the booking service.
///
public string? BookingBusinessId { get; set; }
///
/// The service id of the booking service defined for the provided booking business.
///
public string? BookingServiceId { get; set; }
///
/// The configuration for the OpenAI chat completion.
///
///
/// This is ignored if using Azure OpenAI configuration.
///
public OpenAIConfig? OpenAI { get; set; }
///
/// The configuration for the Azure OpenAI chat completion.
///
///
/// This is not required when OpenAI configuration is provided.
///
public AzureOpenAIConfig? AzureOpenAI { get; set; }
///
/// The configuration for the Azure EntraId authentication.
///
public AzureEntraIdConfig? AzureEntraId { get; set; }
internal bool IsAzureOpenAIConfigured => this.AzureOpenAI?.DeploymentName is not null;
///
/// Ensures that the configuration is valid.
///
internal void Validate()
{
ArgumentNullException.ThrowIfNull(this.BookingBusinessId, nameof(this.BookingBusinessId));
ArgumentNullException.ThrowIfNull(this.BookingServiceId, nameof(this.BookingServiceId));
if (this.IsAzureOpenAIConfigured)
{
ArgumentNullException.ThrowIfNull(this.AzureOpenAI?.Endpoint, nameof(this.AzureOpenAI.Endpoint));
ArgumentNullException.ThrowIfNull(this.AzureOpenAI?.ApiKey, nameof(this.AzureOpenAI.ApiKey));
}
else
{
ArgumentNullException.ThrowIfNull(this.OpenAI?.ModelId, nameof(this.OpenAI.ModelId));
ArgumentNullException.ThrowIfNull(this.OpenAI?.ApiKey, nameof(this.OpenAI.ApiKey));
}
ArgumentNullException.ThrowIfNull(this.AzureEntraId?.ClientId, nameof(this.AzureEntraId.ClientId));
ArgumentNullException.ThrowIfNull(this.AzureEntraId?.TenantId, nameof(this.AzureEntraId.TenantId));
if (this.AzureEntraId.InteractiveBrowserAuthentication)
{
ArgumentNullException.ThrowIfNull(this.AzureEntraId.InteractiveBrowserRedirectUri, nameof(this.AzureEntraId.InteractiveBrowserRedirectUri));
}
else
{
ArgumentNullException.ThrowIfNull(this.AzureEntraId?.ClientSecret, nameof(this.AzureEntraId.ClientSecret));
}
}
internal sealed class OpenAIConfig
{
///
/// The model ID to use for the OpenAI chat completion.
/// Available Chat Completion models can be found at https://platform.openai.com/docs/models.
///
public string? ModelId { get; set; }
///
/// ApiKey to use for the OpenAI chat completion.
///
public string? ApiKey { get; set; }
///
/// Optional organization ID to use for the OpenAI chat completion.
///
public string? OrgId { get; set; }
}
internal sealed class AzureOpenAIConfig
{
///
/// Deployment name of the Azure OpenAI resource.
///
public string? DeploymentName { get; set; }
///
/// Endpoint of the Azure OpenAI resource.
///
public string? Endpoint { get; set; }
///
/// ApiKey to use for the Azure OpenAI chat completion.
///
public string? ApiKey { get; set; }
}
internal sealed class AzureEntraIdConfig
{
///
/// App Registration Client Id
///
public string? ClientId { get; set; }
///
/// App Registration Tenant Id
///
public string? TenantId { get; set; }
///
/// The client secret to use for the Azure EntraId authentication.
///
///
/// This is required if InteractiveBrowserAuthentication is false. (App Authentication)
///
public string? ClientSecret { get; set; }
///
/// Specifies whether to use interactive browser authentication (Delegated User Authentication) or App authentication.
///
public bool InteractiveBrowserAuthentication { get; set; }
///
/// When using interactive browser authentication, the redirect URI to use.
///
public string? InteractiveBrowserRedirectUri { get; set; } = "http://localhost";
}
}