diff --git a/specs/04-Infrastructure-OPS/04-00-docker-compose/Desk-5439/ocr-sidecar/app.py b/specs/04-Infrastructure-OPS/04-00-docker-compose/Desk-5439/ocr-sidecar/app.py index b23fa561..c3e5c0d7 100644 --- a/specs/04-Infrastructure-OPS/04-00-docker-compose/Desk-5439/ocr-sidecar/app.py +++ b/specs/04-Infrastructure-OPS/04-00-docker-compose/Desk-5439/ocr-sidecar/app.py @@ -137,7 +137,11 @@ class OcrResponse(BaseModel): @app.get("/health") def health(): - return {"status": "ok", "engine": "tesseract"} + return { + "status": "ok", + "engines": ["tesseract", "typhoon-np-dms-ocr"], + "typhoonModel": TYPHOON_OCR_MODEL, + } def _process_pdf_doc(doc: fitz.Document, selected_engine: str, max_pages: int, typhoon_options: dict = {}) -> OcrResponse: