2023-08-30 02:19:19 +00:00
|
|
|
namespace BotSharp.Abstraction.Routing.Settings;
|
|
|
|
|
|
|
|
|
|
public class RoutingSettings
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Router Agent Id
|
|
|
|
|
/// </summary>
|
2023-09-06 12:58:02 +00:00
|
|
|
public string RouterId { get; set; } = string.Empty;
|
2023-08-30 02:19:19 +00:00
|
|
|
|
2023-09-21 16:40:54 +00:00
|
|
|
public string RouterName { get; set; } = "Router";
|
|
|
|
|
|
|
|
|
|
public string Description { get; set; } = string.Empty;
|
2023-09-21 16:23:43 +00:00
|
|
|
|
2023-09-20 10:31:50 +00:00
|
|
|
public bool EnableReasoning { 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;
|
2023-08-30 02:19:19 +00:00
|
|
|
}
|