mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 17:21:36 +00:00
11 lines
292 B
C#
11 lines
292 B
C#
|
|
namespace AIStudio.Provider.OpenAI;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Image sub-content for multimodal messages.
|
||
|
|
/// </summary>
|
||
|
|
public record SubContentImageUrl(SubContentType Type, string ImageUrl) : ISubContent
|
||
|
|
{
|
||
|
|
public SubContentImageUrl() : this(SubContentType.IMAGE_URL, string.Empty)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|