feat/enhance the multi-modal support (#8818)

This commit is contained in:
-LAN-
2024-10-21 10:43:49 +08:00
committed by GitHub
parent 7a1d6fe509
commit e61752bd3a
267 changed files with 6263 additions and 3523 deletions

16
api/models/enums.py Normal file
View File

@@ -0,0 +1,16 @@
from enum import Enum
class CreatedByRole(str, Enum):
ACCOUNT = "account"
END_USER = "end_user"
class UserFrom(str, Enum):
ACCOUNT = "account"
END_USER = "end-user"
class WorkflowRunTriggeredFrom(str, Enum):
DEBUGGING = "debugging"
APP_RUN = "app-run"