2025-05-16 11:14:04 +00:00
|
|
|
|
namespace AIStudio.Chat;
|
|
|
|
|
|
|
|
|
|
public static class ChatRoles
|
|
|
|
|
{
|
|
|
|
|
public static IEnumerable<ChatRole> ChatTemplateRoles()
|
|
|
|
|
{
|
2025-05-16 12:51:24 +00:00
|
|
|
|
yield return ChatRole.USER;
|
2025-05-16 11:14:04 +00:00
|
|
|
|
yield return ChatRole.AI;
|
|
|
|
|
}
|
|
|
|
|
}
|