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

12 lines
271 B
C#
Raw Normal View History

2025-12-30 17:30:32 +00:00
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 SubContentType Type { get; init; }
}