mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-13 23:21:36 +00:00
12 lines
268 B
C#
12 lines
268 B
C#
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; }
|
|
} |