AI-Studio/app/MindWork AI Studio/Chat/ChatRole.cs

15 lines
180 B
C#
Raw Normal View History

2024-05-04 09:11:09 +00:00
namespace AIStudio.Chat;
/// <summary>
/// Possible roles in the chat.
/// </summary>
public enum ChatRole
{
NONE,
UNKNOWN,
SYSTEM,
USER,
AI,
AGENT,
2024-05-04 09:11:09 +00:00
}