BotSharp/src/Infrastructure/BotSharp.Abstraction/Agents/Enums/AgentField.cs
2024-07-02 13:36:45 -05:00

32 lines
416 B
C#

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