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.

enums.py 555B

5 months ago
5 months ago
5 months ago
1234567891011121314151617181920212223
  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"
  14. # RAG Pipeline
  15. DOCUMENT_ID = "document_id"
  16. BATCH = "batch"
  17. DATASET_ID = "dataset_id"
  18. DATASOURCE_TYPE = "datasource_type"
  19. DATASOURCE_INFO = "datasource_info"
  20. INVOKE_FROM = "invoke_from"