BotSharp/src/Plugins/UiAdapters/BotSharp.UiAdapter.ChatbotUI/ViewModels/OpenAiMessageBody.cs

8 lines
145 B
C#
Raw Normal View History

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