BotSharp/src/Infrastructure/BotSharp.Abstraction/Realtime/Models/RealtimeModelSettings.cs

9 lines
266 B
C#
Raw Normal View History

2025-03-15 02:06:40 +00:00
namespace BotSharp.Abstraction.Realtime.Models;
public class RealtimeModelSettings
{
2025-03-15 02:08:29 +00:00
public float Temperature { get; set; } = 0.8f;
2025-03-15 02:06:40 +00:00
public int MaxResponseOutputTokens { get; set; } = 512;
public ModelTurnDetection TurnDetection { get; set; } = new();
}