20 lines
489 B
C#
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;
|
|
}
|