BotSharp/src/Infrastructure/BotSharp.Abstraction/Agents/Enums/AgentField.cs
2025-04-20 21:18:56 -05:00

38 lines
492 B
C#

namespace BotSharp.Abstraction.Agents.Enums;
public enum AgentField
{
All = 1,
Name,
Description,
IsPublic,
Disabled,
Type,
Mode,
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
}