[PR #2582] [MERGED] 2488 novita ai llm integration #4040

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/2582
Author: @timothycarambat
Created: 11/4/2024
Status: Merged
Merged: 11/4/2024
Merged by: @timothycarambat

Base: masterHead: 2488-novita-ai-llm-integration


📝 Commits (8)

  • 6251166 feat: add new model provider: Novita AI
  • dc215e5 Merge remote-tracking branch 'upstream/master'
  • e7f19f3 feat: finished novita AI
  • 3515931 fix: code lint
  • 240791f remove unneeded logging
  • d35386a Merge branch 'master' into novita-ai-llm-integration
  • 30b164a add back log for novita stream not self closing
  • 5fa4c2b Clarify ENV vars for LLM/embedder seperation for future

📊 Changes

24 files changed (+748 additions, -2 deletions)

View changed files

📝 .vscode/settings.json (+1 -0)
📝 README.md (+1 -0)
📝 docker/.env.example (+4 -0)
frontend/src/components/LLMSelection/NovitaLLMOptions/index.jsx (+142 -0)
📝 frontend/src/hooks/useGetProvidersModels.js (+7 -1)
frontend/src/media/llmprovider/novita.png (+0 -0)
📝 frontend/src/pages/GeneralSettings/LLMPreference/index.jsx (+11 -0)
📝 frontend/src/pages/OnboardingFlow/Steps/DataHandling/index.jsx (+9 -0)
📝 frontend/src/pages/OnboardingFlow/Steps/LLMPreference/index.jsx (+10 -0)
📝 frontend/src/pages/WorkspaceSettings/AgentConfig/AgentLLMSelection/index.jsx (+2 -0)
📝 locales/README.ja-JP.md (+1 -0)
📝 locales/README.zh-CN.md (+1 -0)
📝 server/.env.example (+4 -0)
📝 server/models/systemSettings.js (+5 -0)
📝 server/storage/models/.gitignore (+2 -1)
server/utils/AiProviders/novita/index.js (+376 -0)
📝 server/utils/agents/aibitat/index.js (+2 -0)
📝 server/utils/agents/aibitat/providers/ai-provider.js (+8 -0)
📝 server/utils/agents/aibitat/providers/index.js (+2 -0)
server/utils/agents/aibitat/providers/novita.js (+115 -0)

...and 4 more files

📄 Description

cont from https://github.com/Mintplex-Labs/anything-llm/pull/2524 by @jasonhp

Pull Request Type

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

Relevant Issues

resolves #2488
closes #2524

What is in this change?

Add a new model provider: Novita AI.

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/2582 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 11/4/2024 **Status:** ✅ Merged **Merged:** 11/4/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `2488-novita-ai-llm-integration` --- ### 📝 Commits (8) - [`6251166`](https://github.com/Mintplex-Labs/anything-llm/commit/62511667eaf152d5cbb5df0a147e887e21e6934d) feat: add new model provider: Novita AI - [`dc215e5`](https://github.com/Mintplex-Labs/anything-llm/commit/dc215e5bbdef1210b1ecd30fe8093742408d8264) Merge remote-tracking branch 'upstream/master' - [`e7f19f3`](https://github.com/Mintplex-Labs/anything-llm/commit/e7f19f3463770ff938d481c843396b84d8863223) feat: finished novita AI - [`3515931`](https://github.com/Mintplex-Labs/anything-llm/commit/3515931db2cab4c1aa9251fdf356c4eb274abe3c) fix: code lint - [`240791f`](https://github.com/Mintplex-Labs/anything-llm/commit/240791f6478ceb1ab155f5b0f869cbf694211a5f) remove unneeded logging - [`d35386a`](https://github.com/Mintplex-Labs/anything-llm/commit/d35386a491454b026f4028f8b1834694723dda38) Merge branch 'master' into novita-ai-llm-integration - [`30b164a`](https://github.com/Mintplex-Labs/anything-llm/commit/30b164a48853cc98f25fa90ec2f2f67152cb737e) add back log for novita stream not self closing - [`5fa4c2b`](https://github.com/Mintplex-Labs/anything-llm/commit/5fa4c2b5685dc3a017b9ae762da80da597c218d7) Clarify ENV vars for LLM/embedder seperation for future ### 📊 Changes **24 files changed** (+748 additions, -2 deletions) <details> <summary>View changed files</summary> 📝 `.vscode/settings.json` (+1 -0) 📝 `README.md` (+1 -0) 📝 `docker/.env.example` (+4 -0) ➕ `frontend/src/components/LLMSelection/NovitaLLMOptions/index.jsx` (+142 -0) 📝 `frontend/src/hooks/useGetProvidersModels.js` (+7 -1) ➕ `frontend/src/media/llmprovider/novita.png` (+0 -0) 📝 `frontend/src/pages/GeneralSettings/LLMPreference/index.jsx` (+11 -0) 📝 `frontend/src/pages/OnboardingFlow/Steps/DataHandling/index.jsx` (+9 -0) 📝 `frontend/src/pages/OnboardingFlow/Steps/LLMPreference/index.jsx` (+10 -0) 📝 `frontend/src/pages/WorkspaceSettings/AgentConfig/AgentLLMSelection/index.jsx` (+2 -0) 📝 `locales/README.ja-JP.md` (+1 -0) 📝 `locales/README.zh-CN.md` (+1 -0) 📝 `server/.env.example` (+4 -0) 📝 `server/models/systemSettings.js` (+5 -0) 📝 `server/storage/models/.gitignore` (+2 -1) ➕ `server/utils/AiProviders/novita/index.js` (+376 -0) 📝 `server/utils/agents/aibitat/index.js` (+2 -0) 📝 `server/utils/agents/aibitat/providers/ai-provider.js` (+8 -0) 📝 `server/utils/agents/aibitat/providers/index.js` (+2 -0) ➕ `server/utils/agents/aibitat/providers/novita.js` (+115 -0) _...and 4 more files_ </details> ### 📄 Description cont from https://github.com/Mintplex-Labs/anything-llm/pull/2524 by @jasonhp ### 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 #2488 closes #2524 ### What is in this change? <!-- Describe the changes in this PR that are impactful to the repo. --> Add a new model provider: Novita AI. ### 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:00 -05:00
yindo closed this issue 2026-02-22 18:35:01 -05:00
yindo changed title from [PR #2582] 2488 novita ai llm integration to [PR #2582] [MERGED] 2488 novita ai llm integration 2026-06-05 15:16:29 -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#4040