mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-13 17:21:37 +00:00
13 lines
368 B
C#
13 lines
368 B
C#
namespace AIStudio.Provider.Mistral;
|
|
|
|
/// <summary>
|
|
/// Text chat message model.
|
|
/// </summary>
|
|
/// <param name="Content">The text content of the message.</param>
|
|
/// <param name="Role">The role of the message.</param>
|
|
public record TextMessage(string Content, string Role) : IMessage<string>
|
|
{
|
|
public TextMessage() : this(string.Empty, string.Empty)
|
|
{
|
|
}
|
|
} |