[PR #2992] [MERGED] 0.3.2 #7947

Closed
opened 2025-11-11 17:40:58 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/2992
Author: @tjbck
Created: 6/10/2024
Status: Merged
Merged: 6/10/2024
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • 8e9e429 fix: tolerant readonly filesystem for copy favicon to static dir
  • efb4a71 adding Serply as an alternative web search
  • 4dcec48 adding Serply as an alternative web search
  • 14d33f0 Merge branch 'add-serply' into dev
  • 79bf8d6 undo changes to deprecated web search params
  • 14eb667 add changes to web search in admin settings
  • 2972774 refac
  • bf5a622 refac
  • 7349e1d refac
  • 140d7ff refac

📊 Changes

58 files changed (+1183 additions, -621 deletions)

View changed files

📝 CHANGELOG.md (+14 -0)
📝 README.md (+1 -1)
📝 backend/apps/rag/main.py (+18 -1)
backend/apps/rag/search/serply.py (+68 -0)
backend/apps/rag/search/testdata/serply.json (+206 -0)
📝 backend/config.py (+9 -2)
📝 package-lock.json (+2 -2)
📝 package.json (+2 -2)
📝 src/lib/components/admin/Settings/WebSearch.svelte (+19 -1)
📝 src/lib/components/chat/Chat.svelte (+98 -80)
📝 src/lib/components/chat/MessageInput.svelte (+1 -0)
📝 src/lib/components/chat/MessageInput/CallOverlay.svelte (+1 -1)
📝 src/lib/components/chat/Messages/ResponseMessage.svelte (+89 -81)
📝 src/lib/components/chat/Messages/ResponseMessage/WebSearchResults.svelte (+38 -3)
📝 src/lib/components/chat/Settings/Advanced/AdvancedParams.svelte (+164 -160)
📝 src/lib/components/chat/Settings/General.svelte (+29 -32)
📝 src/lib/components/documents/Settings/WebParams.svelte (+1 -1)
src/lib/components/icons/MagnifyingGlass.svelte (+19 -0)
📝 src/lib/components/workspace/Models/Knowledge.svelte (+2 -2)
📝 src/lib/i18n/locales/ar-BH/translation.json (+5 -1)

...and 38 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/2992 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 6/10/2024 **Status:** ✅ Merged **Merged:** 6/10/2024 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`8e9e429`](https://github.com/open-webui/open-webui/commit/8e9e429a912725ffdfc0aaa85af37f420e87a3c4) fix: tolerant readonly filesystem for copy favicon to static dir - [`efb4a71`](https://github.com/open-webui/open-webui/commit/efb4a710c80635cc0066fc060e5021de79732d1f) adding Serply as an alternative web search - [`4dcec48`](https://github.com/open-webui/open-webui/commit/4dcec4855eb66ef3a4c4adc7b2fa31da21fd3c3c) adding Serply as an alternative web search - [`14d33f0`](https://github.com/open-webui/open-webui/commit/14d33f0fccba6670ef7511a5c8ef1124ed197e91) Merge branch 'add-serply' into dev - [`79bf8d6`](https://github.com/open-webui/open-webui/commit/79bf8d6dd31dc17f37aea0bfb339b7150484050c) undo changes to deprecated web search params - [`14eb667`](https://github.com/open-webui/open-webui/commit/14eb667fc8b332d1d8027aee510a4d2a40edb93a) add changes to web search in admin settings - [`2972774`](https://github.com/open-webui/open-webui/commit/2972774d872066fe179c0e255e9a9dc1a8603621) refac - [`bf5a622`](https://github.com/open-webui/open-webui/commit/bf5a62298c4c87ff222b759e45d2dd195764fa6c) refac - [`7349e1d`](https://github.com/open-webui/open-webui/commit/7349e1d8c8f5125d7f567e520b5e923c380f41f9) refac - [`140d7ff`](https://github.com/open-webui/open-webui/commit/140d7ff72149d97b1ef7e130c48f223020bd472b) refac ### 📊 Changes **58 files changed** (+1183 additions, -621 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+14 -0) 📝 `README.md` (+1 -1) 📝 `backend/apps/rag/main.py` (+18 -1) ➕ `backend/apps/rag/search/serply.py` (+68 -0) ➕ `backend/apps/rag/search/testdata/serply.json` (+206 -0) 📝 `backend/config.py` (+9 -2) 📝 `package-lock.json` (+2 -2) 📝 `package.json` (+2 -2) 📝 `src/lib/components/admin/Settings/WebSearch.svelte` (+19 -1) 📝 `src/lib/components/chat/Chat.svelte` (+98 -80) 📝 `src/lib/components/chat/MessageInput.svelte` (+1 -0) 📝 `src/lib/components/chat/MessageInput/CallOverlay.svelte` (+1 -1) 📝 `src/lib/components/chat/Messages/ResponseMessage.svelte` (+89 -81) 📝 `src/lib/components/chat/Messages/ResponseMessage/WebSearchResults.svelte` (+38 -3) 📝 `src/lib/components/chat/Settings/Advanced/AdvancedParams.svelte` (+164 -160) 📝 `src/lib/components/chat/Settings/General.svelte` (+29 -32) 📝 `src/lib/components/documents/Settings/WebParams.svelte` (+1 -1) ➕ `src/lib/components/icons/MagnifyingGlass.svelte` (+19 -0) 📝 `src/lib/components/workspace/Models/Knowledge.svelte` (+2 -2) 📝 `src/lib/i18n/locales/ar-BH/translation.json` (+5 -1) _...and 38 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:40:58 -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#7947