| """ | |
| OCR Module for Document Intelligence | |
| Provides OCR capabilities using PaddleOCR (primary) and Tesseract (fallback). | |
| Supports multiple languages and confidence scoring. | |
| """ | |
| from .base import OCREngine, OCRConfig, OCRResult | |
| from .paddle_ocr import PaddleOCREngine | |
| from .tesseract_ocr import TesseractOCREngine | |
| from .factory import get_ocr_engine, create_ocr_engine | |
| __all__ = [ | |
| "OCREngine", | |
| "OCRConfig", | |
| "OCRResult", | |
| "PaddleOCREngine", | |
| "TesseractOCREngine", | |
| "get_ocr_engine", | |
| "create_ocr_engine", | |
| ] | |