jack 2 tháng trước cách đây
mục cha
commit
33a1f046ce
1 tập tin đã thay đổi với 2 bổ sung3 xóa
  1. 2 3
      py/core/providers/ingestion/unstructured/base.py

+ 2 - 3
py/core/providers/ingestion/unstructured/base.py

@@ -95,11 +95,10 @@ class UnstructuredIngestionProvider(IngestionProvider):
         DocumentType.JSON: [parsers.JSONParser],  # type: ignore
         DocumentType.HTML: [parsers.HTMLParser],  # type: ignore
         DocumentType.XLS: [parsers.XLSParser],  # type: ignore
-        #DocumentType.XLSX: [parsers.XLSXParser],  # type: ignore
+        DocumentType.XLSX: [parsers.XLSXParser],  # type: ignore
         #DocumentType.DOC: [parsers.DOCParser],  # type: ignore
         DocumentType.PPT: [parsers.PPTParser],  # type: ignore
-        DocumentType.CSV: [parsers.CSVParserAdvanced],  # type: ignore
-        DocumentType.XLSX: [parsers.XLSXParserAdvanced],  # type: ignore
+        DocumentType.CSV: [parsers.CSVParser],  # type: ignore
     }
 
     EXTRA_PARSERS = {