Skip to content

Commit fe75bbb

Browse files
authored
feat: docling support (#8)
1 parent dd271b8 commit fe75bbb

File tree

4 files changed

+606
-41
lines changed

4 files changed

+606
-41
lines changed

deepdoc/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"PdfParser",
2626
"PlainParser",
2727
"DocxParser",
28+
"DoclingParser",
2829
"ExcelParser",
2930
"PptParser",
3031
"HtmlParser",

deepdoc/parser/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#
1616

1717
from .docx_parser import RAGFlowDocxParser as DocxParser
18+
from .docling_parser import DoclingParser
1819
from .excel_parser import RAGFlowExcelParser as ExcelParser
1920
from .html_parser import RAGFlowHtmlParser as HtmlParser
2021
from .json_parser import RAGFlowJsonParser as JsonParser
@@ -29,6 +30,7 @@
2930
"PdfParser",
3031
"PlainParser",
3132
"DocxParser",
33+
"DoclingParser",
3234
"ExcelParser",
3335
"PptParser",
3436
"HtmlParser",

0 commit comments

Comments
 (0)