BotSharp/src/Infrastructure/BotSharp.Abstraction/Agents/Enums/AgentField.cs
2025-05-22 13:58:42 -05:00

38 lines
499 B
C#

namespace BotSharp.Abstraction.Agents.Enums;
public enum AgentField
{
All = 1,
Name,
Description,
IsPublic,
Disabled,
Type,
RoutingMode,
InheritAgentId,
Profile,
Label,
RoutingRule,
Instruction,
Function,
Template,
Response,
Sample,
LlmConfig,
Utility,
McpTool,
KnowledgeBase,
Rule,
MaxMessageCount
}
public enum AgentTaskField
{
All = 1,
Name,
Description,
Enabled,
Content,
Status
}