BotSharp/src/Infrastructure/BotSharp.Abstraction/Agents/Enums/AgentField.cs
2024-01-25 22:32:48 -06:00

20 lines
267 B
C#

namespace BotSharp.Abstraction.Agents.Enums;
public enum AgentField
{
All = 1,
Name,
Description,
IsPublic,
Disabled,
Type,
Profiles,
RoutingRule,
Instruction,
Function,
Template,
Response,
Sample,
LlmConfig
}