Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

__init__.py 1.2KB

123456789101112131415161718192021222324252627282930313233343536
  1. #
  2. # Copyright 2025 The InfiniFlow Authors. All Rights Reserved.
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. #
  16. from .pdf_parser import RAGFlowPdfParser as PdfParser, PlainParser
  17. from .docx_parser import RAGFlowDocxParser as DocxParser
  18. from .excel_parser import RAGFlowExcelParser as ExcelParser
  19. from .ppt_parser import RAGFlowPptParser as PptParser
  20. from .html_parser import RAGFlowHtmlParser as HtmlParser
  21. from .json_parser import RAGFlowJsonParser as JsonParser
  22. from .markdown_parser import RAGFlowMarkdownParser as MarkdownParser
  23. from .txt_parser import RAGFlowTxtParser as TxtParser
  24. __all__ = [
  25. "PdfParser",
  26. "PlainParser",
  27. "DocxParser",
  28. "ExcelParser",
  29. "PptParser",
  30. "HtmlParser",
  31. "JsonParser",
  32. "MarkdownParser",
  33. "TxtParser",
  34. ]