mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 15:41:37 +00:00
11 lines
274 B
C#
11 lines
274 B
C#
|
|
namespace AIStudio.Provider.OpenAI;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Text sub-content for multimodal messages.
|
||
|
|
/// </summary>
|
||
|
|
public record SubContentText(SubContentType Type, string Text) : ISubContent
|
||
|
|
{
|
||
|
|
public SubContentText() : this(SubContentType.TEXT, string.Empty)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|