fix: improve error logging for index creation and add PARSE_IMAGE_REMOTE setting

This commit is contained in:
Alex
2025-08-06 10:40:20 +01:00
parent 1282e7687f
commit 9281fac898
3 changed files with 12 additions and 7 deletions

View File

@@ -30,6 +30,7 @@ class Settings(BaseSettings):
}
UPLOAD_FOLDER: str = "inputs"
PARSE_PDF_AS_IMAGE: bool = False
PARSE_IMAGE_REMOTE: bool = False
VECTOR_STORE: str = (
"faiss" # "faiss" or "elasticsearch" or "qdrant" or "milvus" or "lancedb"
)