mirror of
https://github.com/Ladebeze66/ragflow_preprocess.git
synced 2026-02-04 05:50:26 +01:00
10 lines
347 B
Python
10 lines
347 B
Python
# Module Utils
|
|
from .markdown_export import MarkdownExporter
|
|
from .api_ollama import OllamaAPI
|
|
|
|
try:
|
|
from .ocr import OCRProcessor
|
|
__all__ = ['MarkdownExporter', 'OllamaAPI', 'OCRProcessor']
|
|
except ImportError:
|
|
# OCR facultatif car il dépend de bibliothèques externes supplémentaires
|
|
__all__ = ['MarkdownExporter', 'OllamaAPI'] |