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.

constants.tsx 547B

12345678910111213141516171819202122232425262728293031
  1. import { BlockClassificationEnum } from './types'
  2. export const BLOCK_CLASSIFICATIONS: string[] = [
  3. BlockClassificationEnum.Default,
  4. BlockClassificationEnum.QuestionUnderstand,
  5. BlockClassificationEnum.Logic,
  6. BlockClassificationEnum.Transform,
  7. BlockClassificationEnum.Utilities,
  8. ]
  9. export const DEFAULT_FILE_EXTENSIONS_IN_LOCAL_FILE_DATA_SOURCE = [
  10. 'txt',
  11. 'markdown',
  12. 'mdx',
  13. 'pdf',
  14. 'html',
  15. 'xlsx',
  16. 'xls',
  17. 'vtt',
  18. 'properties',
  19. 'doc',
  20. 'docx',
  21. 'csv',
  22. 'eml',
  23. 'msg',
  24. 'pptx',
  25. 'xml',
  26. 'epub',
  27. 'ppt',
  28. 'md',
  29. ]