AI-Studio/app/MindWork AI Studio/Provider/Fireworks/TextMessage.cs

13 lines
365 B
C#
Raw Normal View History

2024-07-25 13:29:44 +00:00
namespace AIStudio.Provider.Fireworks;
/// <summary>
/// Chat message model.
/// </summary>
/// <param name="Content">The text content of the message.</param>
/// <param name="Role">The role of the message.</param>
2025-12-28 13:10:20 +00:00
public record TextMessage(string Content, string Role) : IMessage<string>
{
public TextMessage() : this(string.Empty, string.Empty)
{
}
}