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
  1. from enum import StrEnum
  2. class SystemVariableKey(StrEnum):
  3. """
  4. System Variables.
  5. """
  6. QUERY = "query"
  7. FILES = "files"
  8. CONVERSATION_ID = "conversation_id"
  9. USER_ID = "user_id"
  10. DIALOGUE_COUNT = "dialogue_count"
  11. APP_ID = "app_id"
  12. WORKFLOW_ID = "workflow_id"
  13. WORKFLOW_EXECUTION_ID = "workflow_run_id"