BotSharp/src/Plugins/BotSharp.Plugin.ChatbotUI/ViewModels/OpenAiMessageBody.cs

8 lines
161 B
C#
Raw Normal View History

2023-06-07 00:59:32 +00:00
namespace BotSharp.Plugin.ChatbotUI.ViewModels;
2023-05-27 01:58:31 +00:00
public class OpenAiMessageBody
{
public string Role { get; set; }
public string Content { get; set; }
}