7 lines
182 B
C#
7 lines
182 B
C#
namespace StevesBot.Library.Gemini;
|
|
|
|
internal sealed record GenerationConfig
|
|
{
|
|
public double Temperature { get; init; } = 1.0;
|
|
public int MaxOutputTokens { get; init; } = 2500;
|
|
} |