[PR #10409] [CLOSED] Feat/deepseek #38152

Closed
opened 2026-04-25 11:17:34 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

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

Base: mainHead: feat/deepseek


📝 Commits (10+)

  • 33976cc chore: by default not collapse thinking (#1)
  • faa3601 build: add p1 oss deploy config (#4)
  • 7bc8630 feat: bypass retrival on get_sources_from_files (#2)
  • fbd75c3 chore: update config
  • f6872a9 chore: remove 'process embedding while uploading files' (#5)
  • 31bd3b0 Merge remote-tracking branch 'upstream/main'
  • 8d2d5a0 feat:enable full search & fix source_idx & beautify web_page content & prompt deafult response lang from en to zh (#6)
  • 46ad283 build: remove docker image proxy (#7)
  • e831332 fix: request trust env to use proxy (#8)
  • 4bb96b3 rebase

📊 Changes

50 files changed (+2115 additions, -162 deletions)

View changed files

📝 .gitignore (+1 -0)
📝 Makefile (+29 -25)
Makefile-bak (+33 -0)
📝 backend/open_webui/config.py (+69 -44)
📝 backend/open_webui/main.py (+2 -0)
📝 backend/open_webui/retrieval/utils.py (+55 -1)
📝 backend/open_webui/retrieval/vector/dbs/chroma.py (+47 -46)
📝 backend/open_webui/retrieval/web/utils.py (+2 -2)
📝 backend/open_webui/routers/openai.py (+10 -4)
📝 backend/open_webui/routers/retrieval.py (+32 -30)
📝 backend/open_webui/utils/middleware.py (+27 -6)
deploy/backend/prod/Dockerfile (+43 -0)
deploy/backend/prod/build.sh (+26 -0)
deploy/backend/prod/entrypoint.sh (+3 -0)
deploy/backend/prod/gpt-oi-rest.yaml (+93 -0)
deploy/backend/services/docker-compose.yml (+13 -0)
deploy/backend/services/gpt-oi-rest.service (+14 -0)
deploy/backend/test/Dockerfile (+45 -0)
deploy/backend/test/build.sh (+27 -0)
deploy/backend/test/entrypoint.sh (+3 -0)

...and 30 more files

📄 Description

deepseek prompt


🔄 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/10409 **Author:** [@Chenlong-Tao](https://github.com/Chenlong-Tao) **Created:** 2/20/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feat/deepseek` --- ### 📝 Commits (10+) - [`33976cc`](https://github.com/open-webui/open-webui/commit/33976cca8d04d09aad48ef0c4c4b9660830260fc) chore: by default not collapse thinking (#1) - [`faa3601`](https://github.com/open-webui/open-webui/commit/faa3601ed2a15dd9304967d5fc1a35707b731026) build: add p1 oss deploy config (#4) - [`7bc8630`](https://github.com/open-webui/open-webui/commit/7bc863075b62b297c37661b2651c94f84b27877d) feat: bypass retrival on get_sources_from_files (#2) - [`fbd75c3`](https://github.com/open-webui/open-webui/commit/fbd75c348c84e56ec7ffe704111424dac6b862f3) chore: update config - [`f6872a9`](https://github.com/open-webui/open-webui/commit/f6872a98b50f80c836ce8d74722dc7920ef76678) chore: remove 'process embedding while uploading files' (#5) - [`31bd3b0`](https://github.com/open-webui/open-webui/commit/31bd3b03662bfa2e11ace27e0994883dc7949b15) Merge remote-tracking branch 'upstream/main' - [`8d2d5a0`](https://github.com/open-webui/open-webui/commit/8d2d5a0004542162b34e735c33334be0167428d1) feat:enable full search & fix source_idx & beautify web_page content & prompt deafult response lang from en to zh (#6) - [`46ad283`](https://github.com/open-webui/open-webui/commit/46ad283202f25b0d0a07ff625c4b9f9f9d6d2a47) build: remove docker image proxy (#7) - [`e831332`](https://github.com/open-webui/open-webui/commit/e8313323f734c1f2fdd848697b4af95ae81963bc) fix: request trust env to use proxy (#8) - [`4bb96b3`](https://github.com/open-webui/open-webui/commit/4bb96b30099aa6c4051d8ea631f307094ddcc471) rebase ### 📊 Changes **50 files changed** (+2115 additions, -162 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+1 -0) 📝 `Makefile` (+29 -25) ➕ `Makefile-bak` (+33 -0) 📝 `backend/open_webui/config.py` (+69 -44) 📝 `backend/open_webui/main.py` (+2 -0) 📝 `backend/open_webui/retrieval/utils.py` (+55 -1) 📝 `backend/open_webui/retrieval/vector/dbs/chroma.py` (+47 -46) 📝 `backend/open_webui/retrieval/web/utils.py` (+2 -2) 📝 `backend/open_webui/routers/openai.py` (+10 -4) 📝 `backend/open_webui/routers/retrieval.py` (+32 -30) 📝 `backend/open_webui/utils/middleware.py` (+27 -6) ➕ `deploy/backend/prod/Dockerfile` (+43 -0) ➕ `deploy/backend/prod/build.sh` (+26 -0) ➕ `deploy/backend/prod/entrypoint.sh` (+3 -0) ➕ `deploy/backend/prod/gpt-oi-rest.yaml` (+93 -0) ➕ `deploy/backend/services/docker-compose.yml` (+13 -0) ➕ `deploy/backend/services/gpt-oi-rest.service` (+14 -0) ➕ `deploy/backend/test/Dockerfile` (+45 -0) ➕ `deploy/backend/test/build.sh` (+27 -0) ➕ `deploy/backend/test/entrypoint.sh` (+3 -0) _...and 30 more files_ </details> ### 📄 Description deepseek prompt --- <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-04-25 11:17:34 -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#38152