From b18c58e836ac461748bd9312c5be7ec5d2f9038d Mon Sep 17 00:00:00 2001 From: Edwin Jose Date: Fri, 1 Aug 2025 10:30:55 -0400 Subject: [PATCH] ref: Increase max file upload size to 1024 MB (#9276) Increase max file upload size to 1024 MB Updated the default value of max_file_size_upload from 100 MB to 1024 MB in the Settings class to allow larger file uploads. Co-authored-by: Gabriel Luiz Freitas Almeida --- src/backend/base/langflow/services/settings/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/base/langflow/services/settings/base.py b/src/backend/base/langflow/services/settings/base.py index d9a6d6538..5cb82c479 100644 --- a/src/backend/base/langflow/services/settings/base.py +++ b/src/backend/base/langflow/services/settings/base.py @@ -220,7 +220,7 @@ class Settings(BaseSettings): """The interval in ms at which Langflow will auto save flows.""" health_check_max_retries: int = 5 """The maximum number of retries for the health check.""" - max_file_size_upload: int = 100 + max_file_size_upload: int = 1024 """The maximum file size for the upload in MB.""" deactivate_tracing: bool = False """If set to True, tracing will be deactivated."""