12 lines
398 B
C#
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";
|
|
}
|