mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-08-21 11:32:56 +00:00
17 lines
216 B
C#
17 lines
216 B
C#
using AIStudio.Tools.PluginSystem;
|
|
|
|
namespace AIStudio.Chat;
|
|
|
|
/// <summary>
|
|
/// Possible roles in the chat.
|
|
/// </summary>
|
|
public enum ChatRole
|
|
{
|
|
NONE,
|
|
UNKNOWN,
|
|
|
|
SYSTEM,
|
|
USER,
|
|
AI,
|
|
AGENT,
|
|
} |