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