mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 18:01:36 +00:00
12 lines
271 B
C#
12 lines
271 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 SubContentType Type { get; init; }
|
||
|
|
}
|