mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-07-03 09:02:57 +00:00
10 lines
204 B
C#
10 lines
204 B
C#
namespace AIStudio.Chat;
|
|
|
|
public static class ChatRoles
|
|
{
|
|
public static IEnumerable<ChatRole> ChatTemplateRoles()
|
|
{
|
|
yield return ChatRole.USER;
|
|
yield return ChatRole.AI;
|
|
}
|
|
} |