namespace BotSharp.Abstraction.Agents.Enums; public class BuiltInAgentId { /// /// A routing agent can be used as a base router. /// public const string AIAssistant = "01fcc3e5-9af7-49e6-ad7a-a760bd12dc4a"; /// /// A demo agent used for open domain chatting /// public const string Chatbot = "01e2fc5c-2c89-4ec7-8470-7688608b496c"; /// /// Human customer service /// public const string HumanSupport = "01dcc3e5-0af7-49e6-ad7a-a760bd12dc4b"; /// /// Used as a container to host the shared tools/ utilities built in different plugins. /// public const string UtilityAssistant = "6745151e-6d46-4a02-8de4-1c4f21c7da95"; /// /// Used when router can't route to any existing task agent /// public const string Fallback = "01fcc3e5-0af7-49e6-ad7a-a760bd12dc4d"; /// /// Used by knowledgebase plugin to acquire domain knowledge /// public const string Learner = "01acc3e5-0af7-49e6-ad7a-a760bd12dc40"; /// /// Plan feasible implementation steps for complex problems /// public const string Planner = "282a7128-69a1-44b0-878c-a9159b88f3b9"; }