Original PR: https://github.com/open-webui/open-webui/pull/6931 Author: @tjbck Created: 11/13/2024 Status: ✅ Merged Merged: 11/17/2024 Merged by: @tjbck
Base: dev ← Head: groups
dev
groups
baea26d
ce9aef9
aaba413
0e8c0b4
85d7f1c
73cdf90
0cf1969
9474449
7165202
659f3da
102 files changed (+7351 additions, -4570 deletions)
📝 backend/open_webui/apps/ollama/main.py (+83 -73) 📝 backend/open_webui/apps/openai/main.py (+60 -49) 📝 backend/open_webui/apps/retrieval/utils.py (+16 -7) 📝 backend/open_webui/apps/webui/main.py (+15 -7) ➖ backend/open_webui/apps/webui/models/documents.py (+0 -157) ➕ backend/open_webui/apps/webui/models/groups.py (+181 -0) 📝 backend/open_webui/apps/webui/models/knowledge.py (+55 -9) 📝 backend/open_webui/apps/webui/models/models.py (+87 -2) 📝 backend/open_webui/apps/webui/models/prompts.py (+39 -5) 📝 backend/open_webui/apps/webui/models/tools.py (+38 -1) 📝 backend/open_webui/apps/webui/routers/auths.py (+95 -31) 📝 backend/open_webui/apps/webui/routers/chats.py (+9 -5) ➕ backend/open_webui/apps/webui/routers/groups.py (+120 -0) 📝 backend/open_webui/apps/webui/routers/knowledge.py (+192 -77) 📝 backend/open_webui/apps/webui/routers/models.py (+105 -36) 📝 backend/open_webui/apps/webui/routers/prompts.py (+52 -5) 📝 backend/open_webui/apps/webui/routers/tools.py (+128 -78) 📝 backend/open_webui/apps/webui/routers/users.py (+41 -4) 📝 backend/open_webui/apps/webui/utils.py (+1 -1) 📝 backend/open_webui/config.py (+39 -20)
backend/open_webui/apps/ollama/main.py
backend/open_webui/apps/openai/main.py
backend/open_webui/apps/retrieval/utils.py
backend/open_webui/apps/webui/main.py
backend/open_webui/apps/webui/models/documents.py
backend/open_webui/apps/webui/models/groups.py
backend/open_webui/apps/webui/models/knowledge.py
backend/open_webui/apps/webui/models/models.py
backend/open_webui/apps/webui/models/prompts.py
backend/open_webui/apps/webui/models/tools.py
backend/open_webui/apps/webui/routers/auths.py
backend/open_webui/apps/webui/routers/chats.py
backend/open_webui/apps/webui/routers/groups.py
backend/open_webui/apps/webui/routers/knowledge.py
backend/open_webui/apps/webui/routers/models.py
backend/open_webui/apps/webui/routers/prompts.py
backend/open_webui/apps/webui/routers/tools.py
backend/open_webui/apps/webui/routers/users.py
backend/open_webui/apps/webui/utils.py
backend/open_webui/config.py
...and 80 more files
#2924
🔄 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/6931
Author: @tjbck
Created: 11/13/2024
Status: ✅ Merged
Merged: 11/17/2024
Merged by: @tjbck
Base:
dev← Head:groups📝 Commits (10+)
baea26dwip: user groups frontendce9aef9wip: frontendaaba413Merge pull request #6938 from open-webui/dev0e8c0b4wip: frontend85d7f1crefac73cdf90refac: styling0cf1969refac: rm unused file9474449refac: move functions (plugin) to admin panel7165202feat: groups db migration659f3dafeat: groups backend📊 Changes
102 files changed (+7351 additions, -4570 deletions)
View changed files
📝
backend/open_webui/apps/ollama/main.py(+83 -73)📝
backend/open_webui/apps/openai/main.py(+60 -49)📝
backend/open_webui/apps/retrieval/utils.py(+16 -7)📝
backend/open_webui/apps/webui/main.py(+15 -7)➖
backend/open_webui/apps/webui/models/documents.py(+0 -157)➕
backend/open_webui/apps/webui/models/groups.py(+181 -0)📝
backend/open_webui/apps/webui/models/knowledge.py(+55 -9)📝
backend/open_webui/apps/webui/models/models.py(+87 -2)📝
backend/open_webui/apps/webui/models/prompts.py(+39 -5)📝
backend/open_webui/apps/webui/models/tools.py(+38 -1)📝
backend/open_webui/apps/webui/routers/auths.py(+95 -31)📝
backend/open_webui/apps/webui/routers/chats.py(+9 -5)➕
backend/open_webui/apps/webui/routers/groups.py(+120 -0)📝
backend/open_webui/apps/webui/routers/knowledge.py(+192 -77)📝
backend/open_webui/apps/webui/routers/models.py(+105 -36)📝
backend/open_webui/apps/webui/routers/prompts.py(+52 -5)📝
backend/open_webui/apps/webui/routers/tools.py(+128 -78)📝
backend/open_webui/apps/webui/routers/users.py(+41 -4)📝
backend/open_webui/apps/webui/utils.py(+1 -1)📝
backend/open_webui/config.py(+39 -20)...and 80 more files
📄 Description
#2924
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.