Merge pull request #542 from langflow-ai/pushkala-datastax-patch-1

Container and openrag-documents
This commit is contained in:
pushkala-datastax 2025-11-27 09:38:19 -08:00 committed by GitHub
commit 4b88fbd3fa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -308,7 +308,7 @@ def _get_documents_dir():
# Locally, we use openrag-documents
container_env = detect_container_environment()
if container_env:
path = os.path.abspath("/app/documents")
path = os.path.abspath("/app/openrag-documents")
logger.debug(f"Running in {container_env}, using container path: {path}")
return path
else: