BotSharp/src/Infrastructure/BotSharp.Abstraction/Loggers/Enums/ContentLogSource.cs
2024-10-07 16:35:39 -05:00

12 lines
398 B
C#

namespace BotSharp.Abstraction.Loggers.Enums;
public static class ContentLogSource
{
public const string UserInput = "user input";
public const string Prompt = "prompt";
public const string FunctionCall = "function call";
public const string AgentResponse = "agent response";
public const string HardRule = "hard rule";
public const string Notification = "notification";
}