enums.py 336 B

1234567891011121314151617
  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_RUN_ID = "workflow_run_id"