[PR #3024] [MERGED] Remove native LLM option #4200

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/3024
Author: @shatfield4
Created: 1/24/2025
Status: Merged
Merged: 1/27/2025
Merged by: @timothycarambat

Base: masterHead: remove-native-llm


📝 Commits (5)

  • 4759b7f remove native llm
  • 8d8f736 remove node-llama-cpp from dockerfile
  • 29a4aa3 remove unneeded items from dockerfile
  • 4039135 Merge branch 'master' into remove-native-llm
  • 5cf2edf Merge branch 'master' into remove-native-llm

📊 Changes

15 files changed (+18 additions, -1063 deletions)

View changed files

📝 BARE_METAL.md (+3 -6)
📝 docker/Dockerfile (+2 -7)
frontend/src/components/LLMSelection/NativeLLMOptions/index.jsx (+0 -102)
📝 frontend/src/hooks/useGetProvidersModels.js (+0 -2)
📝 frontend/src/pages/GeneralSettings/LLMPreference/index.jsx (+0 -13)
📝 frontend/src/pages/OnboardingFlow/Steps/DataHandling/index.jsx (+0 -7)
📝 frontend/src/pages/OnboardingFlow/Steps/LLMPreference/index.jsx (+0 -9)
📝 frontend/src/pages/WorkspaceSettings/ChatSettings/WorkspaceLLMSelection/index.jsx (+1 -1)
📝 server/models/systemSettings.js (+0 -4)
📝 server/package.json (+0 -1)
server/utils/AiProviders/native/index.js (+0 -244)
📝 server/utils/helpers/customModels.js (+0 -23)
📝 server/utils/helpers/index.js (+0 -6)
📝 server/utils/helpers/updateENV.js (+0 -27)
📝 server/yarn.lock (+12 -611)

📄 Description

Pull Request Type

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

Relevant Issues

resolves #3019

What is in this change?

  • Remove native LLM option as an LLM provider
  • Remove all corresponding files and references to the native LLM provider
  • Remove old dependencies from native LLM provider

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/3024 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 1/24/2025 **Status:** ✅ Merged **Merged:** 1/27/2025 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `remove-native-llm` --- ### 📝 Commits (5) - [`4759b7f`](https://github.com/Mintplex-Labs/anything-llm/commit/4759b7f20921def4fe20ea9d2aadfa0df56e4445) remove native llm - [`8d8f736`](https://github.com/Mintplex-Labs/anything-llm/commit/8d8f73627b14d6a2514539ad64c6c9fb4ce90e66) remove node-llama-cpp from dockerfile - [`29a4aa3`](https://github.com/Mintplex-Labs/anything-llm/commit/29a4aa3fd3d26d490be7e69b1f3e2425f57a6fb4) remove unneeded items from dockerfile - [`4039135`](https://github.com/Mintplex-Labs/anything-llm/commit/40391354dd37f24f94da5c46d27e930ee928d9ee) Merge branch 'master' into remove-native-llm - [`5cf2edf`](https://github.com/Mintplex-Labs/anything-llm/commit/5cf2edf8177ae37cff55f43d483d1492939da593) Merge branch 'master' into remove-native-llm ### 📊 Changes **15 files changed** (+18 additions, -1063 deletions) <details> <summary>View changed files</summary> 📝 `BARE_METAL.md` (+3 -6) 📝 `docker/Dockerfile` (+2 -7) ➖ `frontend/src/components/LLMSelection/NativeLLMOptions/index.jsx` (+0 -102) 📝 `frontend/src/hooks/useGetProvidersModels.js` (+0 -2) 📝 `frontend/src/pages/GeneralSettings/LLMPreference/index.jsx` (+0 -13) 📝 `frontend/src/pages/OnboardingFlow/Steps/DataHandling/index.jsx` (+0 -7) 📝 `frontend/src/pages/OnboardingFlow/Steps/LLMPreference/index.jsx` (+0 -9) 📝 `frontend/src/pages/WorkspaceSettings/ChatSettings/WorkspaceLLMSelection/index.jsx` (+1 -1) 📝 `server/models/systemSettings.js` (+0 -4) 📝 `server/package.json` (+0 -1) ➖ `server/utils/AiProviders/native/index.js` (+0 -244) 📝 `server/utils/helpers/customModels.js` (+0 -23) 📝 `server/utils/helpers/index.js` (+0 -6) 📝 `server/utils/helpers/updateENV.js` (+0 -27) 📝 `server/yarn.lock` (+12 -611) </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 #3019 ### What is in this change? <!-- Describe the changes in this PR that are impactful to the repo. --> - Remove native LLM option as an LLM provider - Remove all corresponding files and references to the native LLM provider - Remove old dependencies from native LLM provider ### 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:35:21 -05:00
yindo closed this issue 2026-02-22 18:35:21 -05:00
yindo changed title from [PR #3024] Remove native LLM option to [PR #3024] [MERGED] Remove native LLM option 2026-06-05 15:17:21 -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#4200