2025-03-27 14:08:10 +01:00

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']