namespace AIStudio.Provider.OpenAI; /// /// Text input sub-content for multimodal messages. /// /// /// Right now, this is used only by OpenAI in its responses API. /// public record SubContentInputText(SubContentType Type, string Text) : ISubContent { public SubContentInputText() : this(SubContentType.INPUT_TEXT, string.Empty) { } }