[PR #2766] [MERGED] Add Support for NVIDIA NIM #4103

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/2766
Author: @timothycarambat
Created: 12/5/2024
Status: Merged
Merged: 12/5/2024
Merged by: @timothycarambat

Base: masterHead: nvidia-nim-support


📝 Commits (3)

📊 Changes

23 files changed (+626 additions, -4 deletions)

View changed files

📝 README.md (+1 -0)
📝 docker/.env.example (+4 -0)
frontend/src/components/LLMSelection/NvidiaNimOptions/index.jsx (+11 -0)
frontend/src/components/LLMSelection/NvidiaNimOptions/managed.jsx (+7 -0)
frontend/src/components/LLMSelection/NvidiaNimOptions/remote.jsx (+130 -0)
📝 frontend/src/hooks/useGetProvidersModels.js (+1 -0)
frontend/src/media/llmprovider/nvidia-nim.png (+0 -0)
📝 frontend/src/pages/GeneralSettings/LLMPreference/index.jsx (+11 -0)
📝 frontend/src/pages/OnboardingFlow/Steps/DataHandling/index.jsx (+8 -0)
📝 frontend/src/pages/OnboardingFlow/Steps/LLMPreference/index.jsx (+10 -1)
📝 frontend/src/pages/WorkspaceSettings/AgentConfig/AgentLLMSelection/index.jsx (+1 -0)
📝 frontend/src/utils/constants.js (+7 -0)
📝 server/.env.example (+4 -0)
📝 server/models/systemSettings.js (+5 -0)
server/utils/AiProviders/nvidiaNim/index.js (+220 -0)
📝 server/utils/agents/aibitat/index.js (+2 -0)
📝 server/utils/agents/aibitat/providers/ai-provider.js (+11 -3)
📝 server/utils/agents/aibitat/providers/index.js (+2 -0)
server/utils/agents/aibitat/providers/nvidiaNim.js (+117 -0)
📝 server/utils/agents/index.js (+8 -0)

...and 3 more files

📄 Description

Pull Request Type

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

What is in this change?

  • Add support for NVIDIA NIM container chats to run full-parameter models via RTX devices
    this only supports locally running containers, not NVIDIA's cloud container service

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/2766 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 12/5/2024 **Status:** ✅ Merged **Merged:** 12/5/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `nvidia-nim-support` --- ### 📝 Commits (3) - [`b9e7673`](https://github.com/Mintplex-Labs/anything-llm/commit/b9e76739b328b5b35e9eecdb76b304fe08d312c2) Add Support for NVIDIA NIM - [`f991904`](https://github.com/Mintplex-Labs/anything-llm/commit/f991904c27e75eb6c7b43d99f4f4915df0a4add2) update README - [`c6fd758`](https://github.com/Mintplex-Labs/anything-llm/commit/c6fd758d50ef64d732695c873c7160709fb58e8b) linting ### 📊 Changes **23 files changed** (+626 additions, -4 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+1 -0) 📝 `docker/.env.example` (+4 -0) ➕ `frontend/src/components/LLMSelection/NvidiaNimOptions/index.jsx` (+11 -0) ➕ `frontend/src/components/LLMSelection/NvidiaNimOptions/managed.jsx` (+7 -0) ➕ `frontend/src/components/LLMSelection/NvidiaNimOptions/remote.jsx` (+130 -0) 📝 `frontend/src/hooks/useGetProvidersModels.js` (+1 -0) ➕ `frontend/src/media/llmprovider/nvidia-nim.png` (+0 -0) 📝 `frontend/src/pages/GeneralSettings/LLMPreference/index.jsx` (+11 -0) 📝 `frontend/src/pages/OnboardingFlow/Steps/DataHandling/index.jsx` (+8 -0) 📝 `frontend/src/pages/OnboardingFlow/Steps/LLMPreference/index.jsx` (+10 -1) 📝 `frontend/src/pages/WorkspaceSettings/AgentConfig/AgentLLMSelection/index.jsx` (+1 -0) 📝 `frontend/src/utils/constants.js` (+7 -0) 📝 `server/.env.example` (+4 -0) 📝 `server/models/systemSettings.js` (+5 -0) ➕ `server/utils/AiProviders/nvidiaNim/index.js` (+220 -0) 📝 `server/utils/agents/aibitat/index.js` (+2 -0) 📝 `server/utils/agents/aibitat/providers/ai-provider.js` (+11 -3) 📝 `server/utils/agents/aibitat/providers/index.js` (+2 -0) ➕ `server/utils/agents/aibitat/providers/nvidiaNim.js` (+117 -0) 📝 `server/utils/agents/index.js` (+8 -0) _...and 3 more files_ </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [x] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [ ] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### What is in this change? - Add support for [NVIDIA NIM container chats](https://build.nvidia.com/explore/discover) to run full-parameter models via RTX devices _this only supports locally running containers, not NVIDIA's cloud container service_ <!-- 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:35:08 -05:00
yindo closed this issue 2026-02-22 18:35:08 -05:00
yindo changed title from [PR #2766] Add Support for NVIDIA NIM to [PR #2766] [MERGED] Add Support for NVIDIA NIM 2026-06-05 15:16:50 -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#4103