[PR #19587] [CLOSED] feat: allow bulk adding of websites in chat and allow adding websites to knowledgebase #25256

Closed
opened 2026-04-20 05:50:53 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/19587
Author: @Classic298
Created: 11/29/2025
Status: Closed

Base: devHead: web-add


📝 Commits (8)

  • d39b279 init impl. add webpage modal
  • ac75c19 Update AttachWebpageModal.svelte
  • 3a9251c Update AttachWebpageModal.svelte
  • efe4bab Update AttachWebpageModal.svelte
  • e093310 Update KnowledgeBase.svelte
  • 6e2333c Update KnowledgeBase.svelte
  • 74a345d Merge branch 'dev' into web-add
  • edac0e6 Merge branch 'dev' into web-add

📊 Changes

4 files changed (+155 additions, -60 deletions)

View changed files

📝 src/lib/components/chat/Chat.svelte (+14 -2)
📝 src/lib/components/chat/MessageInput/AttachWebpageModal.svelte (+48 -56)
📝 src/lib/components/workspace/Knowledge/KnowledgeBase.svelte (+71 -1)
📝 src/lib/components/workspace/Knowledge/KnowledgeBase/AddContentMenu.svelte (+22 -1)

📄 Description

Pull Request Checklist

Note to first-time contributors: Please open a discussion post in Discussions to discuss your idea/fix with the community before creating a pull request, and describe your changes before submitting a pull request.

This is to ensure large feature PRs are discussed with the community first, before starting work on it. If the community does not want this feature or it is not relevant for Open WebUI as a project, it can be identified in the discussion before working on the feature and submitting the PR.

Before submitting, make sure you've checked the following:

  • Target branch: Verify that the pull request targets the dev branch. Not targeting the dev branch will lead to immediate closure of the PR.
  • Description: Provide a concise description of the changes made in this pull request down below.
  • Changelog: Ensure a changelog entry following the format of Keep a Changelog is added at the bottom of the PR description.
  • Documentation: If necessary, update relevant documentation Open WebUI Docs like environment variables, the tutorials, or other documentation sources.
  • Dependencies: Are there any new dependencies? Have you updated the dependency versions in the documentation?
  • Testing: Perform manual tests to verify the implemented fix/feature works as intended AND does not break any other functionality. Take this as an opportunity to make screenshots of the feature/fix and include it in the PR description.
  • Agentic AI Code: Confirm this Pull Request is not written by any AI Agent or has at least gone through additional human review AND manual testing. If any AI Agent is the co-author of this PR, it may lead to immediate closure of the PR.
  • Code review: Have you performed a self-review of your code, addressing any coding standard issues and ensuring adherence to the project's coding standards?
  • Title Prefix: To clearly categorize this pull request, prefix the pull request title using one of the following:
    • feat: Introduces a new feature or enhancement to the codebase

Changelog Entry

Description

  • Slightly reworks the .svelte component to allow adding multiple URLs at once
  • Frontend will pass the URLs to the backend one by one to prevent spamming the to-be-fetched websites
    • IMPORTANT: ALSO to mirror existing behaviour for the knowledge bases where files are uploaded one by one and not at once
  • Allows adding websites to knowledge base now as well via new convenient button

Contributor License Agreement

By submitting this pull request, I confirm that I have read and fully agree to the Contributor License Agreement (CLA), and I am providing my contributions under its terms.

Note

Deleting the CLA section will lead to immediate closure of your PR and it will not be merged in.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/open-webui/open-webui/pull/19587 **Author:** [@Classic298](https://github.com/Classic298) **Created:** 11/29/2025 **Status:** ❌ Closed **Base:** `dev` ← **Head:** `web-add` --- ### 📝 Commits (8) - [`d39b279`](https://github.com/open-webui/open-webui/commit/d39b279684ec306cf9e826edf6f4d4a9cbdb2911) init impl. add webpage modal - [`ac75c19`](https://github.com/open-webui/open-webui/commit/ac75c19d2e6765447957fe515b75996365d8080e) Update AttachWebpageModal.svelte - [`3a9251c`](https://github.com/open-webui/open-webui/commit/3a9251c8e4e85120ff6a35527a1233339ffc8585) Update AttachWebpageModal.svelte - [`efe4bab`](https://github.com/open-webui/open-webui/commit/efe4bab305618fae281fe2961d83473204ab036f) Update AttachWebpageModal.svelte - [`e093310`](https://github.com/open-webui/open-webui/commit/e093310787dde4eca114e5c3c8c8c26298eb1458) Update KnowledgeBase.svelte - [`6e2333c`](https://github.com/open-webui/open-webui/commit/6e2333ccf7f339e4c512fdff201b3afc7706033d) Update KnowledgeBase.svelte - [`74a345d`](https://github.com/open-webui/open-webui/commit/74a345d7c2ab1ab4390b44c2b53e79c975854307) Merge branch 'dev' into web-add - [`edac0e6`](https://github.com/open-webui/open-webui/commit/edac0e6ca0a58de9e8b9d1b23deb781a8345df3e) Merge branch 'dev' into web-add ### 📊 Changes **4 files changed** (+155 additions, -60 deletions) <details> <summary>View changed files</summary> 📝 `src/lib/components/chat/Chat.svelte` (+14 -2) 📝 `src/lib/components/chat/MessageInput/AttachWebpageModal.svelte` (+48 -56) 📝 `src/lib/components/workspace/Knowledge/KnowledgeBase.svelte` (+71 -1) 📝 `src/lib/components/workspace/Knowledge/KnowledgeBase/AddContentMenu.svelte` (+22 -1) </details> ### 📄 Description # Pull Request Checklist ### Note to first-time contributors: Please open a discussion post in [Discussions](https://github.com/open-webui/open-webui/discussions) to discuss your idea/fix with the community before creating a pull request, and describe your changes before submitting a pull request. This is to ensure large feature PRs are discussed with the community first, before starting work on it. If the community does not want this feature or it is not relevant for Open WebUI as a project, it can be identified in the discussion before working on the feature and submitting the PR. **Before submitting, make sure you've checked the following:** - [X] **Target branch:** Verify that the pull request targets the `dev` branch. **Not targeting the `dev` branch will lead to immediate closure of the PR.** - [X] **Description:** Provide a concise description of the changes made in this pull request down below. - [X] **Changelog:** Ensure a changelog entry following the format of [Keep a Changelog](https://keepachangelog.com/) is added at the bottom of the PR description. - [X] **Documentation:** If necessary, update relevant documentation [Open WebUI Docs](https://github.com/open-webui/docs) like environment variables, the tutorials, or other documentation sources. - [X] **Dependencies:** Are there any new dependencies? Have you updated the dependency versions in the documentation? - [X] **Testing:** Perform manual tests to **verify the implemented fix/feature works as intended AND does not break any other functionality**. Take this as an opportunity to **make screenshots of the feature/fix and include it in the PR description**. - [X] **Agentic AI Code:** Confirm this Pull Request is **not written by any AI Agent** or has at least **gone through additional human review AND manual testing**. If any AI Agent is the co-author of this PR, it may lead to immediate closure of the PR. - [X] **Code review:** Have you performed a self-review of your code, addressing any coding standard issues and ensuring adherence to the project's coding standards? - [X] **Title Prefix:** To clearly categorize this pull request, prefix the pull request title using one of the following: - **feat**: Introduces a new feature or enhancement to the codebase # Changelog Entry ### Description - Slightly reworks the .svelte component to allow adding multiple URLs at once - Frontend will pass the URLs to the backend one by one to prevent spamming the to-be-fetched websites - IMPORTANT: **ALSO to mirror existing behaviour for the knowledge bases where files are uploaded one by one and not at once** - Allows adding websites to knowledge base now as well via new convenient button ### Contributor License Agreement By submitting this pull request, I confirm that I have read and fully agree to the [Contributor License Agreement (CLA)](https://github.com/open-webui/open-webui/blob/main/CONTRIBUTOR_LICENSE_AGREEMENT), and I am providing my contributions under its terms. > [!NOTE] > Deleting the CLA section will lead to immediate closure of your PR and it will not be merged in. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-20 05:50:53 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/open-webui#25256