namespace Api.Models.Settings; public sealed class OllamaProviderSettings { public string BaseUrl { get; set; } = "http://localhost:11434"; public string ChatModel { get; set; } = "llama3.1:8b"; public string EmbeddingModel { get; set; } = "nomic-embed-text"; public int TimeoutSeconds { get; set; } = 180; }