feat/enhance the multi-modal support (#8818)
This commit is contained in:
16
api/models/enums.py
Normal file
16
api/models/enums.py
Normal 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"
|
Reference in New Issue
Block a user