docs: Documents the knowledge base upload limits added as a global admin setting. - #1342
Draft
rbx wants to merge 1 commit into
Draft
docs: Documents the knowledge base upload limits added as a global admin setting.#1342rbx wants to merge 1 commit into
rbx wants to merge 1 commit into
Conversation
13 tasks
Classic298
marked this pull request as draft
August 4, 2026 11:16
Documents the RAG_KNOWLEDGE_MAX_COUNT / RAG_KNOWLEDGE_MAX_SIZE global admin settings, which cap how many files a knowledge base may hold and how large each file may be. Configurable in Admin Panel → Settings → Documents → Files, alongside the existing Max Upload Size / Max Upload Count fields. Applies globally to every knowledge base and every user (no per-user or per-group override), and is enforced for every way of adding a file to a knowledge base: manual upload, one-shot directory import, incremental directory sync, and the API. - docs/features/workspace/knowledge.mdx: new "Knowledge base upload limits" section under Limitations. - docs/reference/env-configuration.mdx: RAG_KNOWLEDGE_MAX_SIZE / RAG_KNOWLEDGE_MAX_COUNT entries, alongside RAG_FILE_MAX_SIZE / RAG_FILE_MAX_COUNT. - docs/troubleshooting/rag.mdx: updates the existing "Upload Limits and Restrictions" section, which previously documented knowledge base uploads as having no count limit at all.
1 task
rbx
marked this pull request as ready for review
August 5, 2026 08:32
Classic298
marked this pull request as draft
August 7, 2026 18:23
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Documents the knowledge base upload limits added as a global admin setting.
Corresponding open-webui PR: open-webui/open-webui#28142
Changes
docs/features/workspace/knowledge.mdx— new "Knowledge base upload limits" section under Limitations: what the limits do,0/empty = unlimited, that they're global (apply to every knowledge base and every user, including admins, with no per-user or per-group override), and that enforcement is server-side across every upload path (manual button, one-shot directory import, incremental sync, and the API).docs/reference/env-configuration.mdx— addsRAG_KNOWLEDGE_MAX_SIZEandRAG_KNOWLEDGE_MAX_COUNTentries, alongside the existingRAG_FILE_MAX_SIZE/RAG_FILE_MAX_COUNTentries they're modeled on.docs/troubleshooting/rag.mdx— updates the existing "Upload Limits and Restrictions" section, which previously documented knowledge base uploads as having no count limit at all.Related