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/10416
**Author:** [@jyang-ca](https://github.com/jyang-ca)
**Created:** 2/20/2025
**Status:** ❌ Closed
**Base:** `main` ← **Head:** `feature-user-api`
---
### 📝 Commits (10+)
- [`844dbbe`](https://github.com/open-webui/open-webui/commit/844dbbe275054bc198c6fdd7815e12f5abcef993) Replace openai apis to hkust azure apis
- [`1276c07`](https://github.com/open-webui/open-webui/commit/1276c07414444a18bc97b0c63b0a2a63d486dd1f) Add frontend build files
- [`73a465e`](https://github.com/open-webui/open-webui/commit/73a465e5e8c1ba63915ffb58b5eb5c2406c46fee) Merge branch 'dev' into source-merge
- [`917467d`](https://github.com/open-webui/open-webui/commit/917467d2de7a284a4b0a91172b7938657cda242f) add qa_extractor
- [`dd0480c`](https://github.com/open-webui/open-webui/commit/dd0480c9be15f65074aad4bcb8106198955b641d) add json merger for qa from qa_extractor
- [`6d3c7b1`](https://github.com/open-webui/open-webui/commit/6d3c7b1bf2e3c96aead91e126570474124e2239b) add no_answer_remover.py
- [`abc0574`](https://github.com/open-webui/open-webui/commit/abc0574df45f98a956ea1116aa1fbc7513a8f7c3) add useful qa selector
- [`aa3a59e`](https://github.com/open-webui/open-webui/commit/aa3a59ec11e71e640590d8019361acd4bee329da) fix: add time sleep for file uploading.
- [`e4b5440`](https://github.com/open-webui/open-webui/commit/e4b54400c7e4a7b9c5a497d2cca4546303d8fb12) add json2doc saver
- [`08282fa`](https://github.com/open-webui/open-webui/commit/08282fa80592366f5ee455b097021eeb87fde236) Merge branch 'feat/json2doc-saver' into dev
### 📊 Changes
**6939 files changed** (+101143 additions, -22 deletions)
<details>
<summary>View changed files</summary>
📝 `backend/open_webui/config.py` (+9 -0)
➕ `backend/open_webui/internal/migrations/019_add_user_ust_api_key.py` (+48 -0)
📝 `backend/open_webui/models/auths.py` (+13 -5)
📝 `backend/open_webui/models/users.py` (+5 -0)
📝 `backend/open_webui/retrieval/utils.py` (+2 -2)
📝 `backend/open_webui/routers/auths.py` (+36 -2)
📝 `backend/open_webui/routers/images.py` (+5 -4)
📝 `backend/open_webui/routers/openai.py` (+2 -2)
📝 `backend/open_webui/routers/retrieval.py` (+2 -0)
➕ `extractor/chat_log.txt` (+19509 -0)
➕ `extractor/faq0.json` (+24 -0)
➕ `extractor/faq1.json` (+40 -0)
➕ `extractor/faq10.json` (+68 -0)
➕ `extractor/faq100.json` (+48 -0)
➕ `extractor/faq101.json` (+32 -0)
➕ `extractor/faq102.json` (+40 -0)
➕ `extractor/faq103.json` (+48 -0)
➕ `extractor/faq104.json` (+40 -0)
➕ `extractor/faq105.json` (+56 -0)
➕ `extractor/faq106.json` (+32 -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/10416
Author: @jyang-ca
Created: 2/20/2025
Status: ❌ Closed
Base:
main← Head:feature-user-api📝 Commits (10+)
844dbbeReplace openai apis to hkust azure apis1276c07Add frontend build files73a465eMerge branch 'dev' into source-merge917467dadd qa_extractordd0480cadd json merger for qa from qa_extractor6d3c7b1add no_answer_remover.pyabc0574add useful qa selectoraa3a59efix: add time sleep for file uploading.e4b5440add json2doc saver08282faMerge branch 'feat/json2doc-saver' into dev📊 Changes
6939 files changed (+101143 additions, -22 deletions)
View changed files
📝
backend/open_webui/config.py(+9 -0)➕
backend/open_webui/internal/migrations/019_add_user_ust_api_key.py(+48 -0)📝
backend/open_webui/models/auths.py(+13 -5)📝
backend/open_webui/models/users.py(+5 -0)📝
backend/open_webui/retrieval/utils.py(+2 -2)📝
backend/open_webui/routers/auths.py(+36 -2)📝
backend/open_webui/routers/images.py(+5 -4)📝
backend/open_webui/routers/openai.py(+2 -2)📝
backend/open_webui/routers/retrieval.py(+2 -0)➕
extractor/chat_log.txt(+19509 -0)➕
extractor/faq0.json(+24 -0)➕
extractor/faq1.json(+40 -0)➕
extractor/faq10.json(+68 -0)➕
extractor/faq100.json(+48 -0)➕
extractor/faq101.json(+32 -0)➕
extractor/faq102.json(+40 -0)➕
extractor/faq103.json(+48 -0)➕
extractor/faq104.json(+40 -0)➕
extractor/faq105.json(+56 -0)➕
extractor/faq106.json(+32 -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.