mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 11:42:29 +08:00
e947103b6d
Co-authored-by: Joel <iamjoel007@gmail.com>
17 lines
335 B
Python
17 lines
335 B
Python
from enum import Enum
|
|
|
|
|
|
class SystemVariableKey(str, Enum):
|
|
"""
|
|
System Variables.
|
|
"""
|
|
|
|
QUERY = "query"
|
|
FILES = "files"
|
|
CONVERSATION_ID = "conversation_id"
|
|
USER_ID = "user_id"
|
|
DIALOGUE_COUNT = "dialogue_count"
|
|
APP_ID = "app_id"
|
|
WORKFLOW_ID = "workflow_id"
|
|
WORKFLOW_RUN_ID = "workflow_run_id"
|