AI-Studio/app/MindWork AI Studio/Provider/OpenAI/ISubContent.cs

12 lines
268 B
C#
Raw Normal View History

namespace AIStudio.Provider.OpenAI;
/// <summary>
/// Contract for sub-content in multimodal messages.
/// </summary>
public interface ISubContent
{
/// <summary>
/// The type of the sub-content.
/// </summary>
public ContentType Type { get; init; }
}