2026-03-17 10:16:44 +08:00
|
|
|
# 新的统一文档处理器接口
|
2026-03-18 00:02:24 +08:00
|
|
|
from yuxi.plugins.parser.base import (
|
|
|
|
|
BaseDocumentProcessor,
|
|
|
|
|
DocumentParserException,
|
|
|
|
|
DocumentProcessorException,
|
|
|
|
|
OCRException,
|
|
|
|
|
)
|
|
|
|
|
from yuxi.plugins.parser.factory import DocumentProcessorFactory
|
2026-03-17 10:16:44 +08:00
|
|
|
|
|
|
|
|
__all__ = [
|
2026-03-18 00:02:24 +08:00
|
|
|
"BaseDocumentProcessor",
|
|
|
|
|
"DocumentProcessorException",
|
|
|
|
|
"DocumentParserException",
|
|
|
|
|
"OCRException",
|
2026-03-17 10:16:44 +08:00
|
|
|
"DocumentProcessorFactory", # 推荐使用
|
|
|
|
|
]
|