mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 16:21:37 +00:00
9 lines
208 B
C#
9 lines
208 B
C#
|
|
namespace AIStudio.Provider.Anthropic;
|
||
|
|
|
||
|
|
public interface ISubContentImageSource
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// The type of the sub-content image.
|
||
|
|
/// </summary>
|
||
|
|
public SubContentImageType Type { get; }
|
||
|
|
}
|