BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Collections/AgentDocument.cs

27 lines
1.1 KiB
C#
Raw Normal View History

2023-09-01 22:33:36 +00:00
namespace BotSharp.Plugin.MongoStorage.Collections;
2023-08-28 05:28:14 +00:00
public class AgentDocument : MongoBase
2023-08-26 04:41:01 +00:00
{
2023-08-28 05:28:14 +00:00
public string Name { get; set; }
public string Description { get; set; }
2024-01-26 04:32:48 +00:00
public string Type { get; set; }
2024-01-29 19:22:37 +00:00
public string? InheritAgentId { get; set; }
2024-01-16 03:26:18 +00:00
public string? IconUrl { get; set; }
2023-08-28 05:28:14 +00:00
public string Instruction { get; set; }
2024-11-20 23:57:44 +00:00
public bool IsPublic { get; set; }
public bool Disabled { get; set; }
public bool MergeUtility { get; set; }
2024-12-13 20:34:17 +00:00
public int? MaxMessageCount { get; set; }
2024-08-13 21:36:12 +00:00
public List<ChannelInstructionMongoElement> ChannelInstructions { get; set; }
public List<AgentTemplateMongoElement> Templates { get; set; }
public List<FunctionDefMongoElement> Functions { get; set; }
public List<AgentResponseMongoElement> Responses { get; set; }
public List<string> Samples { get; set; }
2024-11-20 23:10:38 +00:00
public List<AgentUtilityMongoElement> Utilities { get; set; }
2023-09-18 23:14:24 +00:00
public List<string> Profiles { get; set; }
2023-09-19 18:20:41 +00:00
public List<RoutingRuleMongoElement> RoutingRules { get; set; }
2023-12-13 20:26:46 +00:00
public AgentLlmConfigMongoElement? LlmConfig { get; set; }
2023-08-26 04:41:01 +00:00
2023-08-28 05:28:14 +00:00
public DateTime CreatedTime { get; set; }
public DateTime UpdatedTime { get; set; }
}