mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-11 17:49:06 +00:00
8 lines
97 B
C#
8 lines
97 B
C#
|
namespace AIStudio.Chat;
|
||
|
|
||
|
public enum ContentImageSource
|
||
|
{
|
||
|
URL,
|
||
|
LOCAL_PATH,
|
||
|
BASE64,
|
||
|
}
|