[PR #7307] [MERGED] 0.4.5 #8837

Closed
opened 2025-11-11 18:07:18 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/7307
Author: @tjbck
Created: 11/24/2024
Status: Merged
Merged: 11/26/2024
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • d24c21b Fix
  • 374d6ca Python Formatting (Failed CI - fixed)
  • 8744a12 Merge pull request #7274 from DmitriyAlergant-T1A/fix/logging_cleanup
  • b2d3bfa feat: add description in Tool
  • a83f89d fix: prevent TTS blocking using aiohttp and aiofiles
  • 5ed5e53 Merge pull request #7279 from Luceurre/fix/missing-tool-description
  • c567185 refac: rich text input behaviour
  • 2a5506a fix: textarea input height issue
  • d3acb5c Merge pull request #7286 from houcheng/tts-aiofiles
  • 9ff580b fix: textarea input new line issue

📊 Changes

82 files changed (+1108 additions, -338 deletions)

View changed files

📝 CHANGELOG.md (+14 -0)
📝 CODE_OF_CONDUCT.md (+22 -7)
📝 backend/open_webui/apps/audio/main.py (+47 -57)
📝 backend/open_webui/apps/ollama/main.py (+35 -11)
📝 backend/open_webui/apps/openai/main.py (+0 -2)
📝 backend/open_webui/apps/retrieval/utils.py (+0 -40)
📝 backend/open_webui/apps/webui/main.py (+15 -4)
📝 backend/open_webui/apps/webui/routers/configs.py (+28 -17)
📝 backend/open_webui/apps/webui/utils.py (+11 -6)
📝 backend/open_webui/config.py (+16 -9)
📝 backend/open_webui/main.py (+52 -32)
📝 backend/open_webui/utils/task.py (+47 -0)
📝 backend/open_webui/utils/tools.py (+32 -1)
📝 backend/requirements.txt (+1 -0)
📝 package-lock.json (+2 -2)
📝 package.json (+1 -1)
📝 pyproject.toml (+1 -0)
📝 src/app.css (+9 -0)
📝 src/lib/apis/configs/index.ts (+31 -4)
📝 src/lib/apis/index.ts (+3 -26)

...and 62 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/7307 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 11/24/2024 **Status:** ✅ Merged **Merged:** 11/26/2024 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`d24c21b`](https://github.com/open-webui/open-webui/commit/d24c21b40f27a7605485233b764c49c89bd848c2) Fix - [`374d6ca`](https://github.com/open-webui/open-webui/commit/374d6cad18eab9e36b01f35bc1fa495986086608) Python Formatting (Failed CI - fixed) - [`8744a12`](https://github.com/open-webui/open-webui/commit/8744a12abb640ebf589b497d1c4f32cb04e0eb84) Merge pull request #7274 from DmitriyAlergant-T1A/fix/logging_cleanup - [`b2d3bfa`](https://github.com/open-webui/open-webui/commit/b2d3bfa3a8ac330e3ed789289cf3df1768c55d07) feat: add description in Tool - [`a83f89d`](https://github.com/open-webui/open-webui/commit/a83f89d4305556427f922add4dc858632dcf4d99) fix: prevent TTS blocking using aiohttp and aiofiles - [`5ed5e53`](https://github.com/open-webui/open-webui/commit/5ed5e532a9d4fab0a2ca9f31b6f70753d0c8c8dc) Merge pull request #7279 from Luceurre/fix/missing-tool-description - [`c567185`](https://github.com/open-webui/open-webui/commit/c567185cb168723049e20dbc7f89d0e86856f6ac) refac: rich text input behaviour - [`2a5506a`](https://github.com/open-webui/open-webui/commit/2a5506a9cd192b132e79e0d0e6087c71fb3a5bbe) fix: textarea input height issue - [`d3acb5c`](https://github.com/open-webui/open-webui/commit/d3acb5cbaa69d6c2234e4e31f4cc5bb6c3142f42) Merge pull request #7286 from houcheng/tts-aiofiles - [`9ff580b`](https://github.com/open-webui/open-webui/commit/9ff580b8ca7c6476f041c107b77c3d188cdae757) fix: textarea input new line issue ### 📊 Changes **82 files changed** (+1108 additions, -338 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+14 -0) 📝 `CODE_OF_CONDUCT.md` (+22 -7) 📝 `backend/open_webui/apps/audio/main.py` (+47 -57) 📝 `backend/open_webui/apps/ollama/main.py` (+35 -11) 📝 `backend/open_webui/apps/openai/main.py` (+0 -2) 📝 `backend/open_webui/apps/retrieval/utils.py` (+0 -40) 📝 `backend/open_webui/apps/webui/main.py` (+15 -4) 📝 `backend/open_webui/apps/webui/routers/configs.py` (+28 -17) 📝 `backend/open_webui/apps/webui/utils.py` (+11 -6) 📝 `backend/open_webui/config.py` (+16 -9) 📝 `backend/open_webui/main.py` (+52 -32) 📝 `backend/open_webui/utils/task.py` (+47 -0) 📝 `backend/open_webui/utils/tools.py` (+32 -1) 📝 `backend/requirements.txt` (+1 -0) 📝 `package-lock.json` (+2 -2) 📝 `package.json` (+1 -1) 📝 `pyproject.toml` (+1 -0) 📝 `src/app.css` (+9 -0) 📝 `src/lib/apis/configs/index.ts` (+31 -4) 📝 `src/lib/apis/index.ts` (+3 -26) _...and 62 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 18:07:18 -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#8837