mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-07-04 16:22:57 +00:00
15 lines
180 B
C#
15 lines
180 B
C#
namespace AIStudio.Chat;
|
|
|
|
/// <summary>
|
|
/// Possible roles in the chat.
|
|
/// </summary>
|
|
public enum ChatRole
|
|
{
|
|
NONE,
|
|
UNKNOWN,
|
|
|
|
SYSTEM,
|
|
USER,
|
|
AI,
|
|
AGENT,
|
|
} |