BotSharp/src/Infrastructure/BotSharp.Abstraction/Routing/Settings/RoutingSettings.cs
2023-09-20 17:08:14 -05:00

16 lines
372 B
C#

namespace BotSharp.Abstraction.Routing.Settings;
public class RoutingSettings
{
/// <summary>
/// Router Agent Id
/// </summary>
public string RouterId { get; set; } = string.Empty;
public bool EnableReasoning { get; set; } = false;
public string Provider { get; set; } = string.Empty;
public string Model { get; set; } = string.Empty;
}