You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
| 12345678910111213141516 |
- from enum import StrEnum
-
-
- class SystemVariableKey(StrEnum):
- """
- 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_EXECUTION_ID = "workflow_run_id"
|