namespace AIStudio.Provider.SelfHosted; /// /// 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) { } }