mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-07-04 19:22:56 +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;
|
|||
|
}
|
|||
|
}
|