From 4ec7c2049043c98b1647b85ab39fc8ef2eaddf80 Mon Sep 17 00:00:00 2001 From: Benjamin Admin Date: Sat, 28 Feb 2026 17:08:21 +0100 Subject: [PATCH] feat(ocr-pipeline): add rapidocr + onnxruntime to requirements RapidOCR uses PaddleOCR models on ONNX Runtime, works natively on ARM64. Co-Authored-By: Claude Opus 4.6 --- klausur-service/backend/requirements.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/klausur-service/backend/requirements.txt b/klausur-service/backend/requirements.txt index 7763f9f..92d063a 100644 --- a/klausur-service/backend/requirements.txt +++ b/klausur-service/backend/requirements.txt @@ -28,6 +28,10 @@ opencv-python-headless>=4.8.0 pytesseract>=0.3.10 Pillow>=10.0.0 +# RapidOCR (PaddleOCR models on ONNX Runtime — works on ARM64 natively) +rapidocr +onnxruntime + # PostgreSQL (for metrics storage) psycopg2-binary>=2.9.0 asyncpg>=0.29.0