Original PR: https://github.com/open-webui/open-webui/pull/424 Author: @tjbck Created: 1/8/2024 Status: ✅ Merged Merged: 1/8/2024 Merged by: @tjbck
Base: main ← Head: documents
main
documents
2603ac3
cc3f84f
df3d95b
54c4e07
fe997ab
eddb6fc
1ff3eb8
b858b9b
edceeba
17 files changed (+1283 additions, -55 deletions)
📝 backend/apps/rag/main.py (+10 -2) 📝 backend/apps/web/main.py (+12 -4) ➕ backend/apps/web/models/documents.py (+124 -0) ➕ backend/apps/web/routers/documents.py (+119 -0) 📝 backend/config.py (+1 -1) 📝 backend/constants.py (+3 -0) ➕ src/lib/apis/documents/index.ts (+177 -0) ➕ src/lib/components/AddFilesPlaceholder.svelte (+6 -0) 📝 src/lib/components/chat/MessageInput.svelte (+50 -35) ➕ src/lib/components/chat/MessageInput/Documents.svelte (+78 -0) ➕ src/lib/components/documents/EditDocModal.svelte (+151 -0) 📝 src/lib/components/layout/Sidebar.svelte (+41 -9) 📝 src/lib/constants.ts (+7 -0) 📝 src/lib/stores/index.ts (+15 -0) 📝 src/lib/utils/index.ts (+31 -0) 📝 src/routes/(app)/+layout.svelte (+12 -4) ➕ src/routes/(app)/documents/+page.svelte (+446 -0)
backend/apps/rag/main.py
backend/apps/web/main.py
backend/apps/web/models/documents.py
backend/apps/web/routers/documents.py
backend/config.py
backend/constants.py
src/lib/apis/documents/index.ts
src/lib/components/AddFilesPlaceholder.svelte
src/lib/components/chat/MessageInput.svelte
src/lib/components/chat/MessageInput/Documents.svelte
src/lib/components/documents/EditDocModal.svelte
src/lib/components/layout/Sidebar.svelte
src/lib/constants.ts
src/lib/stores/index.ts
src/lib/utils/index.ts
src/routes/(app)/+layout.svelte
src/routes/(app)/documents/+page.svelte
No description provided
🔄 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/424
Author: @tjbck
Created: 1/8/2024
Status: ✅ Merged
Merged: 1/8/2024
Merged by: @tjbck
Base:
main← Head:documents📝 Commits (9)
2603ac3feat: documentscc3f84ffeat: # to import docdf3d95brefac: message drag file input54c4e07feat: documents file uploadfe997abfeat: transform filename to nameeddb6fcfeat: documents backend integration1ff3eb8feat: doc upload error handlingb858b9bfeat: edit doc modal stylingedceebafeat: help message added📊 Changes
17 files changed (+1283 additions, -55 deletions)
View changed files
📝
backend/apps/rag/main.py(+10 -2)📝
backend/apps/web/main.py(+12 -4)➕
backend/apps/web/models/documents.py(+124 -0)➕
backend/apps/web/routers/documents.py(+119 -0)📝
backend/config.py(+1 -1)📝
backend/constants.py(+3 -0)➕
src/lib/apis/documents/index.ts(+177 -0)➕
src/lib/components/AddFilesPlaceholder.svelte(+6 -0)📝
src/lib/components/chat/MessageInput.svelte(+50 -35)➕
src/lib/components/chat/MessageInput/Documents.svelte(+78 -0)➕
src/lib/components/documents/EditDocModal.svelte(+151 -0)📝
src/lib/components/layout/Sidebar.svelte(+41 -9)📝
src/lib/constants.ts(+7 -0)📝
src/lib/stores/index.ts(+15 -0)📝
src/lib/utils/index.ts(+31 -0)📝
src/routes/(app)/+layout.svelte(+12 -4)➕
src/routes/(app)/documents/+page.svelte(+446 -0)📄 Description
No description provided
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.