[PR #55] [MERGED] 54 weaviate support #121

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

📋 Pull Request Information

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

Base: masterHead: 54-weaviate-support


📝 Commits (5)

📊 Changes

29 files changed (+2280 additions, -44 deletions)

View changed files

📝 .vscode/settings.json (+2 -1)
📝 backend/models/organizationConnection.js (+1 -1)
📝 backend/package.json (+3 -1)
📝 backend/utils/vectordatabases/providers/chroma/index.js (+1 -1)
📝 backend/utils/vectordatabases/providers/index.js (+5 -0)
📝 backend/utils/vectordatabases/providers/pinecone/index.js (+1 -1)
📝 backend/utils/vectordatabases/providers/qdrant/index.js (+1 -1)
backend/utils/vectordatabases/providers/weaviate/index.js (+441 -0)
backend/utils/vectordatabases/utils/camelcase.js (+143 -0)
📝 backend/utils/vectordatabases/validateNewDatabaseConnector.js (+23 -0)
📝 backend/utils/vectordatabases/validateUpdatedDatabaseConnector.js (+4 -0)
frontend/src/images/vectordbs/weaviate.png (+0 -0)
📝 frontend/src/pages/Dashboard/Connector/index.tsx (+148 -0)
📝 frontend/src/pages/DocumentView/FragmentList/MetadataEditor/index.tsx (+62 -28)
📝 frontend/src/pages/DocumentView/FragmentList/index.tsx (+11 -1)
📝 frontend/src/pages/DocumentView/index.tsx (+10 -1)
📝 frontend/src/utils/constants.ts (+6 -1)
workers/functions/addWeaviateDocuments/index.js (+107 -0)
workers/functions/cloneWeaviateDocument/index.js (+118 -0)
workers/functions/cloneWeaviateWorkspace/index.js (+150 -0)

...and 9 more files

📄 Description

resolves #54

TODO: Append only metadata editing. Cannot delete keys because of data loss on Class of object.


🔄 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/55 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 9/21/2023 **Status:** ✅ Merged **Merged:** 9/21/2023 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `54-weaviate-support` --- ### 📝 Commits (5) - [`5bfcca7`](https://github.com/Mintplex-Labs/vector-admin/commit/5bfcca7c9eff527073f97effec34dba78dcc8ff8) WIP Weaviate - [`27f185e`](https://github.com/Mintplex-Labs/vector-admin/commit/27f185eae6958a54124bb1c57b46d119cdb5f425) WIP Weaviate - [`d7dba03`](https://github.com/Mintplex-Labs/vector-admin/commit/d7dba03eea02df9ebcfcace53237aeda34d120df) Change embedding to append-only for Weaviate - [`caa0d97`](https://github.com/Mintplex-Labs/vector-admin/commit/caa0d974f13bada0a0b7833b18d213c152a4b068) Option chain connector - [`5ee9b8f`](https://github.com/Mintplex-Labs/vector-admin/commit/5ee9b8f6822ed4520f34d812829c9b2d0a8960e5) Fix issue with broken cached vectors ### 📊 Changes **29 files changed** (+2280 additions, -44 deletions) <details> <summary>View changed files</summary> 📝 `.vscode/settings.json` (+2 -1) 📝 `backend/models/organizationConnection.js` (+1 -1) 📝 `backend/package.json` (+3 -1) 📝 `backend/utils/vectordatabases/providers/chroma/index.js` (+1 -1) 📝 `backend/utils/vectordatabases/providers/index.js` (+5 -0) 📝 `backend/utils/vectordatabases/providers/pinecone/index.js` (+1 -1) 📝 `backend/utils/vectordatabases/providers/qdrant/index.js` (+1 -1) ➕ `backend/utils/vectordatabases/providers/weaviate/index.js` (+441 -0) ➕ `backend/utils/vectordatabases/utils/camelcase.js` (+143 -0) 📝 `backend/utils/vectordatabases/validateNewDatabaseConnector.js` (+23 -0) 📝 `backend/utils/vectordatabases/validateUpdatedDatabaseConnector.js` (+4 -0) ➕ `frontend/src/images/vectordbs/weaviate.png` (+0 -0) 📝 `frontend/src/pages/Dashboard/Connector/index.tsx` (+148 -0) 📝 `frontend/src/pages/DocumentView/FragmentList/MetadataEditor/index.tsx` (+62 -28) 📝 `frontend/src/pages/DocumentView/FragmentList/index.tsx` (+11 -1) 📝 `frontend/src/pages/DocumentView/index.tsx` (+10 -1) 📝 `frontend/src/utils/constants.ts` (+6 -1) ➕ `workers/functions/addWeaviateDocuments/index.js` (+107 -0) ➕ `workers/functions/cloneWeaviateDocument/index.js` (+118 -0) ➕ `workers/functions/cloneWeaviateWorkspace/index.js` (+150 -0) _...and 9 more files_ </details> ### 📄 Description resolves #54 TODO: Append only metadata editing. Cannot delete keys because of data loss on Class of object. --- <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:21 -05:00
yindo closed this issue 2026-02-15 16:30:21 -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#121