[PR #3953] [CLOSED] feat: add new model provider BurnCloud #4472

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/3953
Author: @rustburn
Created: 6/5/2025
Status: Closed

Base: masterHead: feat/burncloud


📝 Commits (10+)

  • 114abd8 feat: add new model provider BurnCloud
  • 43ef79b Merge branch 'Mintplex-Labs:master' into master
  • 4e4b9f1 Merge branch 'master' into master
  • da67fb4 Fix BurnCloud integration issues
  • af98356 Merge branch 'master' of github.com:burncloud/anything-llm
  • 4b428d8 Merge branch 'master' into master
  • 69d587d Merge branch 'master' into master
  • 9584819 Merge branch 'master' into master
  • 90888e0 Merge branch 'master' into master
  • 82f24b5 Merge branch 'master' into feat/burncloud

📊 Changes

17 files changed (+619 additions, -564 deletions)

View changed files

frontend/src/components/LLMSelection/BurnCloudOptions/index.jsx (+172 -0)
frontend/src/media/llmprovider/burncloud.png (+0 -0)
📝 frontend/src/pages/GeneralSettings/LLMPreference/index.jsx (+11 -2)
📝 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 (+1 -0)
📝 server/endpoints/utils.js (+3 -0)
📝 server/models/systemSettings.js (+7 -0)
server/utils/AiProviders/burncloud/index.js (+200 -0)
📝 server/utils/AiProviders/modelMap/legacy.js (+23 -0)
📝 server/utils/agents/aibitat/providers/ai-provider.js (+9 -0)
server/utils/agents/aibitat/providers/burncloud.js (+105 -0)
📝 server/utils/agents/aibitat/providers/index.js (+2 -0)
📝 server/utils/agents/index.js (+6 -0)
📝 server/utils/helpers/customModels.js (+40 -562)
📝 server/utils/helpers/index.js (+6 -0)
📝 server/utils/helpers/updateENV.js (+15 -0)

📄 Description

Pull Request Type

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

Relevant Issues

resolves #xxx

What is in this change?

add new model provider BurnCloud

Additional Information

BurnCloud provides stable, cost-effective open-source model API services, supporting Claude 4.0/3.7/3.5, GPT 4o/4o-mini/o1/4.5 preview/o1-mini, GPT-image-1, Gemini 2.5 pro/2.0, DeepSeek R1/V3 and other industry-leading large models.

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/3953 **Author:** [@rustburn](https://github.com/rustburn) **Created:** 6/5/2025 **Status:** ❌ Closed **Base:** `master` ← **Head:** `feat/burncloud` --- ### 📝 Commits (10+) - [`114abd8`](https://github.com/Mintplex-Labs/anything-llm/commit/114abd83dcdaefb8a4e0d58a1fcfe307a60d850a) feat: add new model provider BurnCloud - [`43ef79b`](https://github.com/Mintplex-Labs/anything-llm/commit/43ef79ba7fc89d5d2d465aa2e1985fdfb05e71f0) Merge branch 'Mintplex-Labs:master' into master - [`4e4b9f1`](https://github.com/Mintplex-Labs/anything-llm/commit/4e4b9f1a8e35378a6c3e20c75c48887d7f8ec37f) Merge branch 'master' into master - [`da67fb4`](https://github.com/Mintplex-Labs/anything-llm/commit/da67fb4195135e779737ca1a4904acac7462e266) Fix BurnCloud integration issues - [`af98356`](https://github.com/Mintplex-Labs/anything-llm/commit/af983562a1e0c81a7ea9679557c2df1a455689f6) Merge branch 'master' of github.com:burncloud/anything-llm - [`4b428d8`](https://github.com/Mintplex-Labs/anything-llm/commit/4b428d876e9d10344e4e27bbda1a032cf0d5811a) Merge branch 'master' into master - [`69d587d`](https://github.com/Mintplex-Labs/anything-llm/commit/69d587d44df1047363a46d3d0e0393ec08bf149c) Merge branch 'master' into master - [`9584819`](https://github.com/Mintplex-Labs/anything-llm/commit/958481991fadf09167fa8ee8bb79206ed6e8f093) Merge branch 'master' into master - [`90888e0`](https://github.com/Mintplex-Labs/anything-llm/commit/90888e0d7bff9497c8cda5384550caf1cbdc49b1) Merge branch 'master' into master - [`82f24b5`](https://github.com/Mintplex-Labs/anything-llm/commit/82f24b5c4fc8359e43ab8814b3f4cd165d3058e8) Merge branch 'master' into feat/burncloud ### 📊 Changes **17 files changed** (+619 additions, -564 deletions) <details> <summary>View changed files</summary> ➕ `frontend/src/components/LLMSelection/BurnCloudOptions/index.jsx` (+172 -0) ➕ `frontend/src/media/llmprovider/burncloud.png` (+0 -0) 📝 `frontend/src/pages/GeneralSettings/LLMPreference/index.jsx` (+11 -2) 📝 `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` (+1 -0) 📝 `server/endpoints/utils.js` (+3 -0) 📝 `server/models/systemSettings.js` (+7 -0) ➕ `server/utils/AiProviders/burncloud/index.js` (+200 -0) 📝 `server/utils/AiProviders/modelMap/legacy.js` (+23 -0) 📝 `server/utils/agents/aibitat/providers/ai-provider.js` (+9 -0) ➕ `server/utils/agents/aibitat/providers/burncloud.js` (+105 -0) 📝 `server/utils/agents/aibitat/providers/index.js` (+2 -0) 📝 `server/utils/agents/index.js` (+6 -0) 📝 `server/utils/helpers/customModels.js` (+40 -562) 📝 `server/utils/helpers/index.js` (+6 -0) 📝 `server/utils/helpers/updateENV.js` (+15 -0) </details> ### 📄 Description ### Pull Request Type - [x] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [ ] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #xxx ### What is in this change? add new model provider BurnCloud ### Additional Information BurnCloud provides stable, cost-effective open-source model API services, supporting Claude 4.0/3.7/3.5, GPT 4o/4o-mini/o1/4.5 preview/o1-mini, GPT-image-1, Gemini 2.5 pro/2.0, DeepSeek R1/V3 and other industry-leading large models. ### 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:54 -05:00
yindo closed this issue 2026-02-22 18:35:54 -05:00
yindo changed title from [PR #3953] feat: add new model provider BurnCloud to [PR #3953] [CLOSED] feat: add new model provider BurnCloud 2026-06-05 15:18:45 -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#4472