[PR #2377] [MERGED] Support DeepSeek #3970

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

📋 Pull Request Information

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

Base: masterHead: 2318-feat-deepseek


📝 Commits (5)

📊 Changes

18 files changed (+440 additions, -0 deletions)

View changed files

📝 README.md (+1 -0)
frontend/src/components/LLMSelection/DeepSeekOptions/index.jsx (+100 -0)
frontend/src/media/llmprovider/deepseek.png (+0 -0)
📝 frontend/src/pages/GeneralSettings/LLMPreference/index.jsx (+10 -0)
📝 frontend/src/pages/OnboardingFlow/Steps/DataHandling/index.jsx (+6 -0)
📝 frontend/src/pages/OnboardingFlow/Steps/LLMPreference/index.jsx (+9 -0)
📝 frontend/src/pages/WorkspaceSettings/AgentConfig/AgentLLMSelection/index.jsx (+1 -0)
📝 server/models/systemSettings.js (+4 -0)
server/utils/AiProviders/deepseek/index.js (+127 -0)
📝 server/utils/AiProviders/modelMap.js (+4 -0)
📝 server/utils/agents/aibitat/index.js (+2 -0)
📝 server/utils/agents/aibitat/providers/ai-provider.js (+8 -0)
server/utils/agents/aibitat/providers/deepseek.js (+118 -0)
📝 server/utils/agents/aibitat/providers/index.js (+2 -0)
📝 server/utils/agents/index.js (+6 -0)
📝 server/utils/helpers/customModels.js (+28 -0)
📝 server/utils/helpers/index.js (+3 -0)
📝 server/utils/helpers/updateENV.js (+11 -0)

📄 Description

Pull Request Type

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

Relevant Issues

resolves #2318

What is in this change?

  • Add support for DeepSeek LLM models
  • Add support for DeepSeek as agent 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/2377 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 9/26/2024 **Status:** ✅ Merged **Merged:** 9/26/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `2318-feat-deepseek` --- ### 📝 Commits (5) - [`79ae752`](https://github.com/Mintplex-Labs/anything-llm/commit/79ae7529db4804a41606673d0e8c3d40b3bae7f8) add deepseek support - [`cf2385e`](https://github.com/Mintplex-Labs/anything-llm/commit/cf2385e9ac6dc9fe1c6c9832c86f0a9f79d6a21a) lint - [`1644b83`](https://github.com/Mintplex-Labs/anything-llm/commit/1644b83599ad9dfe00b65efd8025b42aace6f9d4) update deepseek context length - [`ee0dde3`](https://github.com/Mintplex-Labs/anything-llm/commit/ee0dde3936ea70f6bbee2973325b649b0e582d25) add deepseek to onboarding - [`5964b40`](https://github.com/Mintplex-Labs/anything-llm/commit/5964b40501e2b97a3dfb84b64692979b47e77346) Merge branch 'master' into 2318-feat-deepseek ### 📊 Changes **18 files changed** (+440 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+1 -0) ➕ `frontend/src/components/LLMSelection/DeepSeekOptions/index.jsx` (+100 -0) ➕ `frontend/src/media/llmprovider/deepseek.png` (+0 -0) 📝 `frontend/src/pages/GeneralSettings/LLMPreference/index.jsx` (+10 -0) 📝 `frontend/src/pages/OnboardingFlow/Steps/DataHandling/index.jsx` (+6 -0) 📝 `frontend/src/pages/OnboardingFlow/Steps/LLMPreference/index.jsx` (+9 -0) 📝 `frontend/src/pages/WorkspaceSettings/AgentConfig/AgentLLMSelection/index.jsx` (+1 -0) 📝 `server/models/systemSettings.js` (+4 -0) ➕ `server/utils/AiProviders/deepseek/index.js` (+127 -0) 📝 `server/utils/AiProviders/modelMap.js` (+4 -0) 📝 `server/utils/agents/aibitat/index.js` (+2 -0) 📝 `server/utils/agents/aibitat/providers/ai-provider.js` (+8 -0) ➕ `server/utils/agents/aibitat/providers/deepseek.js` (+118 -0) 📝 `server/utils/agents/aibitat/providers/index.js` (+2 -0) 📝 `server/utils/agents/index.js` (+6 -0) 📝 `server/utils/helpers/customModels.js` (+28 -0) 📝 `server/utils/helpers/index.js` (+3 -0) 📝 `server/utils/helpers/updateENV.js` (+11 -0) </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 #2318 ### What is in this change? <!-- Describe the changes in this PR that are impactful to the repo. --> - Add support for DeepSeek LLM models - Add support for DeepSeek as agent 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:34:52 -05:00
yindo closed this issue 2026-02-22 18:34:52 -05:00
yindo changed title from [PR #2377] Support DeepSeek to [PR #2377] [MERGED] Support DeepSeek 2026-06-05 15:16:08 -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#3970