Spaces:
Running
Running
| from abc import ABC, abstractmethod | |
| from pathlib import Path | |
| class OCRService(ABC): | |
| def process_pdf_ocr(self, filename: str, namespace: str, language: str = "en") -> Path: | |
| pass | |
| def get_supported_languages(self) -> list[str]: | |
| pass | |