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/5732
**Author:** [@ChipCLee](https://github.com/ChipCLee)
**Created:** 9/26/2024
**Status:** ❌ Closed
**Base:** `main` ← **Head:** `pipeline`
---
### 📝 Commits (10+)
- [`e239c36`](https://github.com/open-webui/open-webui/commit/e239c36bed7a9922938158b3d5e74741fad77240) Merge pull request #5 from ciai-engineering/fe-dev
- [`dfef6dc`](https://github.com/open-webui/open-webui/commit/dfef6dca2e485ac8f9ac478bf619cafc05b9e7ee) fix: show set default model
- [`156e0cf`](https://github.com/open-webui/open-webui/commit/156e0cf21d4bfdf18f28e46061f0713e01056d7d) update: bot name
- [`c569365`](https://github.com/open-webui/open-webui/commit/c569365b61811291e9473c97ee6fa1dff1c4fc88) Merge pull request #6 from ciai-engineering/fe-dev
- [`4b17f39`](https://github.com/open-webui/open-webui/commit/4b17f392fd7fc282b1872936ae79c632e0a355c5) udpate: system name & ui
- [`8b4bbd3`](https://github.com/open-webui/open-webui/commit/8b4bbd3b89e593201c8a0fa2d49b2a67c9ee6631) update: bg change & theme color fix
- [`9380e5f`](https://github.com/open-webui/open-webui/commit/9380e5f343bd59c949104b35f70e7dc8388b3160) Merge pull request #7 from ciai-engineering/fe-dev
- [`ca6d754`](https://github.com/open-webui/open-webui/commit/ca6d7540a7e0f9ee999175fb81bf34fb64faac0b) fix: logo resolution & bg under dark mode
- [`a23d85a`](https://github.com/open-webui/open-webui/commit/a23d85ab5bd5165cefb2285617c657618c5ff0d3) Merge pull request #8 from ciai-engineering/fe-dev
- [`137aeff`](https://github.com/open-webui/open-webui/commit/137aeffc0455bbc3ad705c935c73b4ccc827518d) change token
### 📊 Changes
**137 files changed** (+6424 additions, -931 deletions)
<details>
<summary>View changed files</summary>
📝 `.github/workflows/build-release.yml` (+6 -3)
📝 `.github/workflows/docker-build.yaml` (+318 -316)
📝 `Dockerfile` (+42 -0)
➕ `HelmDeploy.md` (+59 -0)
📝 `backend/apps/audio/main.py` (+1 -1)
📝 `backend/apps/images/main.py` (+8 -8)
📝 `backend/apps/litellm/main.py` (+1 -1)
📝 `backend/apps/ollama/main.py` (+29 -25)
📝 `backend/apps/rag/main.py` (+58 -7)
📝 `backend/apps/rag/utils.py` (+28 -25)
➕ `backend/apps/web/exceptions/exception.py` (+2 -0)
📝 `backend/apps/web/internal/db.py` (+52 -0)
📝 `backend/apps/web/internal/migrations/001_initial_schema.py` (+2 -0)
➕ `backend/apps/web/internal/migrations/008_add_tools.py.py` (+60 -0)
📝 `backend/apps/web/main.py` (+5 -0)
📝 `backend/apps/web/models/auths.py` (+5 -1)
➕ `backend/apps/web/models/services.py` (+35 -0)
➕ `backend/apps/web/models/staffs.py` (+70 -0)
➕ `backend/apps/web/models/tools.py` (+127 -0)
📝 `backend/apps/web/models/users.py` (+5 -0)
_...and 80 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>
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
📋 Pull Request Information
Original PR: https://github.com/open-webui/open-webui/pull/5732
Author: @ChipCLee
Created: 9/26/2024
Status: ❌ Closed
Base:
main← Head:pipeline📝 Commits (10+)
e239c36Merge pull request #5 from ciai-engineering/fe-devdfef6dcfix: show set default model156e0cfupdate: bot namec569365Merge pull request #6 from ciai-engineering/fe-dev4b17f39udpate: system name & ui8b4bbd3update: bg change & theme color fix9380e5fMerge pull request #7 from ciai-engineering/fe-devca6d754fix: logo resolution & bg under dark modea23d85aMerge pull request #8 from ciai-engineering/fe-dev137aeffchange token📊 Changes
137 files changed (+6424 additions, -931 deletions)
View changed files
📝
.github/workflows/build-release.yml(+6 -3)📝
.github/workflows/docker-build.yaml(+318 -316)📝
Dockerfile(+42 -0)➕
HelmDeploy.md(+59 -0)📝
backend/apps/audio/main.py(+1 -1)📝
backend/apps/images/main.py(+8 -8)📝
backend/apps/litellm/main.py(+1 -1)📝
backend/apps/ollama/main.py(+29 -25)📝
backend/apps/rag/main.py(+58 -7)📝
backend/apps/rag/utils.py(+28 -25)➕
backend/apps/web/exceptions/exception.py(+2 -0)📝
backend/apps/web/internal/db.py(+52 -0)📝
backend/apps/web/internal/migrations/001_initial_schema.py(+2 -0)➕
backend/apps/web/internal/migrations/008_add_tools.py.py(+60 -0)📝
backend/apps/web/main.py(+5 -0)📝
backend/apps/web/models/auths.py(+5 -1)➕
backend/apps/web/models/services.py(+35 -0)➕
backend/apps/web/models/staffs.py(+70 -0)➕
backend/apps/web/models/tools.py(+127 -0)📝
backend/apps/web/models/users.py(+5 -0)...and 80 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:
devbranch.Changelog Entry
Description
Added
Changed
Deprecated
Removed
Fixed
Security
Breaking Changes
Additional Information
Screenshots or Videos
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.