Change template default to 0.8f

This commit is contained in:
Haiping Chen 2025-03-14 21:08:29 -05:00
parent 3c23e58351
commit 292da2aee7

View file

@ -2,7 +2,7 @@ namespace BotSharp.Abstraction.Realtime.Models;
public class RealtimeModelSettings
{
public float Temperature { get; set; } = 0.6f;
public float Temperature { get; set; } = 0.8f;
public int MaxResponseOutputTokens { get; set; } = 512;
public ModelTurnDetection TurnDetection { get; set; } = new();
}