[PR #7745] [MERGED] general refac #8896

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

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/7745
Author: @tjbck
Created: 12/10/2024
Status: Merged
Merged: 12/16/2024
Merged by: @tjbck

Base: devHead: refac


📝 Commits (10+)

📊 Changes

128 files changed (+6635 additions, -6293 deletions)

View changed files

backend/open_webui/apps/audio/main.py (+0 -703)
backend/open_webui/apps/retrieval/main.py (+0 -1511)
backend/open_webui/apps/retrieval/vector/connector.py (+0 -22)
backend/open_webui/apps/webui/main.py (+0 -506)
📝 backend/open_webui/config.py (+51 -2)
📝 backend/open_webui/env.py (+1 -1)
backend/open_webui/functions.py (+316 -0)
📝 backend/open_webui/internal/db.py (+1 -1)
📝 backend/open_webui/internal/migrations/001_initial_schema.py (+0 -0)
📝 backend/open_webui/internal/migrations/002_add_local_sharing.py (+0 -0)
📝 backend/open_webui/internal/migrations/003_add_auth_api_key.py (+0 -0)
📝 backend/open_webui/internal/migrations/004_add_archived.py (+0 -0)
📝 backend/open_webui/internal/migrations/005_add_updated_at.py (+0 -0)
📝 backend/open_webui/internal/migrations/006_migrate_timestamps_and_charfields.py (+0 -0)
📝 backend/open_webui/internal/migrations/007_add_user_last_active_at.py (+0 -0)
📝 backend/open_webui/internal/migrations/008_add_memory.py (+0 -0)
📝 backend/open_webui/internal/migrations/009_add_models.py (+0 -0)
📝 backend/open_webui/internal/migrations/010_migrate_modelfiles_to_models.py (+0 -0)
📝 backend/open_webui/internal/migrations/011_add_user_settings.py (+0 -0)
📝 backend/open_webui/internal/migrations/012_add_tools.py (+0 -0)

...and 80 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/7745 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 12/10/2024 **Status:** ✅ Merged **Merged:** 12/16/2024 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `dev` ← **Head:** `refac` --- ### 📝 Commits (10+) - [`f6bec8d`](https://github.com/open-webui/open-webui/commit/f6bec8d9f3c0c503c0c0d67ac5f12ca70edc1856) general refac - [`d3d161f`](https://github.com/open-webui/open-webui/commit/d3d161f723e8667e236510c198cf6b194c04e118) wip - [`4819199`](https://github.com/open-webui/open-webui/commit/481919965015caaf95fd3a678d8b1e093980a76a) wip - [`df48eac`](https://github.com/open-webui/open-webui/commit/df48eac22bbd5665d4e3a2d4f8ca635555449900) wip - [`df0cdd9`](https://github.com/open-webui/open-webui/commit/df0cdd9f3ca064d5d8498538a32a675697d3cac9) wip - [`87d695c`](https://github.com/open-webui/open-webui/commit/87d695caad8ff1fc70b50d62cf689837842318f5) Update audio.py - [`3ec0a58`](https://github.com/open-webui/open-webui/commit/3ec0a58cd7cea776b5fdd78eee8868189497d835) wip - [`867c4bc`](https://github.com/open-webui/open-webui/commit/867c4bc0d0a86270c29eeea0c6c6c524bc3e217d) wip: retrieval - [`b3987ad`](https://github.com/open-webui/open-webui/commit/b3987ad41e3d7c0f73dc41694d3bac2a37966f5a) wip - [`9e85ed8`](https://github.com/open-webui/open-webui/commit/9e85ed861dd406d4d81e810cbba1e1eb7b7bd357) wip: pipelines ### 📊 Changes **128 files changed** (+6635 additions, -6293 deletions) <details> <summary>View changed files</summary> ➖ `backend/open_webui/apps/audio/main.py` (+0 -703) ➖ `backend/open_webui/apps/retrieval/main.py` (+0 -1511) ➖ `backend/open_webui/apps/retrieval/vector/connector.py` (+0 -22) ➖ `backend/open_webui/apps/webui/main.py` (+0 -506) 📝 `backend/open_webui/config.py` (+51 -2) 📝 `backend/open_webui/env.py` (+1 -1) ➕ `backend/open_webui/functions.py` (+316 -0) 📝 `backend/open_webui/internal/db.py` (+1 -1) 📝 `backend/open_webui/internal/migrations/001_initial_schema.py` (+0 -0) 📝 `backend/open_webui/internal/migrations/002_add_local_sharing.py` (+0 -0) 📝 `backend/open_webui/internal/migrations/003_add_auth_api_key.py` (+0 -0) 📝 `backend/open_webui/internal/migrations/004_add_archived.py` (+0 -0) 📝 `backend/open_webui/internal/migrations/005_add_updated_at.py` (+0 -0) 📝 `backend/open_webui/internal/migrations/006_migrate_timestamps_and_charfields.py` (+0 -0) 📝 `backend/open_webui/internal/migrations/007_add_user_last_active_at.py` (+0 -0) 📝 `backend/open_webui/internal/migrations/008_add_memory.py` (+0 -0) 📝 `backend/open_webui/internal/migrations/009_add_models.py` (+0 -0) 📝 `backend/open_webui/internal/migrations/010_migrate_modelfiles_to_models.py` (+0 -0) 📝 `backend/open_webui/internal/migrations/011_add_user_settings.py` (+0 -0) 📝 `backend/open_webui/internal/migrations/012_add_tools.py` (+0 -0) _...and 80 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:08:56 -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#8896