AI-Studio/app/MindWork AI Studio/Provider/Anthropic/SubContentImage.cs

10 lines
268 B
C#
Raw Normal View History

2025-12-30 17:30:32 +00:00
using AIStudio.Provider.OpenAI;
namespace AIStudio.Provider.Anthropic;
public record SubContentImage(SubContentType Type, ISubContentImageSource Source) : ISubContent
{
public SubContentImage() : this(SubContentType.IMAGE, new SubContentImageUrl())
{
}
}