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

17 lines
216 B
C#
Raw Normal View History

2025-05-24 10:27:00 +00:00
using AIStudio.Tools.PluginSystem;
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
}