[PR #2578] [CLOSED] Added vertex #4039

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/2578
Author: @Stono
Created: 11/3/2024
Status: Closed

Base: masterHead: vertex


📝 Commits (4)

  • 2fccfcd Added vertex
  • 6cb676b Add support for specifing the region
  • 452a47a Merge branch 'master' into vertex
  • 5a915cf Merge branch 'master' into vertex

📊 Changes

15 files changed (+562 additions, -5 deletions)

View changed files

📝 README.md (+1 -0)
frontend/src/components/LLMSelection/VertexLLMOptions/index.jsx (+95 -0)
📝 frontend/src/hooks/useGetProvidersModels.js (+8 -0)
frontend/src/media/llmprovider/vertex.png (+0 -0)
📝 frontend/src/pages/GeneralSettings/LLMPreference/index.jsx (+10 -0)
📝 frontend/src/pages/OnboardingFlow/Steps/DataHandling/index.jsx (+9 -0)
📝 frontend/src/pages/OnboardingFlow/Steps/LLMPreference/index.jsx (+9 -0)
📝 server/models/systemSettings.js (+8 -0)
📝 server/package.json (+3 -2)
📝 server/utils/AiProviders/modelMap.js (+8 -0)
server/utils/AiProviders/vertex/index.js (+297 -0)
📝 server/utils/agents/index.js (+2 -0)
📝 server/utils/helpers/index.js (+6 -0)
📝 server/utils/helpers/updateENV.js (+32 -0)
📝 server/yarn.lock (+74 -3)

📄 Description

Pull Request Type

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

Relevant Issues

resolves #2575

What is in this change?

This adds support for Vertex, which allows enterprises to run gemini on vertex.

This is better because:

  • It suppose service accounts, transparent auth with application default credentials
  • Better privacy, the results aren't used to train the model
  • Allows you to specify the region, which is important for those who want to keep their data within certain localities

Additional Information

None

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/2578 **Author:** [@Stono](https://github.com/Stono) **Created:** 11/3/2024 **Status:** ❌ Closed **Base:** `master` ← **Head:** `vertex` --- ### 📝 Commits (4) - [`2fccfcd`](https://github.com/Mintplex-Labs/anything-llm/commit/2fccfcdd2b6d4b1bb79fce93da60dca657f72c66) Added vertex - [`6cb676b`](https://github.com/Mintplex-Labs/anything-llm/commit/6cb676b925a65e6aa07c817b39b912b1c7e4731e) Add support for specifing the region - [`452a47a`](https://github.com/Mintplex-Labs/anything-llm/commit/452a47a6362462f06b477818508d1a67faa651e9) Merge branch 'master' into vertex - [`5a915cf`](https://github.com/Mintplex-Labs/anything-llm/commit/5a915cff8cad5e2a465731d116571451475e09f5) Merge branch 'master' into vertex ### 📊 Changes **15 files changed** (+562 additions, -5 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+1 -0) ➕ `frontend/src/components/LLMSelection/VertexLLMOptions/index.jsx` (+95 -0) 📝 `frontend/src/hooks/useGetProvidersModels.js` (+8 -0) ➕ `frontend/src/media/llmprovider/vertex.png` (+0 -0) 📝 `frontend/src/pages/GeneralSettings/LLMPreference/index.jsx` (+10 -0) 📝 `frontend/src/pages/OnboardingFlow/Steps/DataHandling/index.jsx` (+9 -0) 📝 `frontend/src/pages/OnboardingFlow/Steps/LLMPreference/index.jsx` (+9 -0) 📝 `server/models/systemSettings.js` (+8 -0) 📝 `server/package.json` (+3 -2) 📝 `server/utils/AiProviders/modelMap.js` (+8 -0) ➕ `server/utils/AiProviders/vertex/index.js` (+297 -0) 📝 `server/utils/agents/index.js` (+2 -0) 📝 `server/utils/helpers/index.js` (+6 -0) 📝 `server/utils/helpers/updateENV.js` (+32 -0) 📝 `server/yarn.lock` (+74 -3) </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [x] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [ ] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### Relevant Issues resolves #2575 ### What is in this change? This adds support for Vertex, which allows enterprises to run gemini on vertex. This is better because: - It suppose service accounts, transparent auth with application default credentials - Better privacy, the results aren't used to train the model - Allows you to specify the region, which is important for those who want to keep their data within certain localities ### Additional Information None ### Developer Validations - [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:35:00 -05:00
yindo closed this issue 2026-02-22 18:35:01 -05:00
yindo changed title from [PR #2578] Added vertex to [PR #2578] [CLOSED] Added vertex 2026-06-05 15:16:30 -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#4039