namespace ROLAC.API.Services.Ai; /// Google Gemini API settings (bound from the "Gemini" config section). public sealed class GeminiOptions { /// API key sent as the X-goog-api-key header. Keep out of source control. public string ApiKey { get; set; } = ""; public string Model { get; set; } = "gemini-2.5-flash-lite"; public string BaseUrl { get; set; } = "https://generativelanguage.googleapis.com/v1beta"; }