chore(settings): disable Docling OCR by default for text parsing

This commit is contained in:
Alex
2026-01-12 12:01:54 +00:00
parent 9192e010e8
commit 69d9dc672a

View File

@@ -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"