namespace Deal.Infrastructure.Integrations.Options;
///
/// Конфигурация клиента AI-сервиса — секция Services:Ai.
///
public sealed class AiServiceOptions
{
///
/// Имя секции конфигурации
///
public const string SectionName = "Services:Ai";
///
/// Endpoint ai-service по умолчанию.
///
public const string DefaultEndpoint = "http://localhost:5102";
///
/// True — Local-адаптеры
///
public bool UseLocal { get; set; } = true;
///
/// Базовый адрес ai-service.
///
public string Endpoint { get; set; } = DefaultEndpoint;
}