[PR #2880] [CLOSED] Fix dirty vector data bug #7919

Closed
opened 2025-11-11 17:40:07 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/2880
Author: @zhanghaocore
Created: 6/6/2024
Status: Closed

Base: mainHead: fix_dirty_vector_data_bug


📝 Commits (10+)

  • dbfcad1 feat: title change
  • 6b791f0 feat: ui customization
  • eab8a03 update: sidebar layout
  • 2e1ca17 update: icon & title replacement
  • 46a720e feat: hide doc in chat & ui update
  • b1844e4 update: system name
  • 9fd67c0 Merge pull request #1 from ciai-engineering/fe-dev
  • 6f864ae enable external host
  • c1ce535 set workflow
  • 5f600f0 update: change model select & add doc mng & bot name

📊 Changes

43 files changed (+1169 additions, -434 deletions)

View changed files

📝 .github/workflows/build-release.yml (+6 -3)
📝 .github/workflows/docker-build.yaml (+254 -252)
HelmDeploy.md (+42 -0)
📝 backend/apps/rag/main.py (+3 -2)
📝 backend/apps/web/routers/documents.py (+16 -0)
📝 backend/config.py (+20 -7)
backend/static/favicon.ico (+0 -0)
copydata.sh (+11 -0)
📝 kubernetes/helm/templates/_helpers.tpl (+13 -0)
kubernetes/helm/templates/hrwebui-deployment.yaml (+65 -0)
kubernetes/helm/templates/hrwebui-pvc.yaml (+27 -0)
kubernetes/helm/templates/hrwebui-service.yaml (+29 -0)
📝 kubernetes/helm/templates/webui-deployment.yaml (+2 -0)
📝 kubernetes/helm/templates/webui-pvc.yaml (+1 -1)
📝 kubernetes/helm/templates/webui-service.yaml (+3 -2)
📝 kubernetes/helm/values.yaml (+48 -3)
📝 kubernetes/manifest/base/webui-deployment.yaml (+3 -1)
📝 src/app.html (+3 -4)
📝 src/lib/components/chat/MessageInput.svelte (+29 -16)
📝 src/lib/components/chat/Messages/Placeholder.svelte (+17 -11)

...and 23 more files

📄 Description

Pull Request Checklist

Note to first-time contributors: Please open a discussion post in Discussions and describe your changes before submitting a pull request.

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

  • Target branch: Please verify that the pull request targets the dev branch.
  • Description: Provide a concise description of the changes made in this pull request.
  • Changelog: Ensure a changelog entry following the format of Keep a Changelog is added at the bottom of the PR description.
  • Documentation: Have you updated relevant documentation Open WebUI Docs, or other documentation sources?
  • Dependencies: Are there any new dependencies? Have you updated the dependency versions in the documentation?
  • Testing: Have you written and run sufficient tests for validating the changes?
  • 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?
  • Prefix: To cleary categorize this pull request, prefix the pull request title, using one of the following:
    • BREAKING CHANGE: Significant changes that may affect compatibility
    • build: Changes that affect the build system or external dependencies
    • ci: Changes to our continuous integration processes or workflows
    • chore: Refactor, cleanup, or other non-functional code changes
    • docs: Documentation update or addition
    • feat: Introduces a new feature or enhancement to the codebase
    • fix: Bug fix or error correction
    • i18n: Internationalization or localization changes
    • perf: Performance improvement
    • refactor: Code restructuring for better maintainability, readability, or scalability
    • style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc.)
    • test: Adding missing tests or correcting existing tests
    • WIP: Work in progress, a temporary label for incomplete or ongoing work

Changelog Entry

Description

  • [Concisely describe the changes made in this pull request, including any relevant motivation and impact (e.g., fixing a bug, adding a feature, or improving performance)]

Added

  • [List any new features, functionalities, or additions]

Changed

  • [List any changes, updates, refactorings, or optimizations]

Deprecated

  • [List any deprecated functionality or features that have been removed]

Removed

  • [List any removed features, files, or functionalities]

Fixed

  • [List any fixes, corrections, or bug fixes]

Security

  • [List any new or updated security-related changes, including vulnerability fixes]

Breaking Changes

  • BREAKING CHANGE: [List any breaking changes affecting compatibility or functionality]

Additional Information

  • [Insert any additional context, notes, or explanations for the changes]
    • [Reference any related issues, commits, or other relevant information]

Screenshots or Videos

  • [Attach any relevant screenshots or videos demonstrating the changes]

