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
i18n: Update Chinese Translation
🔄 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/8710
**Author:** [@karllee830](https://github.com/karllee830)
**Created:** 1/21/2025
**Status:** ❌ Closed
**Base:** `main` ← **Head:** `translate`
---
### 📝 Commits (10+)
- [`3321885`](https://github.com/open-webui/open-webui/commit/332188535e643585f4bba07d9de2328cd0fd5502) add option to add database schema as env var
- [`6f1065b`](https://github.com/open-webui/open-webui/commit/6f1065b56aa6630f614925e1afd1bf23f26ec232) Merge branch 'dev' of github.com:open-webui/open-webui
- [`61303a2`](https://github.com/open-webui/open-webui/commit/61303a216ccf629b1afb53c0b4f1ba29612ce87c) refac: styling
- [`15a182c`](https://github.com/open-webui/open-webui/commit/15a182c9d6910ec8430c19ce3d6c22498c32214d) refac: styling
- [`960683e`](https://github.com/open-webui/open-webui/commit/960683eceda2cf1bba46d82b2b7c467dbc200200) fix: torch mps not working
- [`a0e63b0`](https://github.com/open-webui/open-webui/commit/a0e63b08c3849b40b154478a206048ce87b194e3) fix: searchapi engine not showing
- [`8117bf8`](https://github.com/open-webui/open-webui/commit/8117bf8603527e570a802c8496d78ac760ca6dd4) Add admin check
- [`0c5bb6d`](https://github.com/open-webui/open-webui/commit/0c5bb6df806ad9a1509fae8ed7e543219be4272d) Merge pull request #8371 from tarmst/fix-admins-added-to-groups-from-oauth-group-mgmt
- [`82ff6c3`](https://github.com/open-webui/open-webui/commit/82ff6c371b88a4dcda85a000a4bd2dfbbc912789) use ldap3.NONE for parameter get_info in ldap_auth function to accelerate login
- [`70a6a0d`](https://github.com/open-webui/open-webui/commit/70a6a0d9e842a8b9defae664804cd3f9b1efe8ff) Fix errors for RangeErrors, Fix for accessing undefined objects in Chat.svelte
### 📊 Changes
**184 files changed** (+4740 additions, -2663 deletions)
<details>
<summary>View changed files</summary>
📝 `.github/workflows/integration-test.yml` (+2 -0)
📝 `CHANGELOG.md` (+1 -1)
📝 `backend/open_webui/__init__.py` (+19 -0)
📝 `backend/open_webui/config.py` (+168 -34)
📝 `backend/open_webui/constants.py` (+1 -0)
📝 `backend/open_webui/env.py` (+4 -0)
📝 `backend/open_webui/internal/db.py` (+4 -2)
📝 `backend/open_webui/main.py` (+9 -0)
📝 `backend/open_webui/models/chats.py` (+1 -1)
📝 `backend/open_webui/models/groups.py` (+21 -3)
📝 `backend/open_webui/models/users.py` (+13 -1)
📝 `backend/open_webui/retrieval/utils.py` (+14 -2)
📝 `backend/open_webui/retrieval/vector/dbs/chroma.py` (+2 -2)
📝 `backend/open_webui/retrieval/vector/dbs/milvus.py` (+2 -1)
📝 `backend/open_webui/retrieval/vector/dbs/pgvector.py` (+24 -19)
📝 `backend/open_webui/retrieval/web/bing.py` (+1 -1)
📝 `backend/open_webui/routers/auths.py` (+16 -4)
📝 `backend/open_webui/routers/files.py` (+2 -0)
📝 `backend/open_webui/routers/groups.py` (+5 -0)
📝 `backend/open_webui/routers/images.py` (+20 -3)
_...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:**
- [x] **Target branch:** Please verify that the pull request targets the `dev` branch.
- [x] **Description:** Provide a concise description of the changes made in this pull request.
- [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:** Have you updated relevant documentation [Open WebUI Docs](https://github.com/open-webui/docs), or other documentation sources?
- [x] **Dependencies:** Are there any new dependencies? Have you updated the dependency versions in the documentation?
- [x] **Testing:** Have you written and run sufficient tests for validating the changes?
- [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] **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
- i18n: Update Chinese Translation
---
<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/8710
Author: @karllee830
Created: 1/21/2025
Status: ❌ Closed
Base:
main← Head:translate📝 Commits (10+)
3321885add option to add database schema as env var6f1065bMerge branch 'dev' of github.com:open-webui/open-webui61303a2refac: styling15a182crefac: styling960683efix: torch mps not workinga0e63b0fix: searchapi engine not showing8117bf8Add admin check0c5bb6dMerge pull request #8371 from tarmst/fix-admins-added-to-groups-from-oauth-group-mgmt82ff6c3use ldap3.NONE for parameter get_info in ldap_auth function to accelerate login70a6a0dFix errors for RangeErrors, Fix for accessing undefined objects in Chat.svelte📊 Changes
184 files changed (+4740 additions, -2663 deletions)
View changed files
📝
.github/workflows/integration-test.yml(+2 -0)📝
CHANGELOG.md(+1 -1)📝
backend/open_webui/__init__.py(+19 -0)📝
backend/open_webui/config.py(+168 -34)📝
backend/open_webui/constants.py(+1 -0)📝
backend/open_webui/env.py(+4 -0)📝
backend/open_webui/internal/db.py(+4 -2)📝
backend/open_webui/main.py(+9 -0)📝
backend/open_webui/models/chats.py(+1 -1)📝
backend/open_webui/models/groups.py(+21 -3)📝
backend/open_webui/models/users.py(+13 -1)📝
backend/open_webui/retrieval/utils.py(+14 -2)📝
backend/open_webui/retrieval/vector/dbs/chroma.py(+2 -2)📝
backend/open_webui/retrieval/vector/dbs/milvus.py(+2 -1)📝
backend/open_webui/retrieval/vector/dbs/pgvector.py(+24 -19)📝
backend/open_webui/retrieval/web/bing.py(+1 -1)📝
backend/open_webui/routers/auths.py(+16 -4)📝
backend/open_webui/routers/files.py(+2 -0)📝
backend/open_webui/routers/groups.py(+5 -0)📝
backend/open_webui/routers/images.py(+20 -3)...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
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.