mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
14 lines
241 B
Python
14 lines
241 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"
|