[PR #5051] [MERGED] 0.3.17 #8407

Closed
opened 2025-11-11 17:55:46 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/5051
Author: @tjbck
Created: 8/30/2024
Status: Merged
Merged: 9/4/2024
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • 8994728 Update translation.json
  • 6589450 Merge pull request #4954 from open-webui/main
  • 0525dd2 feat: support Literal type in Tools
  • 30e03cb Add robots.txt to fix validation error
  • 718d69b Add meta description
  • 22117e0 A11y: Buttons do not have an accessible name
  • 7e1923f Add searchapi as an alternative web search
  • fd16129 Update color theme on system change
  • 2706b8c i18n: Update Catalan translation.json
  • a7b6d55 i18n: Update Catalan translation.json

📊 Changes

178 files changed (+2009 additions, -1333 deletions)

View changed files

📝 .github/workflows/release-pypi.yml (+1 -0)
📝 CHANGELOG.md (+25 -0)
📝 README.md (+1 -1)
backend/data/litellm/config.yaml (+0 -4)
📝 backend/data/readme.txt (+1 -1)
📝 backend/dev.sh (+1 -1)
📝 backend/open_webui/__init__.py (+7 -5)
📝 backend/open_webui/alembic.ini (+0 -0)
📝 backend/open_webui/apps/audio/main.py (+21 -34)
📝 backend/open_webui/apps/images/main.py (+29 -39)
📝 backend/open_webui/apps/images/utils/comfyui.py (+27 -12)
📝 backend/open_webui/apps/ollama/main.py (+22 -36)
📝 backend/open_webui/apps/openai/main.py (+23 -31)
📝 backend/open_webui/apps/rag/main.py (+114 -116)
📝 backend/open_webui/apps/rag/search/brave.py (+3 -3)
📝 backend/open_webui/apps/rag/search/duckduckgo.py (+3 -2)
📝 backend/open_webui/apps/rag/search/google_pse.py (+3 -4)
📝 backend/open_webui/apps/rag/search/jina_search.py (+3 -3)
📝 backend/open_webui/apps/rag/search/main.py (+3 -1)
backend/open_webui/apps/rag/search/searchapi.py (+48 -0)

...and 80 more files

📄 Description

No description provided


🔄 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/5051 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 8/30/2024 **Status:** ✅ Merged **Merged:** 9/4/2024 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`8994728`](https://github.com/open-webui/open-webui/commit/8994728d8b432f3747335dbbcfdcf3d036d94ce1) Update translation.json - [`6589450`](https://github.com/open-webui/open-webui/commit/6589450bd612c6489dbbd5fbfc709ed2482881f5) Merge pull request #4954 from open-webui/main - [`0525dd2`](https://github.com/open-webui/open-webui/commit/0525dd2bb5c13c18c92654bd7e025dc254f5e8ac) feat: support Literal type in Tools - [`30e03cb`](https://github.com/open-webui/open-webui/commit/30e03cbac40237aa1499eaecaba435aa36a4c248) Add robots.txt to fix validation error - [`718d69b`](https://github.com/open-webui/open-webui/commit/718d69b148a0c526c9095d4a0aa28e1d55a265f6) Add meta description - [`22117e0`](https://github.com/open-webui/open-webui/commit/22117e06b54ec8c962169c6a91fb2529a448aee4) A11y: Buttons do not have an accessible name - [`7e1923f`](https://github.com/open-webui/open-webui/commit/7e1923fcfe18a109c3b8516e812197d7378ed887) Add searchapi as an alternative web search - [`fd16129`](https://github.com/open-webui/open-webui/commit/fd1612935d1a912f31584c919fc7e6abc12186f5) Update color theme on system change - [`2706b8c`](https://github.com/open-webui/open-webui/commit/2706b8c59c5898a5a7f4a8f2a7fa196b12e18b89) i18n: Update Catalan translation.json - [`a7b6d55`](https://github.com/open-webui/open-webui/commit/a7b6d5507f4f3b134bbb2ee2cd3df99befbab39d) i18n: Update Catalan translation.json ### 📊 Changes **178 files changed** (+2009 additions, -1333 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/release-pypi.yml` (+1 -0) 📝 `CHANGELOG.md` (+25 -0) 📝 `README.md` (+1 -1) ➖ `backend/data/litellm/config.yaml` (+0 -4) 📝 `backend/data/readme.txt` (+1 -1) 📝 `backend/dev.sh` (+1 -1) 📝 `backend/open_webui/__init__.py` (+7 -5) 📝 `backend/open_webui/alembic.ini` (+0 -0) 📝 `backend/open_webui/apps/audio/main.py` (+21 -34) 📝 `backend/open_webui/apps/images/main.py` (+29 -39) 📝 `backend/open_webui/apps/images/utils/comfyui.py` (+27 -12) 📝 `backend/open_webui/apps/ollama/main.py` (+22 -36) 📝 `backend/open_webui/apps/openai/main.py` (+23 -31) 📝 `backend/open_webui/apps/rag/main.py` (+114 -116) 📝 `backend/open_webui/apps/rag/search/brave.py` (+3 -3) 📝 `backend/open_webui/apps/rag/search/duckduckgo.py` (+3 -2) 📝 `backend/open_webui/apps/rag/search/google_pse.py` (+3 -4) 📝 `backend/open_webui/apps/rag/search/jina_search.py` (+3 -3) 📝 `backend/open_webui/apps/rag/search/main.py` (+3 -1) ➕ `backend/open_webui/apps/rag/search/searchapi.py` (+48 -0) _...and 80 more files_ </details> ### 📄 Description _No description provided_ --- <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:55:46 -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#8407