[PR #47] [MERGED] Workspace doc search ability #113

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/47
Author: @timothycarambat
Created: 9/13/2023
Status: Merged
Merged: 9/14/2023
Merged by: @timothycarambat

Base: masterHead: 46-workspace-docs-search-input


📝 Commits (4)

  • c71b8b9 WIP on workspace doc search input
  • fbbcbdb Exact text search
  • d3cafef implement all search methods on workspace documents
  • 6d7ba10 lint repo and merge with master

📊 Changes

11 files changed (+633 additions, -4 deletions)

View changed files

📝 backend/endpoints/v1/workspaces/index.js (+40 -0)
backend/utils/search/workspaceDocuments/exactText.js (+51 -0)
backend/utils/search/workspaceDocuments/index.js (+32 -0)
backend/utils/search/workspaceDocuments/metadata.js (+54 -0)
backend/utils/search/workspaceDocuments/semantic.js (+56 -0)
backend/utils/search/workspaceDocuments/vectorId.js (+20 -0)
📝 backend/utils/vectordatabases/providers/chroma/index.js (+22 -0)
📝 backend/utils/vectordatabases/providers/pinecone/index.js (+25 -0)
📝 frontend/src/models/workspace.ts (+22 -0)
frontend/src/pages/WorkspaceDashboard/DocumentsList/SearchView/index.tsx (+282 -0)
📝 frontend/src/pages/WorkspaceDashboard/DocumentsList/index.tsx (+29 -4)

📄 Description

resolves #46


🔄 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/47 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 9/13/2023 **Status:** ✅ Merged **Merged:** 9/14/2023 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `46-workspace-docs-search-input` --- ### 📝 Commits (4) - [`c71b8b9`](https://github.com/Mintplex-Labs/vector-admin/commit/c71b8b959b5fc9614623d1b7a5a08ecece9462bd) WIP on workspace doc search input - [`fbbcbdb`](https://github.com/Mintplex-Labs/vector-admin/commit/fbbcbdb36d03ad2739a4f7c044a167a7842795ce) Exact text search - [`d3cafef`](https://github.com/Mintplex-Labs/vector-admin/commit/d3cafef7af1b2aa1dd0a3df88396213f07c15cba) implement all search methods on workspace documents - [`6d7ba10`](https://github.com/Mintplex-Labs/vector-admin/commit/6d7ba102c4810a02b386970063ed9de57b60e0a4) lint repo and merge with master ### 📊 Changes **11 files changed** (+633 additions, -4 deletions) <details> <summary>View changed files</summary> 📝 `backend/endpoints/v1/workspaces/index.js` (+40 -0) ➕ `backend/utils/search/workspaceDocuments/exactText.js` (+51 -0) ➕ `backend/utils/search/workspaceDocuments/index.js` (+32 -0) ➕ `backend/utils/search/workspaceDocuments/metadata.js` (+54 -0) ➕ `backend/utils/search/workspaceDocuments/semantic.js` (+56 -0) ➕ `backend/utils/search/workspaceDocuments/vectorId.js` (+20 -0) 📝 `backend/utils/vectordatabases/providers/chroma/index.js` (+22 -0) 📝 `backend/utils/vectordatabases/providers/pinecone/index.js` (+25 -0) 📝 `frontend/src/models/workspace.ts` (+22 -0) ➕ `frontend/src/pages/WorkspaceDashboard/DocumentsList/SearchView/index.tsx` (+282 -0) 📝 `frontend/src/pages/WorkspaceDashboard/DocumentsList/index.tsx` (+29 -4) </details> ### 📄 Description resolves #46 --- <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#113