BotSharp/src/Infrastructure/BotSharp.Abstraction/Routing/Settings/RoutingSettings.cs
2023-09-21 11:40:54 -05:00

20 lines
489 B
C#

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