BotSharp/src/Infrastructure/BotSharp.Abstraction/Routing/Settings/RoutingSettings.cs

17 lines
430 B
C#
Raw Normal View History

namespace BotSharp.Abstraction.Routing.Settings;
public class RoutingSettings
{
/// <summary>
/// Router Agent Id
/// </summary>
public string RouterId { get; set; } = string.Empty;
2023-09-20 10:31:50 +00:00
public bool EnableReasoning { get; set; } = false;
2023-10-09 22:28:17 +00:00
public bool UseTextCompletion { get; set; } = false;
2023-09-20 22:08:14 +00:00
public string Provider { get; set; } = string.Empty;
public string Model { get; set; } = string.Empty;
}