2026-03-13 07:40:29 -05:00
|
|
|
namespace StevesBot.Library.Gemini;
|
|
|
|
|
|
|
|
|
|
internal sealed record GenerationConfig
|
|
|
|
|
{
|
2026-03-14 07:13:35 -05:00
|
|
|
public double Temperature { get; init; } = 1.0;
|
2026-03-24 06:37:10 -05:00
|
|
|
public int MaxOutputTokens { get; init; } = 2500;
|
2026-03-13 07:40:29 -05:00
|
|
|
}
|