[PR #3159] [MERGED] 0.3.5 #44245

Closed
opened 2026-04-29 18:15:59 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

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

Base: mainHead: dev


📝 Commits (10+)

  • e130ad7 Added timeout setting for ollama streaming response
  • 493e306 enh: ability to edit memories
  • d6fd2a8 refac
  • 5300d2c refac
  • b813695 refac
  • 4727e5c Merge pull request #3128 from open-webui/voice-enh
  • 7ea572f Merge pull request #3138 from open-webui/main
  • 5844d05 Added the ability to sort users in the admin panel
  • c07e722 Added the ability to sort users in the admin panel
  • 91d5353 Added the ability to sort chats in the admin panel chats modal

📊 Changes

92 files changed (+3197 additions, -1257 deletions)

View changed files

📝 .github/workflows/docker-build.yaml (+54 -2)
📝 CHANGELOG.md (+24 -0)
📝 README.md (+2 -2)
📝 TROUBLESHOOTING.md (+4 -0)
📝 backend/apps/images/main.py (+20 -0)
📝 backend/apps/images/utils/comfyui.py (+16 -0)
📝 backend/apps/ollama/main.py (+13 -3)
📝 backend/apps/openai/main.py (+1 -3)
📝 backend/apps/rag/main.py (+17 -1)
backend/apps/rag/search/tavily.py (+39 -0)
backend/apps/webui/internal/migrations/013_add_user_info.py (+48 -0)
📝 backend/apps/webui/main.py (+2 -0)
📝 backend/apps/webui/models/memories.py (+14 -0)
📝 backend/apps/webui/models/users.py (+2 -0)
📝 backend/apps/webui/routers/auths.py (+11 -2)
📝 backend/apps/webui/routers/memories.py (+32 -0)
📝 backend/apps/webui/routers/users.py (+46 -0)
📝 backend/config.py (+38 -0)
📝 backend/main.py (+81 -3)
📝 backend/utils/task.py (+11 -7)

...and 72 more files

📄 Description

TODO

  • Mute voice input
  • Dynamic input sensitivity

🔄 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/3159 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 6/14/2024 **Status:** ✅ Merged **Merged:** 6/17/2024 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`e130ad7`](https://github.com/open-webui/open-webui/commit/e130ad74d147a6871df9a9f043a16b89577b2f75) Added timeout setting for ollama streaming response - [`493e306`](https://github.com/open-webui/open-webui/commit/493e3068d806520b7fde713cd52740c236758a61) enh: ability to edit memories - [`d6fd2a8`](https://github.com/open-webui/open-webui/commit/d6fd2a822818e714eb148db61b3edce72fcf1de2) refac - [`5300d2c`](https://github.com/open-webui/open-webui/commit/5300d2c531af7a961aea740ea96893399724401d) refac - [`b813695`](https://github.com/open-webui/open-webui/commit/b8136951e4344c112d7e475e02cf3b6ecf6a3109) refac - [`4727e5c`](https://github.com/open-webui/open-webui/commit/4727e5cbb1fe43e3f39616ab525805a5eb41161a) Merge pull request #3128 from open-webui/voice-enh - [`7ea572f`](https://github.com/open-webui/open-webui/commit/7ea572fdcabfd523845ecd92f1f699e016185961) Merge pull request #3138 from open-webui/main - [`5844d05`](https://github.com/open-webui/open-webui/commit/5844d0525ae48fc46e9af6daec908193634fbddb) Added the ability to sort users in the admin panel - [`c07e722`](https://github.com/open-webui/open-webui/commit/c07e7221e58582c2dfadddc72b14d33cd00099e2) Added the ability to sort users in the admin panel - [`91d5353`](https://github.com/open-webui/open-webui/commit/91d53530e6e9dd3e5ed410cbd4839a38de04361d) Added the ability to sort chats in the admin panel chats modal ### 📊 Changes **92 files changed** (+3197 additions, -1257 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/docker-build.yaml` (+54 -2) 📝 `CHANGELOG.md` (+24 -0) 📝 `README.md` (+2 -2) 📝 `TROUBLESHOOTING.md` (+4 -0) 📝 `backend/apps/images/main.py` (+20 -0) 📝 `backend/apps/images/utils/comfyui.py` (+16 -0) 📝 `backend/apps/ollama/main.py` (+13 -3) 📝 `backend/apps/openai/main.py` (+1 -3) 📝 `backend/apps/rag/main.py` (+17 -1) ➕ `backend/apps/rag/search/tavily.py` (+39 -0) ➕ `backend/apps/webui/internal/migrations/013_add_user_info.py` (+48 -0) 📝 `backend/apps/webui/main.py` (+2 -0) 📝 `backend/apps/webui/models/memories.py` (+14 -0) 📝 `backend/apps/webui/models/users.py` (+2 -0) 📝 `backend/apps/webui/routers/auths.py` (+11 -2) 📝 `backend/apps/webui/routers/memories.py` (+32 -0) 📝 `backend/apps/webui/routers/users.py` (+46 -0) 📝 `backend/config.py` (+38 -0) 📝 `backend/main.py` (+81 -3) 📝 `backend/utils/task.py` (+11 -7) _...and 72 more files_ </details> ### 📄 Description TODO - [x] Mute voice input - [x] Dynamic input sensitivity --- <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 2026-04-29 18:16:00 -05: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#44245