mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 20:21:37 +00:00
10 lines
268 B
C#
10 lines
268 B
C#
|
|
using AIStudio.Provider.OpenAI;
|
||
|
|
|
||
|
|
namespace AIStudio.Provider.Anthropic;
|
||
|
|
|
||
|
|
public record SubContentImage(SubContentType Type, ISubContentImageSource Source) : ISubContent
|
||
|
|
{
|
||
|
|
public SubContentImage() : this(SubContentType.IMAGE, new SubContentImageUrl())
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|