20 lines
267 B
C#
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
|
|
}
|