🔄 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/2880 **Author:** [@zhanghaocore](https://github.com/zhanghaocore) **Created:** 6/6/2024 **Status:** ❌ Closed **Base:** `main` ← **Head:** `fix_dirty_vector_data_bug` --- ### 📝 Commits (10+) - [`dbfcad1`](https://github.com/open-webui/open-webui/commit/dbfcad1f3cef8bcf191b8daa1fff40e9b68d182a) feat: title change - [`6b791f0`](https://github.com/open-webui/open-webui/commit/6b791f010d3c41ab9dc3cf5d13b7504a76a4b758) feat: ui customization - [`eab8a03`](https://github.com/open-webui/open-webui/commit/eab8a038e76280d188ea524130a058681403cfba) update: sidebar layout - [`2e1ca17`](https://github.com/open-webui/open-webui/commit/2e1ca177e14d405d9a0bdd50c9db993c68215979) update: icon & title replacement - [`46a720e`](https://github.com/open-webui/open-webui/commit/46a720efe92168b541c730e92cae5b81783f5023) feat: hide doc in chat & ui update - [`b1844e4`](https://github.com/open-webui/open-webui/commit/b1844e4ea9d3c3db47427352813979eea9d9fe85) update: system name - [`9fd67c0`](https://github.com/open-webui/open-webui/commit/9fd67c04cdf6008053b1901ed7a0d963216e7794) Merge pull request #1 from ciai-engineering/fe-dev - [`6f864ae`](https://github.com/open-webui/open-webui/commit/6f864ae271aca3cae92c955c8fccde6761f80031) enable external host - [`c1ce535`](https://github.com/open-webui/open-webui/commit/c1ce5355062e0f617ab7317f64633e07bee76dd4) set workflow - [`5f600f0`](https://github.com/open-webui/open-webui/commit/5f600f0e8bc7f784c24693b437585551fe230b04) update: change model select & add doc mng & bot name ### 📊 Changes **43 files changed** (+1169 additions, -434 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/build-release.yml` (+6 -3) 📝 `.github/workflows/docker-build.yaml` (+254 -252) ➕ `HelmDeploy.md` (+42 -0) 📝 `backend/apps/rag/main.py` (+3 -2) 📝 `backend/apps/web/routers/documents.py` (+16 -0) 📝 `backend/config.py` (+20 -7) ➕ `backend/static/favicon.ico` (+0 -0) ➕ `copydata.sh` (+11 -0) 📝 `kubernetes/helm/templates/_helpers.tpl` (+13 -0) ➕ `kubernetes/helm/templates/hrwebui-deployment.yaml` (+65 -0) ➕ `kubernetes/helm/templates/hrwebui-pvc.yaml` (+27 -0) ➕ `kubernetes/helm/templates/hrwebui-service.yaml` (+29 -0) 📝 `kubernetes/helm/templates/webui-deployment.yaml` (+2 -0) 📝 `kubernetes/helm/templates/webui-pvc.yaml` (+1 -1) 📝 `kubernetes/helm/templates/webui-service.yaml` (+3 -2) 📝 `kubernetes/helm/values.yaml` (+48 -3) 📝 `kubernetes/manifest/base/webui-deployment.yaml` (+3 -1) 📝 `src/app.html` (+3 -4) 📝 `src/lib/components/chat/MessageInput.svelte` (+29 -16) 📝 `src/lib/components/chat/Messages/Placeholder.svelte` (+17 -11) _...and 23 more files_ </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) and describe your changes before submitting a pull request. **Before submitting, make sure you've checked the following:** - [ ] **Target branch:** Please verify that the pull request targets the `dev` branch. - [ ] **Description:** Provide a concise description of the changes made in this pull request. - [ ] **Changelog:** Ensure a changelog entry following the format of [Keep a Changelog](https://keepachangelog.com/) is added at the bottom of the PR description. - [ ] **Documentation:** Have you updated relevant documentation [Open WebUI Docs](https://github.com/open-webui/docs), or other documentation sources? - [ ] **Dependencies:** Are there any new dependencies? Have you updated the dependency versions in the documentation? - [ ] **Testing:** Have you written and run sufficient tests for validating the changes? - [ ] **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? - [ ] **Prefix:** To cleary categorize this pull request, prefix the pull request title, using one of the following: - **BREAKING CHANGE**: Significant changes that may affect compatibility - **build**: Changes that affect the build system or external dependencies - **ci**: Changes to our continuous integration processes or workflows - **chore**: Refactor, cleanup, or other non-functional code changes - **docs**: Documentation update or addition - **feat**: Introduces a new feature or enhancement to the codebase - **fix**: Bug fix or error correction - **i18n**: Internationalization or localization changes - **perf**: Performance improvement - **refactor**: Code restructuring for better maintainability, readability, or scalability - **style**: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc.) - **test**: Adding missing tests or correcting existing tests - **WIP**: Work in progress, a temporary label for incomplete or ongoing work # Changelog Entry ### Description - [Concisely describe the changes made in this pull request, including any relevant motivation and impact (e.g., fixing a bug, adding a feature, or improving performance)] ### Added - [List any new features, functionalities, or additions] ### Changed - [List any changes, updates, refactorings, or optimizations] ### Deprecated - [List any deprecated functionality or features that have been removed] ### Removed - [List any removed features, files, or functionalities] ### Fixed - [List any fixes, corrections, or bug fixes] ### Security - [List any new or updated security-related changes, including vulnerability fixes] ### Breaking Changes - **BREAKING CHANGE**: [List any breaking changes affecting compatibility or functionality] --- ### Additional Information - [Insert any additional context, notes, or explanations for the changes] - [Reference any related issues, commits, or other relevant information] ### Screenshots or Videos - [Attach any relevant screenshots or videos demonstrating the changes] --- <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 2025-11-11 17:40:07 -06: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#7919