-
![]() |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Hi @bohan12! I'm Dosu and I’m helping the ragflow team. The file size limit shown in the RAGFlow web UI (e.g., 8MB or 10MB) is currently hardcoded and cannot be changed through configuration settings like If you need to upload files larger than the web UI allows, you can use the API endpoint In summary: the web UI limit is not configurable, but you can bypass it using the API or script, and the backend supports much larger files than the UI suggests. To reply, just mention @dosu. How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other |
Beta Was this translation helpful? Give feedback.
-
Next release in this week will remove this limitation. |
Beta Was this translation helpful? Give feedback.
Hi @bohan12! I'm Dosu and I’m helping the ragflow team.
The file size limit shown in the RAGFlow web UI (e.g., 8MB or 10MB) is currently hardcoded and cannot be changed through configuration settings like
MAX_CONTENT_LENGTH
or nginx configs. However, the backend actually allows much larger files (up to 128MB in local deployments), and single files larger than 10MB can be uploaded successfully—the UI limit is incorrect and will be updated in a future release [source].If you need to upload files larger than the web UI allows, you can use the API endpoint
/datasets/<dataset_id>/documents
directly, or use the provided Python script for batch uploads [source]. For increasing the backend limi…