[PR #333] [MERGED] feat: RAG support #7061

Closed
opened 2025-11-11 17:15:43 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

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

Base: devHead: rag


📝 Commits (10+)

  • 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
  • b2c9f6d feat: rag api endpoint
  • 784b369 feat: chromadb vector store api

📊 Changes

15 files changed (+659 additions, -112 deletions)

View changed files

📝 Dockerfile (+1 -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/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 (+108 -73)

📄 Description

Resolves #31

"Try to go as far as you can go and let it become whatever it becomes." - Happy New Year!


🔄 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/333 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 1/1/2024 **Status:** ✅ Merged **Merged:** 1/7/2024 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `dev` ← **Head:** `rag` --- ### 📝 Commits (10+) - [`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 - [`b2c9f6d`](https://github.com/open-webui/open-webui/commit/b2c9f6dff8cd1b47ffe1ac64022fe149a28164fd) feat: rag api endpoint - [`784b369`](https://github.com/open-webui/open-webui/commit/784b369cc9279c8249da968d2f8dcefe7951bf9a) feat: chromadb vector store api ### 📊 Changes **15 files changed** (+659 additions, -112 deletions) <details> <summary>View changed files</summary> 📝 `Dockerfile` (+1 -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/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` (+108 -73) </details> ### 📄 Description Resolves #31 "Try to go as far as you can go and let it become whatever it becomes." - Happy New Year! --- <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 17:15:43 -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#7061