[PR #414] [MERGED] feat: RAG support #35951

Closed
opened 2026-04-25 10:03:57 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/414
Author: @tjbck
Created: 1/7/2024
Status: Merged
Merged: 1/7/2024
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • 07fc6e4 Merge pull request #310 from ollama-webui/main
  • 880f58e Merge pull request #329 from ollama-webui/main
  • d5aa9e8 feat: requirements for RAG
  • b16f0ea Merge branch 'main' into rag
  • ee15593 Merge branch 'main' into rag
  • 438942d Merge branch 'main' into rag
  • becb7b1 Merge branch 'main' into rag
  • fa598b5 Merge branch 'main' into rag
  • b050013 Merge branch 'main' into rag
  • 7071716 Merge pull request #408 from ollama-webui/main

📊 Changes

17 files changed (+841 additions, -193 deletions)

View changed files

📝 Dockerfile (+2 -1)
📝 README.md (+2 -1)
📝 backend/.gitignore (+2 -1)
backend/apps/rag/main.py (+207 -0)
📝 backend/config.py (+34 -4)
📝 backend/constants.py (+6 -2)
📝 backend/main.py (+10 -6)
📝 backend/requirements.txt (+7 -0)
src/lib/apis/rag/index.ts (+105 -0)
📝 src/lib/components/chat/MessageInput.svelte (+91 -23)
📝 src/lib/components/chat/Messages.svelte (+49 -1)
📝 src/lib/components/chat/Messages/UserMessage.svelte (+31 -1)
📝 src/lib/constants.ts (+1 -0)
📝 src/lib/utils/index.ts (+34 -0)
src/lib/utils/rag/index.ts (+20 -0)
📝 src/routes/(app)/+page.svelte (+112 -73)
📝 src/routes/(app)/c/[id]/+page.svelte (+128 -80)

📄 Description

Merges #333 to main, Resolves #31


🔄 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/414 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 1/7/2024 **Status:** ✅ Merged **Merged:** 1/7/2024 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`07fc6e4`](https://github.com/open-webui/open-webui/commit/07fc6e4b11f3a05a67456ff332a62fd48af25b1b) Merge pull request #310 from ollama-webui/main - [`880f58e`](https://github.com/open-webui/open-webui/commit/880f58e81abc8f21ca34229e182ca23918464f7a) Merge pull request #329 from ollama-webui/main - [`d5aa9e8`](https://github.com/open-webui/open-webui/commit/d5aa9e871045899437b04cfdc36c482adde032a0) feat: requirements for RAG - [`b16f0ea`](https://github.com/open-webui/open-webui/commit/b16f0ea2c5ee427a5849bb0f2fc24e19229c29bf) Merge branch 'main' into rag - [`ee15593`](https://github.com/open-webui/open-webui/commit/ee1559378d5b980a57bee304e34cfbfcfffc65b8) Merge branch 'main' into rag - [`438942d`](https://github.com/open-webui/open-webui/commit/438942d64e7d7acf1a94756d7e5ebb9aaff8431d) Merge branch 'main' into rag - [`becb7b1`](https://github.com/open-webui/open-webui/commit/becb7b1d8a7b75e1bcb9c04af709338ea6d2c5ab) Merge branch 'main' into rag - [`fa598b5`](https://github.com/open-webui/open-webui/commit/fa598b59e2a0ed7e2706148b05e189ef1d4f3723) Merge branch 'main' into rag - [`b050013`](https://github.com/open-webui/open-webui/commit/b050013ccc84dd52f4fb2c7161af0426210cc44f) Merge branch 'main' into rag - [`7071716`](https://github.com/open-webui/open-webui/commit/7071716f546e8f234db9d663b2e35f47ee5c69fc) Merge pull request #408 from ollama-webui/main ### 📊 Changes **17 files changed** (+841 additions, -193 deletions) <details> <summary>View changed files</summary> 📝 `Dockerfile` (+2 -1) 📝 `README.md` (+2 -1) 📝 `backend/.gitignore` (+2 -1) ➕ `backend/apps/rag/main.py` (+207 -0) 📝 `backend/config.py` (+34 -4) 📝 `backend/constants.py` (+6 -2) 📝 `backend/main.py` (+10 -6) 📝 `backend/requirements.txt` (+7 -0) ➕ `src/lib/apis/rag/index.ts` (+105 -0) 📝 `src/lib/components/chat/MessageInput.svelte` (+91 -23) 📝 `src/lib/components/chat/Messages.svelte` (+49 -1) 📝 `src/lib/components/chat/Messages/UserMessage.svelte` (+31 -1) 📝 `src/lib/constants.ts` (+1 -0) 📝 `src/lib/utils/index.ts` (+34 -0) ➕ `src/lib/utils/rag/index.ts` (+20 -0) 📝 `src/routes/(app)/+page.svelte` (+112 -73) 📝 `src/routes/(app)/c/[id]/+page.svelte` (+128 -80) </details> ### 📄 Description Merges #333 to main, Resolves #31 --- <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 10:03:57 -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#35951