AI-Studio/app/MindWork AI Studio/Chat/ChatRole.cs
2025-05-24 19:11:28 +02:00

15 lines
180 B
C#

namespace AIStudio.Chat;
/// <summary>
/// Possible roles in the chat.
/// </summary>
public enum ChatRole
{
NONE,
UNKNOWN,
SYSTEM,
USER,
AI,
AGENT,
}