namespace AIStudio.Provider.Mistral; /// /// Regulat chat message model. /// /// The text content of the message. /// The role of the message. public readonly record struct RegularMessage(string Content, string Role);