[PR #3013] [MERGED] 0.3.3 #7957

Closed
opened 2025-11-11 17:41:12 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

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

Base: mainHead: dev


📝 Commits (10+)

📊 Changes

93 files changed (+3147 additions, -398 deletions)

View changed files

📝 CHANGELOG.md (+14 -0)
📝 README.md (+4 -0)
📝 backend/apps/rag/main.py (+43 -25)
backend/apps/rag/search/duckduckgo.py (+46 -0)
📝 backend/apps/rag/search/serply.py (+10 -10)
📝 backend/apps/rag/utils.py (+2 -12)
📝 backend/apps/socket/main.py (+0 -12)
backend/apps/webui/internal/migrations/012_add_tools.py (+61 -0)
📝 backend/apps/webui/main.py (+5 -2)
backend/apps/webui/models/tools.py (+132 -0)
📝 backend/apps/webui/routers/chats.py (+1 -1)
backend/apps/webui/routers/tools.py (+183 -0)
📝 backend/apps/webui/routers/utils.py (+17 -0)
backend/apps/webui/utils.py (+23 -0)
📝 backend/config.py (+23 -3)
📝 backend/constants.py (+1 -0)
📝 backend/main.py (+221 -19)
📝 backend/requirements.txt (+2 -1)
📝 backend/start_windows.bat (+2 -1)
📝 backend/utils/task.py (+5 -0)

...and 73 more files

📄 Description

TODO

  • Model Tools Assignment

🔄 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/3013 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 6/11/2024 **Status:** ✅ Merged **Merged:** 6/12/2024 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`54bbfa5`](https://github.com/open-webui/open-webui/commit/54bbfa5e89ccfd59d8a92ca6888afde8404067d4) chore: npm - [`5a3736f`](https://github.com/open-webui/open-webui/commit/5a3736f1ee2c91359b1bb966c7866f1d9819acd8) feat: tools page - [`8ad52f0`](https://github.com/open-webui/open-webui/commit/8ad52f0fccf3e3a93c5e1d8f37c8372c5a75d361) feat: code editor - [`f2bd3fd`](https://github.com/open-webui/open-webui/commit/f2bd3fdf1988e04302b8796b2503363794683a10) chore: rm console log - [`dd423f4`](https://github.com/open-webui/open-webui/commit/dd423f43de095174ab900606959ec1a7c369df37) feat: default tools template - [`fb0f106`](https://github.com/open-webui/open-webui/commit/fb0f106afed467e8a6caa43bab089306c332bc35) refac: styling - [`8b1e2ce`](https://github.com/open-webui/open-webui/commit/8b1e2ce2795b753778ca5d6408a05fc7ed0adcbb) feat: code format - [`12a04b1`](https://github.com/open-webui/open-webui/commit/12a04b118f58d59c38d0e11835a0958e525165a1) refac: styling - [`f43b545`](https://github.com/open-webui/open-webui/commit/f43b545bdd6261d8a4e04c5c00a7ca8b21c74105) refac - [`6e7e575`](https://github.com/open-webui/open-webui/commit/6e7e575a18848aee64b1913fd76bee0a3190fc60) refac ### 📊 Changes **93 files changed** (+3147 additions, -398 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+14 -0) 📝 `README.md` (+4 -0) 📝 `backend/apps/rag/main.py` (+43 -25) ➕ `backend/apps/rag/search/duckduckgo.py` (+46 -0) 📝 `backend/apps/rag/search/serply.py` (+10 -10) 📝 `backend/apps/rag/utils.py` (+2 -12) 📝 `backend/apps/socket/main.py` (+0 -12) ➕ `backend/apps/webui/internal/migrations/012_add_tools.py` (+61 -0) 📝 `backend/apps/webui/main.py` (+5 -2) ➕ `backend/apps/webui/models/tools.py` (+132 -0) 📝 `backend/apps/webui/routers/chats.py` (+1 -1) ➕ `backend/apps/webui/routers/tools.py` (+183 -0) 📝 `backend/apps/webui/routers/utils.py` (+17 -0) ➕ `backend/apps/webui/utils.py` (+23 -0) 📝 `backend/config.py` (+23 -3) 📝 `backend/constants.py` (+1 -0) 📝 `backend/main.py` (+221 -19) 📝 `backend/requirements.txt` (+2 -1) 📝 `backend/start_windows.bat` (+2 -1) 📝 `backend/utils/task.py` (+5 -0) _...and 73 more files_ </details> ### 📄 Description TODO - [x] Model Tools Assignment --- <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:41:12 -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#7957