mirror of
https://github.com/langgenius/dify.git
synced 2026-01-05 22:15:52 +00:00
14 lines
283 B
Python
14 lines
283 B
Python
from enum import StrEnum
|
|
|
|
class FileType(StrEnum):
|
|
IMAGE = "image"
|
|
AUDIO = "audio"
|
|
VIDEO = "video"
|
|
DOCUMENT = "document"
|
|
CUSTOM = "custom"
|
|
|
|
class FileTransferMethod(StrEnum):
|
|
REMOTE_URL = "remote_url"
|
|
LOCAL_FILE = "local_file"
|
|
TOOL_FILE = "tool_file"
|