[PR #1401] [MERGED] [FEAT] Add support for Voyage AI embedder #3666

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/1401
Author: @shatfield4
Created: 5/14/2024
Status: Merged
Merged: 5/19/2024
Merged by: @timothycarambat

Base: masterHead: 1375-feat-support-for-voyage-ai-embedding-models


📝 Commits (6)

  • 1d8b5de add support for voyageai embedder
  • 1e5385d remove unneeded import
  • bc89e3e Merge branch 'master' into 1375-feat-support-for-voyage-ai-embedding-models
  • a4366d6 Merge branch 'master' into 1375-feat-support-for-voyage-ai-embedding-models
  • 7a6d251 linting
  • ea9cd7c Add ENV examples

📊 Changes

12 files changed (+150 additions, -16 deletions)

View changed files

📝 docker/.env.example (+4 -0)
frontend/src/components/EmbeddingSelection/VoyageAiOptions/index.jsx (+50 -0)
frontend/src/media/embeddingprovider/voyageai.png (+0 -0)
📝 frontend/src/pages/GeneralSettings/EmbeddingPreference/index.jsx (+10 -0)
📝 frontend/src/pages/OnboardingFlow/Steps/DataHandling/index.jsx (+9 -0)
📝 server/.env.example (+4 -0)
📝 server/endpoints/api/workspace/index.js (+6 -3)
📝 server/models/systemSettings.js (+3 -0)
📝 server/swagger/openapi.json (+9 -13)
server/utils/EmbeddingEngines/voyageAi/index.js (+45 -0)
📝 server/utils/helpers/index.js (+3 -0)
📝 server/utils/helpers/updateENV.js (+7 -0)

📄 Description

Pull Request Type

  • feat
  • 🐛 fix
  • ♻️ refactor
  • 💄 style
  • 🔨 chore
  • 📝 docs

Relevant Issues

resolves #1375

What is in this change?

  • Add support for all Voyage AI embedding models using the VoyageEmbeddings langchain wrapper

Additional Information

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/1401 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 5/14/2024 **Status:** ✅ Merged **Merged:** 5/19/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `1375-feat-support-for-voyage-ai-embedding-models` --- ### 📝 Commits (6) - [`1d8b5de`](https://github.com/Mintplex-Labs/anything-llm/commit/1d8b5dee7e3234e700a3825dae0353f727dbaedd) add support for voyageai embedder - [`1e5385d`](https://github.com/Mintplex-Labs/anything-llm/commit/1e5385d02f231a149382f1e1ba786d98353dc4d7) remove unneeded import - [`bc89e3e`](https://github.com/Mintplex-Labs/anything-llm/commit/bc89e3e054e0fbed681c3f9d56cddded003ea6dd) Merge branch 'master' into 1375-feat-support-for-voyage-ai-embedding-models - [`a4366d6`](https://github.com/Mintplex-Labs/anything-llm/commit/a4366d63431042f59985f00f24dd61f828a408cd) Merge branch 'master' into 1375-feat-support-for-voyage-ai-embedding-models - [`7a6d251`](https://github.com/Mintplex-Labs/anything-llm/commit/7a6d251a622804635a2d82be00293b1d5f403fdd) linting - [`ea9cd7c`](https://github.com/Mintplex-Labs/anything-llm/commit/ea9cd7c111ab7ef23e1871dde102683e138b6ffd) Add ENV examples ### 📊 Changes **12 files changed** (+150 additions, -16 deletions) <details> <summary>View changed files</summary> 📝 `docker/.env.example` (+4 -0) ➕ `frontend/src/components/EmbeddingSelection/VoyageAiOptions/index.jsx` (+50 -0) ➕ `frontend/src/media/embeddingprovider/voyageai.png` (+0 -0) 📝 `frontend/src/pages/GeneralSettings/EmbeddingPreference/index.jsx` (+10 -0) 📝 `frontend/src/pages/OnboardingFlow/Steps/DataHandling/index.jsx` (+9 -0) 📝 `server/.env.example` (+4 -0) 📝 `server/endpoints/api/workspace/index.js` (+6 -3) 📝 `server/models/systemSettings.js` (+3 -0) 📝 `server/swagger/openapi.json` (+9 -13) ➕ `server/utils/EmbeddingEngines/voyageAi/index.js` (+45 -0) 📝 `server/utils/helpers/index.js` (+3 -0) 📝 `server/utils/helpers/updateENV.js` (+7 -0) </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [x] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [ ] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #1375 ### What is in this change? <!-- Describe the changes in this PR that are impactful to the repo. --> - Add support for all Voyage AI embedding models using the VoyageEmbeddings langchain wrapper ### Additional Information <!-- Add any other context about the Pull Request here that was not captured above. --> ### Developer Validations <!-- All of the applicable items should be checked. --> - [x] I ran `yarn lint` from the root of the repo & committed changes - [x] Relevant documentation has been updated - [x] I have tested my code functionality - [x] 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:34:15 -05:00
yindo closed this issue 2026-02-22 18:34:15 -05:00
yindo changed title from [PR #1401] [FEAT] Add support for Voyage AI embedder to [PR #1401] [MERGED] [FEAT] Add support for Voyage AI embedder 2026-06-05 15:14:37 -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#3666