"""OCR subsystem: protocol + fake client. Real engines (Surya, Azure DI, …) plug in behind :class:`OCRClient`. The MVP ships only :class:`FakeOCRClient` from this package; the real Surya client lands in Chunk 4. """ from __future__ import annotations from ix.ocr.client import OCRClient from ix.ocr.fake import FakeOCRClient __all__ = ["FakeOCRClient", "OCRClient"]