From 225655d02c3d6d560afdedbc27abcc967b254c46 Mon Sep 17 00:00:00 2001 From: Dennis Paul Date: Thu, 23 Oct 2025 00:05:00 +0200 Subject: [PATCH] (#10) Fix incorrect OCR instruction --- backend/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/main.py b/backend/main.py index 573c7c2..945e693 100644 --- a/backend/main.py +++ b/backend/main.py @@ -102,7 +102,7 @@ def build_prompt( instruction = "" if mode == "plain_ocr": - instruction = "Free OCR. Only output the raw text." + instruction = "Free OCR." elif mode == "markdown": instruction = "Convert the document to markdown." elif mode == "tables_csv":