Original PR: https://github.com/open-webui/open-webui/pull/10429 Author: @rainbuilt Created: 2/20/2025 Status: ❌ Closed
Base: main ← Head: fix/embeddings-too-many-requests
main
fix/embeddings-too-many-requests
844dbbe
1276c07
73a465e
917467d
dd0480c
6d3c7b1
abc0574
aa3a59e
e4b5440
08282fa
7028 files changed (+103333 additions, -3711 deletions)
📝 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)
CHANGELOG.md
backend/open_webui/config.py
backend/open_webui/internal/migrations/019_add_user_ust_api_key.py
backend/open_webui/main.py
backend/open_webui/models/auths.py
backend/open_webui/models/users.py
backend/open_webui/retrieval/utils.py
backend/open_webui/retrieval/web/utils.py
backend/open_webui/routers/audio.py
backend/open_webui/routers/auths.py
backend/open_webui/routers/configs.py
backend/open_webui/routers/files.py
backend/open_webui/routers/images.py
backend/open_webui/routers/ollama.py
backend/open_webui/routers/openai.py
backend/open_webui/routers/retrieval.py
backend/open_webui/routers/utils.py
backend/open_webui/storage/provider.py
backend/open_webui/test/apps/webui/storage/test_provider.py
backend/open_webui/utils/middleware.py
...and 80 more files
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.
No dependencies set.
The note is not visible to the blocked user.
📋 Pull Request Information
Original PR: https://github.com/open-webui/open-webui/pull/10429
Author: @rainbuilt
Created: 2/20/2025
Status: ❌ Closed
Base:
main← Head:fix/embeddings-too-many-requests📝 Commits (10+)
844dbbeReplace openai apis to hkust azure apis1276c07Add frontend build files73a465eMerge branch 'dev' into source-merge917467dadd qa_extractordd0480cadd json merger for qa from qa_extractor6d3c7b1add no_answer_remover.pyabc0574add useful qa selectoraa3a59efix: add time sleep for file uploading.e4b5440add json2doc saver08282faMerge 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.