namespace RAG.Infrastructure.AI; public class AiOptions { public const string SectionName = "Ai"; public string BaseUrl { get; set; } = "http://localhost:1234/v1"; public string ApiKey { get; set; } = "lm-studio"; public string ChatModel { get; set; } = ""; public string EmbeddingModel { get; set; } = ""; public string DefaultInstructions { get; set; } = ""; public int MaxTokens { get; set; } = 2000; public double Temperature { get; set; } = 0.7; }