[PR #10429] [CLOSED] Fix/embeddings too many requests #61387

Closed
opened 2026-05-06 04:53:25 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/10429
Author: @rainbuilt
Created: 2/20/2025
Status: Closed

Base: mainHead: fix/embeddings-too-many-requests


📝 Commits (10+)

  • 844dbbe Replace openai apis to hkust azure apis
  • 1276c07 Add frontend build files
  • 73a465e Merge branch 'dev' into source-merge
  • 917467d add qa_extractor
  • dd0480c add json merger for qa from qa_extractor
  • 6d3c7b1 add no_answer_remover.py
  • abc0574 add useful qa selector
  • aa3a59e fix: add time sleep for file uploading.
  • e4b5440 add json2doc saver
  • 08282fa Merge branch 'feat/json2doc-saver' into dev

📊 Changes

7028 files changed (+103333 additions, -3711 deletions)

View changed files

📝 CHANGELOG.md (+0 -19)
📝 backend/open_webui/config.py (+9 -64)
backend/open_webui/internal/migrations/019_add_user_ust_api_key.py (+48 -0)
📝 backend/open_webui/main.py (+1 -21)
📝 backend/open_webui/models/auths.py (+13 -5)
📝 backend/open_webui/models/users.py (+5 -0)
📝 backend/open_webui/retrieval/utils.py (+91 -123)
📝 backend/open_webui/retrieval/web/utils.py (+29 -370)
📝 backend/open_webui/routers/audio.py (+3 -13)
📝 backend/open_webui/routers/auths.py (+37 -4)
📝 backend/open_webui/routers/configs.py (+0 -12)
📝 backend/open_webui/routers/files.py (+9 -16)
📝 backend/open_webui/routers/images.py (+5 -68)
📝 backend/open_webui/routers/ollama.py (+2 -15)
📝 backend/open_webui/routers/openai.py (+3 -3)
📝 backend/open_webui/routers/retrieval.py (+2 -9)
📝 backend/open_webui/routers/utils.py (+0 -1)
📝 backend/open_webui/storage/provider.py (+0 -76)
📝 backend/open_webui/test/apps/webui/storage/test_provider.py (+0 -150)
📝 backend/open_webui/utils/middleware.py (+61 -75)

...and 80 more files

📄 Description

Added

Retry mechanism into batch embedding request function to prevent failure by too many requests


🔄 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/10429 **Author:** [@rainbuilt](https://github.com/rainbuilt) **Created:** 2/20/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `fix/embeddings-too-many-requests` --- ### 📝 Commits (10+) - [`844dbbe`](https://github.com/open-webui/open-webui/commit/844dbbe275054bc198c6fdd7815e12f5abcef993) Replace openai apis to hkust azure apis - [`1276c07`](https://github.com/open-webui/open-webui/commit/1276c07414444a18bc97b0c63b0a2a63d486dd1f) Add frontend build files - [`73a465e`](https://github.com/open-webui/open-webui/commit/73a465e5e8c1ba63915ffb58b5eb5c2406c46fee) Merge branch 'dev' into source-merge - [`917467d`](https://github.com/open-webui/open-webui/commit/917467d2de7a284a4b0a91172b7938657cda242f) add qa_extractor - [`dd0480c`](https://github.com/open-webui/open-webui/commit/dd0480c9be15f65074aad4bcb8106198955b641d) add json merger for qa from qa_extractor - [`6d3c7b1`](https://github.com/open-webui/open-webui/commit/6d3c7b1bf2e3c96aead91e126570474124e2239b) add no_answer_remover.py - [`abc0574`](https://github.com/open-webui/open-webui/commit/abc0574df45f98a956ea1116aa1fbc7513a8f7c3) add useful qa selector - [`aa3a59e`](https://github.com/open-webui/open-webui/commit/aa3a59ec11e71e640590d8019361acd4bee329da) fix: add time sleep for file uploading. - [`e4b5440`](https://github.com/open-webui/open-webui/commit/e4b54400c7e4a7b9c5a497d2cca4546303d8fb12) add json2doc saver - [`08282fa`](https://github.com/open-webui/open-webui/commit/08282fa80592366f5ee455b097021eeb87fde236) Merge branch 'feat/json2doc-saver' into dev ### 📊 Changes **7028 files changed** (+103333 additions, -3711 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+0 -19) 📝 `backend/open_webui/config.py` (+9 -64) ➕ `backend/open_webui/internal/migrations/019_add_user_ust_api_key.py` (+48 -0) 📝 `backend/open_webui/main.py` (+1 -21) 📝 `backend/open_webui/models/auths.py` (+13 -5) 📝 `backend/open_webui/models/users.py` (+5 -0) 📝 `backend/open_webui/retrieval/utils.py` (+91 -123) 📝 `backend/open_webui/retrieval/web/utils.py` (+29 -370) 📝 `backend/open_webui/routers/audio.py` (+3 -13) 📝 `backend/open_webui/routers/auths.py` (+37 -4) 📝 `backend/open_webui/routers/configs.py` (+0 -12) 📝 `backend/open_webui/routers/files.py` (+9 -16) 📝 `backend/open_webui/routers/images.py` (+5 -68) 📝 `backend/open_webui/routers/ollama.py` (+2 -15) 📝 `backend/open_webui/routers/openai.py` (+3 -3) 📝 `backend/open_webui/routers/retrieval.py` (+2 -9) 📝 `backend/open_webui/routers/utils.py` (+0 -1) 📝 `backend/open_webui/storage/provider.py` (+0 -76) 📝 `backend/open_webui/test/apps/webui/storage/test_provider.py` (+0 -150) 📝 `backend/open_webui/utils/middleware.py` (+61 -75) _...and 80 more files_ </details> ### 📄 Description # Added Retry mechanism into batch embedding request function to prevent failure by too many requests --- <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-05-06 04:53:25 -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#61387