From 69d9dc672a590c7b0e6be11293a0feb35f0501e1 Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 12 Jan 2026 12:01:54 +0000 Subject: [PATCH] chore(settings): disable Docling OCR by default for text parsing --- application/core/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/core/settings.py b/application/core/settings.py index 49f7720e..1cc36b18 100644 --- a/application/core/settings.py +++ b/application/core/settings.py @@ -42,7 +42,7 @@ class Settings(BaseSettings): UPLOAD_FOLDER: str = "inputs" PARSE_PDF_AS_IMAGE: bool = False PARSE_IMAGE_REMOTE: bool = False - DOCLING_OCR_ENABLED: bool = True # Enable OCR for docling parsers (PDF, images) + DOCLING_OCR_ENABLED: bool = False # Enable OCR for docling parsers (PDF, images) DOCLING_OCR_ATTACHMENTS_ENABLED: bool = False # Enable OCR for docling when parsing attachments VECTOR_STORE: str = ( "faiss" # "faiss" or "elasticsearch" or "qdrant" or "milvus" or "lancedb" or "pgvector"