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-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;
|
2023-08-30 02:19:19 +00:00
|
|
|
}
|