[PR #18038] [CLOSED] Async db #40281

Closed
opened 2026-04-25 12:41:01 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/18038
Author: @tjbck
Created: 10/3/2025
Status: Closed

Base: mainHead: async-db


📝 Commits (10+)

📊 Changes

52 files changed (+1710 additions, -1518 deletions)

View changed files

📝 backend/open_webui/config.py (+32 -26)
📝 backend/open_webui/functions.py (+11 -10)
📝 backend/open_webui/internal/db.py (+26 -20)
📝 backend/open_webui/main.py (+19 -16)
📝 backend/open_webui/models/auths.py (+30 -28)
📝 backend/open_webui/models/channels.py (+21 -21)
📝 backend/open_webui/models/chats.py (+192 -175)
📝 backend/open_webui/models/feedbacks.py (+54 -48)
📝 backend/open_webui/models/files.py (+51 -43)
📝 backend/open_webui/models/folders.py (+73 -56)
📝 backend/open_webui/models/functions.py (+61 -57)
📝 backend/open_webui/models/groups.py (+61 -57)
📝 backend/open_webui/models/knowledge.py (+35 -35)
📝 backend/open_webui/models/memories.py (+32 -32)
📝 backend/open_webui/models/messages.py (+55 -53)
📝 backend/open_webui/models/models.py (+61 -49)
📝 backend/open_webui/models/notes.py (+21 -21)
📝 backend/open_webui/models/prompts.py (+25 -23)
📝 backend/open_webui/models/tags.py (+20 -18)
📝 backend/open_webui/models/tools.py (+40 -38)

...and 32 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 to validate 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 clearly 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]

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.


🔄 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/18038 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 10/3/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `async-db` --- ### 📝 Commits (10+) - [`44e9ae2`](https://github.com/open-webui/open-webui/commit/44e9ae243de2b95b4c7338c8454066522112d28f) init - [`e1da745`](https://github.com/open-webui/open-webui/commit/e1da74541bf024d953f376dade3253cf0bfdb6e3) wip: users, tools - [`f4cd24d`](https://github.com/open-webui/open-webui/commit/f4cd24d2ca196167f140ce1cc6db3393a19ec537) wip: tags - [`93d27b8`](https://github.com/open-webui/open-webui/commit/93d27b84d4ad7e981abacd601c545347fd415637) wip: prompts - [`30bd4a2`](https://github.com/open-webui/open-webui/commit/30bd4a2910253e768e9310387936d8fe23881c3c) wip: notes - [`446699e`](https://github.com/open-webui/open-webui/commit/446699e4150de443a0bdef82d3b80d1f58b9810d) wip: models - [`c512bf3`](https://github.com/open-webui/open-webui/commit/c512bf3559f7e7bdef61d918c595b280f59e696a) wip: messages - [`652dcab`](https://github.com/open-webui/open-webui/commit/652dcabd861921cfee63169da50e4ed6f40a3902) wip: memories - [`eb86ac7`](https://github.com/open-webui/open-webui/commit/eb86ac7a2b91fc64f53339ba3e2722bf45e3689f) wip: knowledge - [`3b9e454`](https://github.com/open-webui/open-webui/commit/3b9e454fb40cb729698fbf823df252f4cfa35997) wip: groups ### 📊 Changes **52 files changed** (+1710 additions, -1518 deletions) <details> <summary>View changed files</summary> 📝 `backend/open_webui/config.py` (+32 -26) 📝 `backend/open_webui/functions.py` (+11 -10) 📝 `backend/open_webui/internal/db.py` (+26 -20) 📝 `backend/open_webui/main.py` (+19 -16) 📝 `backend/open_webui/models/auths.py` (+30 -28) 📝 `backend/open_webui/models/channels.py` (+21 -21) 📝 `backend/open_webui/models/chats.py` (+192 -175) 📝 `backend/open_webui/models/feedbacks.py` (+54 -48) 📝 `backend/open_webui/models/files.py` (+51 -43) 📝 `backend/open_webui/models/folders.py` (+73 -56) 📝 `backend/open_webui/models/functions.py` (+61 -57) 📝 `backend/open_webui/models/groups.py` (+61 -57) 📝 `backend/open_webui/models/knowledge.py` (+35 -35) 📝 `backend/open_webui/models/memories.py` (+32 -32) 📝 `backend/open_webui/models/messages.py` (+55 -53) 📝 `backend/open_webui/models/models.py` (+61 -49) 📝 `backend/open_webui/models/notes.py` (+21 -21) 📝 `backend/open_webui/models/prompts.py` (+25 -23) 📝 `backend/open_webui/models/tags.py` (+20 -18) 📝 `backend/open_webui/models/tools.py` (+40 -38) _...and 32 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 to validate 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 clearly 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] ### 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. --- <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-25 12:41:01 -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#40281