BotSharp/src/Infrastructure/BotSharp.Abstraction/Conversations/Models/RoleDialogModel.cs

16 lines
315 B
C#
Raw Normal View History

2023-06-27 18:31:13 +00:00
namespace BotSharp.Abstraction.Conversations.Models;
public class RoleDialogModel
{
/// <summary>
/// user, system, assistant
/// </summary>
public string Role { get; set; }
public string Text { get; set; }
public override string ToString()
{
return $"{Role}: {Text}";
}
}