BotSharp/src/Infrastructure/BotSharp.Abstraction/Agents/Enums/AgentField.cs
2023-09-15 15:19:44 -05:00

14 lines
185 B
C#

namespace BotSharp.Abstraction.Agents.Enums;
public enum AgentField
{
All = 1,
Name,
Description,
IsPublic,
Instruction,
Function,
Template,
Response
}