[PR #648] [MERGED] feature: Integrate Astra as vectorDBProvider #3444

Closed
opened 2026-02-22 18:33:47 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/648
Author: @hakeemsyd
Created: 1/25/2024
Status: Merged
Merged: 1/26/2024
Merged by: @timothycarambat

Base: masterHead: feature/added-astra-vectorDbProvider


📝 Commits (4)

  • 27c991c feature: Integrate Astra as vectorDBProvider
  • 6c0c3da Update .env.example
  • 02f0552 Add env.example to docker example file
  • 5d4df67 reset workspaces

📊 Changes

16 files changed (+536 additions, -6 deletions)

View changed files

📝 .vscode/settings.json (+1 -0)
📝 docker/.env.example (+5 -0)
📝 frontend/src/components/Modals/MangeWorkspace/Settings/index.jsx (+19 -5)
frontend/src/components/VectorDBSelection/AstraDBOptions/index.jsx (+41 -0)
frontend/src/media/vectordbs/astraDB.png (+0 -0)
📝 frontend/src/pages/GeneralSettings/VectorDatabase/index.jsx (+9 -0)
📝 frontend/src/pages/OnboardingFlow/Steps/DataHandling/index.jsx (+8 -0)
📝 frontend/src/pages/OnboardingFlow/Steps/VectorDatabaseConnection/index.jsx (+9 -0)
📝 server/.env.example (+5 -0)
📝 server/models/systemSettings.js (+6 -0)
📝 server/package.json (+1 -0)
📝 server/utils/helpers/index.js (+3 -0)
📝 server/utils/helpers/updateENV.js (+12 -0)
server/utils/vectorDbProviders/astra/ASTRA_SETUP.md (+22 -0)
server/utils/vectorDbProviders/astra/index.js (+380 -0)
📝 server/yarn.lock (+15 -1)

📄 Description

feature
Integrate Astra vector Database as vectorDBProvider in anything-llm. Add vector DB option for onboarding flow and for general settings.

Pull Request Type

  • feat

Relevant Issues

resolves #xxx

What is in this change?

Add Astra Vector DB feature as vector DB provider

Developer Validations

  • I ran yarn lint from the root of the repo & committed changes
  • Relevant documentation has been updated
  • I have tested my code functionality
  • Docker build succeeds locally

🔄 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/anything-llm/pull/648 **Author:** [@hakeemsyd](https://github.com/hakeemsyd) **Created:** 1/25/2024 **Status:** ✅ Merged **Merged:** 1/26/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `feature/added-astra-vectorDbProvider` --- ### 📝 Commits (4) - [`27c991c`](https://github.com/Mintplex-Labs/anything-llm/commit/27c991c5adf6e3293be9255df21487598ef99600) feature: Integrate Astra as vectorDBProvider - [`6c0c3da`](https://github.com/Mintplex-Labs/anything-llm/commit/6c0c3da217373d4faab4f69d4122a40f259a347d) Update .env.example - [`02f0552`](https://github.com/Mintplex-Labs/anything-llm/commit/02f055263a7918a8f53eb63409656d9aafa8cc9d) Add env.example to docker example file - [`5d4df67`](https://github.com/Mintplex-Labs/anything-llm/commit/5d4df67c4c04b850c197cf802f6f648b42bdc37a) reset workspaces ### 📊 Changes **16 files changed** (+536 additions, -6 deletions) <details> <summary>View changed files</summary> 📝 `.vscode/settings.json` (+1 -0) 📝 `docker/.env.example` (+5 -0) 📝 `frontend/src/components/Modals/MangeWorkspace/Settings/index.jsx` (+19 -5) ➕ `frontend/src/components/VectorDBSelection/AstraDBOptions/index.jsx` (+41 -0) ➕ `frontend/src/media/vectordbs/astraDB.png` (+0 -0) 📝 `frontend/src/pages/GeneralSettings/VectorDatabase/index.jsx` (+9 -0) 📝 `frontend/src/pages/OnboardingFlow/Steps/DataHandling/index.jsx` (+8 -0) 📝 `frontend/src/pages/OnboardingFlow/Steps/VectorDatabaseConnection/index.jsx` (+9 -0) 📝 `server/.env.example` (+5 -0) 📝 `server/models/systemSettings.js` (+6 -0) 📝 `server/package.json` (+1 -0) 📝 `server/utils/helpers/index.js` (+3 -0) 📝 `server/utils/helpers/updateENV.js` (+12 -0) ➕ `server/utils/vectorDbProviders/astra/ASTRA_SETUP.md` (+22 -0) ➕ `server/utils/vectorDbProviders/astra/index.js` (+380 -0) 📝 `server/yarn.lock` (+15 -1) </details> ### 📄 Description feature Integrate Astra vector Database as vectorDBProvider in anything-llm. Add vector DB option for onboarding flow and for general settings. ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [ ] ✨ feat ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #xxx ### What is in this change? Add Astra Vector DB feature as vector DB provider ### Developer Validations <!-- All of the applicable items should be checked. --> - [ ] I ran `yarn lint` from the root of the repo & committed changes - [ ] Relevant documentation has been updated - [ ] I have tested my code functionality - [ ] Docker build succeeds locally --- <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-22 18:33:47 -05:00
yindo closed this issue 2026-02-22 18:33:47 -05:00
yindo changed title from [PR #648] feature: Integrate Astra as vectorDBProvider to [PR #648] [MERGED] feature: Integrate Astra as vectorDBProvider 2026-06-05 15:13:26 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#3444