[PR #2300] [MERGED] 1943 add fireworksai support #3946

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/2300
Author: @timothycarambat
Created: 9/16/2024
Status: Merged
Merged: 9/16/2024
Merged by: @timothycarambat

Base: masterHead: 1943-add-fireworksai-support


📝 Commits (3)

📊 Changes

27 files changed (+637 additions, -2 deletions)

View changed files

📝 .vscode/settings.json (+1 -0)
📝 README.md (+1 -0)
📝 docker/.env.example (+4 -0)
frontend/src/components/LLMSelection/FireworksAiOptions/index.jsx (+99 -0)
📝 frontend/src/hooks/useGetProvidersModels.js (+3 -2)
frontend/src/media/llmprovider/fireworksai.jpeg (+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 (+1 -0)
📝 locales/README.ja-JP.md (+1 -0)
📝 locales/README.zh-CN.md (+1 -0)
📝 server/.env.example (+4 -0)
📝 server/models/systemSettings.js (+4 -0)
server/utils/AiProviders/fireworksAi/index.js (+135 -0)
server/utils/AiProviders/fireworksAi/models.js (+112 -0)
server/utils/AiProviders/fireworksAi/scripts/.gitignore (+1 -0)
server/utils/AiProviders/fireworksAi/scripts/chat_models.txt (+20 -0)
server/utils/AiProviders/fireworksAi/scripts/parse.mjs (+46 -0)
📝 server/utils/agents/aibitat/index.js (+2 -0)

...and 7 more files

📄 Description

Pull Request Type

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

Relevant Issues

closes #2296
Resolves #1943

What is in this change?

Support code for new LLM provider - Fireworks AI (https://fireworks.ai/)

Additional Information

  • Only some models added to dropdown list. No free-form entering at this time.

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/2300 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 9/16/2024 **Status:** ✅ Merged **Merged:** 9/16/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `1943-add-fireworksai-support` --- ### 📝 Commits (3) - [`33067b5`](https://github.com/Mintplex-Labs/anything-llm/commit/33067b5f9e5f1f366161d49a12e5a9a60fe1ce87) Issue #1943: Add support for LLM provider - Fireworks AI - [`824ec99`](https://github.com/Mintplex-Labs/anything-llm/commit/824ec999fc8fc2ce78ae2fd05bb620623d6236eb) Update UI selection boxes - [`12da1e8`](https://github.com/Mintplex-Labs/anything-llm/commit/12da1e8db9373ecfdbdb606e07fac271fc0db978) class only return ### 📊 Changes **27 files changed** (+637 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/FireworksAiOptions/index.jsx` (+99 -0) 📝 `frontend/src/hooks/useGetProvidersModels.js` (+3 -2) ➕ `frontend/src/media/llmprovider/fireworksai.jpeg` (+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` (+1 -0) 📝 `locales/README.ja-JP.md` (+1 -0) 📝 `locales/README.zh-CN.md` (+1 -0) 📝 `server/.env.example` (+4 -0) 📝 `server/models/systemSettings.js` (+4 -0) ➕ `server/utils/AiProviders/fireworksAi/index.js` (+135 -0) ➕ `server/utils/AiProviders/fireworksAi/models.js` (+112 -0) ➕ `server/utils/AiProviders/fireworksAi/scripts/.gitignore` (+1 -0) ➕ `server/utils/AiProviders/fireworksAi/scripts/chat_models.txt` (+20 -0) ➕ `server/utils/AiProviders/fireworksAi/scripts/parse.mjs` (+46 -0) 📝 `server/utils/agents/aibitat/index.js` (+2 -0) _...and 7 more files_ </details> ### 📄 Description ### Pull Request Type - [X] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [ ] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### Relevant Issues closes #2296 Resolves #1943 ### What is in this change? Support code for new LLM provider - Fireworks AI (https://fireworks.ai/) ### Additional Information - Only some models added to dropdown list. No free-form entering at this time. ### Developer Validations - [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:34:49 -05:00
yindo closed this issue 2026-02-22 18:34:49 -05:00
yindo changed title from [PR #2300] 1943 add fireworksai support to [PR #2300] [MERGED] 1943 add fireworksai support 2026-06-05 15:16:02 -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#3946