[PR #610] [MERGED] add support for mistral api #3423

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/610
Author: @shatfield4
Created: 1/16/2024
Status: Merged
Merged: 1/17/2024
Merged by: @timothycarambat

Base: masterHead: 530-feat-support-mistral-api-for-llm-selection


📝 Commits (4)

  • a1f8380 add support for mistral api
  • a18ba8b update docs to show support for Mistral
  • 0692829 fix merge
  • 0991b50 add default temp to all providers, suggest different results per provider

📊 Changes

25 files changed (+412 additions, -22 deletions)

View changed files

📝 README.md (+1 -0)
📝 docker/.env.example (+4 -0)
frontend/src/components/LLMSelection/MistralOptions/index.jsx (+103 -0)
📝 frontend/src/components/Modals/MangeWorkspace/Settings/index.jsx (+14 -4)
frontend/src/media/llmprovider/mistral.jpeg (+0 -0)
📝 frontend/src/pages/GeneralSettings/LLMPreference/index.jsx (+10 -1)
📝 frontend/src/pages/OnboardingFlow/Steps/DataHandling/index.jsx (+8 -0)
📝 frontend/src/pages/OnboardingFlow/Steps/LLMPreference/index.jsx (+9 -0)
📝 server/.env.example (+4 -0)
📝 server/models/systemSettings.js (+12 -0)
📝 server/utils/AiProviders/anthropic/index.js (+1 -0)
📝 server/utils/AiProviders/azureOpenAi/index.js (+3 -2)
📝 server/utils/AiProviders/gemini/index.js (+1 -0)
📝 server/utils/AiProviders/lmStudio/index.js (+3 -2)
📝 server/utils/AiProviders/localAi/index.js (+3 -2)
server/utils/AiProviders/mistral/index.js (+184 -0)
📝 server/utils/AiProviders/native/index.js (+3 -2)
📝 server/utils/AiProviders/ollama/index.js (+3 -2)
📝 server/utils/AiProviders/openAi/index.js (+3 -2)
📝 server/utils/AiProviders/togetherAi/index.js (+3 -2)

...and 5 more files

📄 Description

Pull Request Type

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

Relevant Issues

resolves #530

What is in this change?

Describe the changes in this PR that are impactful to the repo.

  • Add support for Mistral API as LLM provider

Additional Information

Add any other context about the Pull Request here that was not captured above.

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/610 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 1/16/2024 **Status:** ✅ Merged **Merged:** 1/17/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `530-feat-support-mistral-api-for-llm-selection` --- ### 📝 Commits (4) - [`a1f8380`](https://github.com/Mintplex-Labs/anything-llm/commit/a1f83802e0036772a67b2647766de2c1d77a3beb) add support for mistral api - [`a18ba8b`](https://github.com/Mintplex-Labs/anything-llm/commit/a18ba8b9fb46fc87d3f683798a3e4584d91058db) update docs to show support for Mistral - [`0692829`](https://github.com/Mintplex-Labs/anything-llm/commit/0692829b8cecfc3131513d63c0b57c4f2f39bd4c) fix merge - [`0991b50`](https://github.com/Mintplex-Labs/anything-llm/commit/0991b50cbe60c45a568a4d2ca53a3f27af5a6951) add default temp to all providers, suggest different results per provider ### 📊 Changes **25 files changed** (+412 additions, -22 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+1 -0) 📝 `docker/.env.example` (+4 -0) ➕ `frontend/src/components/LLMSelection/MistralOptions/index.jsx` (+103 -0) 📝 `frontend/src/components/Modals/MangeWorkspace/Settings/index.jsx` (+14 -4) ➕ `frontend/src/media/llmprovider/mistral.jpeg` (+0 -0) 📝 `frontend/src/pages/GeneralSettings/LLMPreference/index.jsx` (+10 -1) 📝 `frontend/src/pages/OnboardingFlow/Steps/DataHandling/index.jsx` (+8 -0) 📝 `frontend/src/pages/OnboardingFlow/Steps/LLMPreference/index.jsx` (+9 -0) 📝 `server/.env.example` (+4 -0) 📝 `server/models/systemSettings.js` (+12 -0) 📝 `server/utils/AiProviders/anthropic/index.js` (+1 -0) 📝 `server/utils/AiProviders/azureOpenAi/index.js` (+3 -2) 📝 `server/utils/AiProviders/gemini/index.js` (+1 -0) 📝 `server/utils/AiProviders/lmStudio/index.js` (+3 -2) 📝 `server/utils/AiProviders/localAi/index.js` (+3 -2) ➕ `server/utils/AiProviders/mistral/index.js` (+184 -0) 📝 `server/utils/AiProviders/native/index.js` (+3 -2) 📝 `server/utils/AiProviders/ollama/index.js` (+3 -2) 📝 `server/utils/AiProviders/openAi/index.js` (+3 -2) 📝 `server/utils/AiProviders/togetherAi/index.js` (+3 -2) _...and 5 more files_ </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 #530 ### What is in this change? Describe the changes in this PR that are impactful to the repo. - Add support for Mistral API as 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:33:45 -05:00
yindo closed this issue 2026-02-22 18:33:45 -05:00
yindo changed title from [PR #610] add support for mistral api to [PR #610] [MERGED] add support for mistral api 2026-06-05 15:13:20 -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#3423