namespace AIStudio.Provider.SelfHosted; /// /// Chat message model. /// /// The text content of the message. /// The role of the message. public readonly record struct Message(string Content, string Role);