- ocr/__init__.py: move VisionLanguageOCR re-export under TYPE_CHECKING so torch is not imported at module load time - ci.yml: add psycopg2-binary + anthropic to pip install (cf-core community and fixture scripts need these); exclude tests/fixtures/ and test_docuvision_client.py (torch/GPU tests — not runnable on ubuntu-latest)
10 lines
214 B
Python
10 lines
214 B
Python
"""OCR services for receipt text extraction."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import TYPE_CHECKING
|
|
|
|
if TYPE_CHECKING:
|
|
from .vl_model import VisionLanguageOCR
|
|
|
|
__all__ = ["VisionLanguageOCR"]
|