namespace AIStudio.Provider.OpenAI; /// /// A multimodal chat message model that can contain various types of content. /// /// The list of sub-contents in the message. /// The role of the message. public record MultimodalMessage(List Content, string Role) : IMessage> { public MultimodalMessage() : this([], string.Empty) { } }