[PR #49] [MERGED] add document embedding search on document view #115

Closed
opened 2026-02-15 16:30:20 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/vector-admin/pull/49
Author: @timothycarambat
Created: 9/14/2023
Status: Merged
Merged: 9/14/2023
Merged by: @timothycarambat

Base: masterHead: 48-document-embedding-search


📝 Commits (2)

  • b475776 add document embedding search on document view
  • 0a5d203 Decrease embedding result window size for most searches

📊 Changes

13 files changed (+509 additions, -24 deletions)

View changed files

📝 backend/endpoints/v1/documents/index.js (+38 -0)
backend/utils/search/documentEmbeddings/exactText.js (+40 -0)
backend/utils/search/documentEmbeddings/index.js (+32 -0)
backend/utils/search/documentEmbeddings/metadata.js (+43 -0)
backend/utils/search/documentEmbeddings/semantic.js (+53 -0)
backend/utils/search/documentEmbeddings/vectorId.js (+12 -0)
backend/utils/search/index.js (+11 -0)
📝 backend/utils/search/workspaceDocuments/exactText.js (+1 -8)
📝 backend/utils/search/workspaceDocuments/metadata.js (+1 -8)
📝 frontend/src/models/document.ts (+22 -0)
frontend/src/pages/DocumentView/FragmentList/SearchView/index.tsx (+235 -0)
📝 frontend/src/pages/DocumentView/FragmentList/index.tsx (+17 -6)
📝 frontend/src/pages/WorkspaceDashboard/DocumentsList/SearchView/index.tsx (+4 -2)

📄 Description

resolves #48


🔄 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/Mintplex-Labs/vector-admin/pull/49 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 9/14/2023 **Status:** ✅ Merged **Merged:** 9/14/2023 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `48-document-embedding-search` --- ### 📝 Commits (2) - [`b475776`](https://github.com/Mintplex-Labs/vector-admin/commit/b4757763e279366ca40658dee65d29b09b25963e) add document embedding search on document view - [`0a5d203`](https://github.com/Mintplex-Labs/vector-admin/commit/0a5d2039eacc5f3df07f6687f882f7819829eaf6) Decrease embedding result window size for most searches ### 📊 Changes **13 files changed** (+509 additions, -24 deletions) <details> <summary>View changed files</summary> 📝 `backend/endpoints/v1/documents/index.js` (+38 -0) ➕ `backend/utils/search/documentEmbeddings/exactText.js` (+40 -0) ➕ `backend/utils/search/documentEmbeddings/index.js` (+32 -0) ➕ `backend/utils/search/documentEmbeddings/metadata.js` (+43 -0) ➕ `backend/utils/search/documentEmbeddings/semantic.js` (+53 -0) ➕ `backend/utils/search/documentEmbeddings/vectorId.js` (+12 -0) ➕ `backend/utils/search/index.js` (+11 -0) 📝 `backend/utils/search/workspaceDocuments/exactText.js` (+1 -8) 📝 `backend/utils/search/workspaceDocuments/metadata.js` (+1 -8) 📝 `frontend/src/models/document.ts` (+22 -0) ➕ `frontend/src/pages/DocumentView/FragmentList/SearchView/index.tsx` (+235 -0) 📝 `frontend/src/pages/DocumentView/FragmentList/index.tsx` (+17 -6) 📝 `frontend/src/pages/WorkspaceDashboard/DocumentsList/SearchView/index.tsx` (+4 -2) </details> ### 📄 Description resolves #48 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-15 16:30:20 -05:00
yindo closed this issue 2026-02-15 16:30:20 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/vector-admin#115