From 663ed13522a40ec9c629d0841772df58f2f80806 Mon Sep 17 00:00:00 2001 From: admin Date: Thu, 4 Jun 2026 11:56:35 +0700 Subject: [PATCH] 690604:1156 ADR-034-134 #07.1 [skip CI] --- .../04-00-docker-compose/Desk-5439/ocr-sidecar/app.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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: