32 lines
416 B
C#
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
|
|
}
|