mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-28 18:36:23 +02:00
chore: updated docs for docling
This commit is contained in:
parent
50f84e1d0a
commit
a0aa29eeb0
5 changed files with 39 additions and 14 deletions
|
|
@ -106,8 +106,19 @@ export default function FileUploader() {
|
|||
};
|
||||
} else if (etlService === 'DOCLING') {
|
||||
return {
|
||||
// Docling supported file types (currently only PDF)
|
||||
// Docling supported file types
|
||||
'application/pdf': ['.pdf'],
|
||||
'application/vnd.openxmlformats-officedocument.wordprocessingml.document': ['.docx'],
|
||||
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet': ['.xlsx'],
|
||||
'application/vnd.openxmlformats-officedocument.presentationml.presentation': ['.pptx'],
|
||||
'text/asciidoc': ['.adoc', '.asciidoc'],
|
||||
'text/html': ['.html', '.htm', '.xhtml'],
|
||||
'text/csv': ['.csv'],
|
||||
'image/png': ['.png'],
|
||||
'image/jpeg': ['.jpg', '.jpeg'],
|
||||
'image/tiff': ['.tiff', '.tif'],
|
||||
'image/bmp': ['.bmp'],
|
||||
'image/webp': ['.webp'],
|
||||
// Audio files (always supported)
|
||||
...audioFileTypes,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue