mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 22:21:36 +00:00
10 lines
290 B
C#
10 lines
290 B
C#
|
|
namespace AIStudio.Provider.Anthropic;
|
||
|
|
|
||
|
|
public record SubContentBase64Image : ISubContentImageSource
|
||
|
|
{
|
||
|
|
public SubContentImageType Type => SubContentImageType.BASE64;
|
||
|
|
|
||
|
|
public string MediaType { get; init; } = string.Empty;
|
||
|
|
|
||
|
|
public string Data { get; init; } = string.Empty;
|
||
|
|
}
|