[PR #4943] [MERGED] SambaNova Integration #4837

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/4943
Author: @timothycarambat
Created: 1/29/2026
Status: Merged
Merged: 1/29/2026
Merged by: @timothycarambat

Base: masterHead: 3968-sambanova


📝 Commits (2)

📊 Changes

26 files changed (+623 additions, -25 deletions)

View changed files

📝 README.md (+6 -4)
📝 docker/.env.example (+4 -0)
frontend/src/components/LLMSelection/SambaNovaOptions/index.jsx (+103 -0)
📝 frontend/src/components/ProviderPrivacy/constants.js (+6 -0)
📝 frontend/src/hooks/useGetProvidersModels.js (+1 -0)
frontend/src/media/llmprovider/sambanova.png (+0 -0)
📝 frontend/src/pages/GeneralSettings/LLMPreference/index.jsx (+11 -0)
📝 frontend/src/pages/OnboardingFlow/Steps/LLMPreference/index.jsx (+9 -0)
📝 frontend/src/pages/WorkspaceSettings/AgentConfig/AgentLLMSelection/index.jsx (+1 -0)
📝 locales/README.fa-IR.md (+13 -6)
📝 locales/README.ja-JP.md (+5 -3)
📝 locales/README.tr-TR.md (+6 -6)
📝 locales/README.zh-CN.md (+6 -6)
📝 server/.env.example (+4 -0)
📝 server/endpoints/utils.js (+3 -0)
📝 server/models/systemSettings.js (+4 -0)
📝 server/utils/AiProviders/modelMap/index.js (+1 -0)
server/utils/AiProviders/sambanova/index.js (+268 -0)
📝 server/utils/agents/aibitat/index.js (+2 -0)
📝 server/utils/agents/aibitat/providers/ai-provider.js (+8 -0)

...and 6 more files

📄 Description

Pull Request Type

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

Relevant Issues

resolves #3968
closes #4092

What is in this change?

Support code for new LLM provider - SambaNova (https://cloud.sambanova.ai/)

Adds both chat, RAG, Agent (stream/no-stream), and supports model grouping.

Supports agents for model that do not even support tool calling.

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/4943 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 1/29/2026 **Status:** ✅ Merged **Merged:** 1/29/2026 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `3968-sambanova` --- ### 📝 Commits (2) - [`303e3a6`](https://github.com/Mintplex-Labs/anything-llm/commit/303e3a6e3a90d457bc7aaa0fc540a75fc13e2c59) SambaNova Integration - [`8c99de5`](https://github.com/Mintplex-Labs/anything-llm/commit/8c99de50041cb522e4792fae33f98aac855b2242) lint ### 📊 Changes **26 files changed** (+623 additions, -25 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+6 -4) 📝 `docker/.env.example` (+4 -0) ➕ `frontend/src/components/LLMSelection/SambaNovaOptions/index.jsx` (+103 -0) 📝 `frontend/src/components/ProviderPrivacy/constants.js` (+6 -0) 📝 `frontend/src/hooks/useGetProvidersModels.js` (+1 -0) ➕ `frontend/src/media/llmprovider/sambanova.png` (+0 -0) 📝 `frontend/src/pages/GeneralSettings/LLMPreference/index.jsx` (+11 -0) 📝 `frontend/src/pages/OnboardingFlow/Steps/LLMPreference/index.jsx` (+9 -0) 📝 `frontend/src/pages/WorkspaceSettings/AgentConfig/AgentLLMSelection/index.jsx` (+1 -0) 📝 `locales/README.fa-IR.md` (+13 -6) 📝 `locales/README.ja-JP.md` (+5 -3) 📝 `locales/README.tr-TR.md` (+6 -6) 📝 `locales/README.zh-CN.md` (+6 -6) 📝 `server/.env.example` (+4 -0) 📝 `server/endpoints/utils.js` (+3 -0) 📝 `server/models/systemSettings.js` (+4 -0) 📝 `server/utils/AiProviders/modelMap/index.js` (+1 -0) ➕ `server/utils/AiProviders/sambanova/index.js` (+268 -0) 📝 `server/utils/agents/aibitat/index.js` (+2 -0) 📝 `server/utils/agents/aibitat/providers/ai-provider.js` (+8 -0) _...and 6 more files_ </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [ ] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [ ] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #3968 closes #4092 ### What is in this change? Support code for new LLM provider - SambaNova (https://cloud.sambanova.ai/) Adds both chat, RAG, Agent (stream/no-stream), and supports model grouping. Supports agents for model that do not even support tool calling. <!-- Describe the changes in this PR that are impactful to the repo. --> ### 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. --> - [ ] 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:36:38 -05:00
yindo closed this issue 2026-02-22 18:36:38 -05:00
yindo changed title from [PR #4943] SambaNova Integration to [PR #4943] [MERGED] SambaNova Integration 2026-06-05 15:20:38 -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#4837