|
6 | 6 | export const SYSTEM = 'System' as const; |
7 | 7 |
|
8 | 8 | /** File extensions accepted for document processing upload (supports backend conversion). */ |
9 | | -export const SUPPORTED_UPLOAD_EXTENSIONS = '.pdf,.png,.jpg,.jpeg,.tiff,.tif,.xlsx,.xls,.csv,.doc,.docx' as const; |
| 9 | +export const SUPPORTED_UPLOAD_EXTENSIONS = '.pdf,.png,.jpg,.jpeg,.tiff,.tif,.xlsx,.xls,.csv,.doc,.docx,.txt' as const; |
10 | 10 |
|
11 | 11 | /** File extensions accepted for Discovery upload (PDF and images only — no backend conversion). */ |
12 | 12 | export const SUPPORTED_DISCOVERY_EXTENSIONS = '.pdf,.png,.jpg,.jpeg,.tiff,.tif' as const; |
13 | 13 |
|
14 | 14 | /** Human-readable label for supported processing upload formats. */ |
15 | 15 | export const SUPPORTED_UPLOAD_FORMATS_LABEL = |
16 | | - 'Supported formats: PDF, PNG, JPEG, TIFF, Excel (XLSX/XLS), CSV, and Word (DOC/DOCX). PDF and image files are processed with Textract; spreadsheet and Word files are supported through backend conversion.' as const; |
| 16 | + 'Supported formats: PDF, PNG, JPEG, TIFF, Excel (XLSX/XLS), CSV, Word (DOC/DOCX), and plain text (TXT). PDF and image files are processed with Textract; spreadsheet, Word, and text files are supported through backend conversion.' as const; |
17 | 17 |
|
18 | 18 | export const LANGUAGE_CODES = [ |
19 | 19 | { value: '', label: 'Choose a Language' }, |
|
0 commit comments