namespace AIStudio.Provider.OpenAI; /// /// Standard text-based chat message model. /// /// The text content of the message. /// The role of the message. public record TextMessage(string Content, string Role) : IMessage { public TextMessage() : this(string.Empty, string.Empty) { } }