mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-06 19:08:59 -05:00
[PR #15809] [CLOSED] Dev fix add post hog lib #23946
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/open-webui/open-webui/pull/15809
Author: @rgaricano
Created: 7/17/2025
Status: ❌ Closed
Base:
main← Head:dev-Fix_AddPostHog_lib📝 Commits (10+)
8a4ea2bi18n: Fix zh-CN9063942Merge pull request #15712 from qingchunnh/Update_zh-CN-25715-207bb5ccUpdate pl_PL locale17f0befrefactor: use cleanup_response on openai058369afix: improve cleanup_response positioning for better resource management1092827Fix some FileItemModal.svelte- locales strings120b8f2fix: update FileItemModal.svelte- locales stringsf7fae94fix/refac: hide system prompt for users w/o permissione72da0drefac/fix: WEBSOCKET_REDIS_LOCK_TIMEOUT type6343f42refac📊 Changes
33 files changed (+3599 additions, -2668 deletions)
View changed files
📝
backend/open_webui/config.py(+13 -0)📝
backend/open_webui/env.py(+16 -4)📝
backend/open_webui/models/groups.py(+53 -1)📝
backend/open_webui/retrieval/utils.py(+3 -0)📝
backend/open_webui/routers/audio.py(+7 -3)📝
backend/open_webui/routers/chats.py(+14 -6)📝
backend/open_webui/routers/groups.py(+51 -0)📝
backend/open_webui/routers/ollama.py(+3 -1)📝
backend/open_webui/routers/openai.py(+6 -12)📝
backend/open_webui/routers/retrieval.py(+14 -6)📝
backend/open_webui/routers/tasks.py(+1 -1)📝
backend/open_webui/socket/main.py(+3 -2)➕
backend/open_webui/test/util/test_redis.py(+793 -0)📝
backend/open_webui/utils/middleware.py(+33 -17)📝
backend/open_webui/utils/redis.py(+100 -4)📝
backend/requirements.txt(+1 -0)📝
pyproject.toml(+7 -0)📝
src/lib/components/chat/Chat.svelte(+1 -1)📝
src/lib/components/chat/MessageInput.svelte(+20 -0)📝
src/lib/components/common/FileItemModal.svelte(+2 -2)...and 13 more files
📄 Description
Description
Add "posthog==5.4.0" lib to pyproject.toml & backend/requirements.txt to avoid chromadb issue for lib versions incompatibility with that lib (chromadb requiere posthog>=2.4.0,<6.0.0 ) which produce error in opentelemetry.
issue: https://github.com/open-webui/open-webui/discussions/15624
Added
Add "posthog==5.4.0" lib to pyproject.toml & backend/requirements.txt
Contributor License Agreement
By submitting this pull request, I confirm that I have read and fully agree to the Contributor License Agreement (CLA), and I am providing my contributions under its terms.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.