[PR #4435] [MERGED] Microsoft Foundry Local LLM provider & agent provider #4625

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/4435
Author: @shatfield4
Created: 9/24/2025
Status: Merged
Merged: 10/1/2025
Merged by: @timothycarambat

Base: masterHead: 4383-feat-microsoft-foundry-local-llm-integration


📝 Commits (4)

  • ed1b3b2 add microsoft foundry local llm and agent providers
  • e8b7484 Merge branch 'master' into 4383-feat-microsoft-foundry-local-llm-integration
  • 48b1ef2 minor change to fix early stop token + overloading of context window
  • 1f5be33 add back token preference since some models have very large windows and can crash a machine

📊 Changes

17 files changed (+626 additions, -3 deletions)

View changed files

📝 README.md (+2 -0)
📝 docker/.env.example (+5 -0)
frontend/src/components/LLMSelection/FoundryOptions/index.jsx (+110 -0)
frontend/src/media/llmprovider/foundry-local.png (+0 -0)
📝 frontend/src/pages/GeneralSettings/LLMPreference/index.jsx (+14 -0)
📝 frontend/src/pages/OnboardingFlow/Steps/DataHandling/index.jsx (+8 -0)
📝 server/.env.example (+5 -0)
📝 server/models/systemSettings.js (+5 -0)
server/utils/AiProviders/foundry/index.js (+288 -0)
📝 server/utils/agents/aibitat/index.js (+2 -0)
📝 server/utils/agents/aibitat/providers/ai-provider.js (+13 -3)
server/utils/agents/aibitat/providers/foundry.js (+103 -0)
📝 server/utils/agents/aibitat/providers/index.js (+2 -0)
📝 server/utils/agents/index.js (+7 -0)
📝 server/utils/helpers/customModels.js (+31 -0)
📝 server/utils/helpers/index.js (+8 -0)
📝 server/utils/helpers/updateENV.js (+23 -0)

📄 Description

Pull Request Type

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

Relevant Issues

resolves #4383

What is in this change?

  • Add support for Microsoft Foundry Local LLM and agent providers

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/4435 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 9/24/2025 **Status:** ✅ Merged **Merged:** 10/1/2025 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `4383-feat-microsoft-foundry-local-llm-integration` --- ### 📝 Commits (4) - [`ed1b3b2`](https://github.com/Mintplex-Labs/anything-llm/commit/ed1b3b203734d4f61718412e09cc0704a9c237db) add microsoft foundry local llm and agent providers - [`e8b7484`](https://github.com/Mintplex-Labs/anything-llm/commit/e8b74846452dba5c51064ded996fc18ad42e1a86) Merge branch 'master' into 4383-feat-microsoft-foundry-local-llm-integration - [`48b1ef2`](https://github.com/Mintplex-Labs/anything-llm/commit/48b1ef21d5fa3a81361431f6486655141867236c) minor change to fix early stop token + overloading of context window - [`1f5be33`](https://github.com/Mintplex-Labs/anything-llm/commit/1f5be33d2ddc190ad266dc90127580ce8cfc9b35) add back token preference since some models have very large windows and can crash a machine ### 📊 Changes **17 files changed** (+626 additions, -3 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+2 -0) 📝 `docker/.env.example` (+5 -0) ➕ `frontend/src/components/LLMSelection/FoundryOptions/index.jsx` (+110 -0) ➕ `frontend/src/media/llmprovider/foundry-local.png` (+0 -0) 📝 `frontend/src/pages/GeneralSettings/LLMPreference/index.jsx` (+14 -0) 📝 `frontend/src/pages/OnboardingFlow/Steps/DataHandling/index.jsx` (+8 -0) 📝 `server/.env.example` (+5 -0) 📝 `server/models/systemSettings.js` (+5 -0) ➕ `server/utils/AiProviders/foundry/index.js` (+288 -0) 📝 `server/utils/agents/aibitat/index.js` (+2 -0) 📝 `server/utils/agents/aibitat/providers/ai-provider.js` (+13 -3) ➕ `server/utils/agents/aibitat/providers/foundry.js` (+103 -0) 📝 `server/utils/agents/aibitat/providers/index.js` (+2 -0) 📝 `server/utils/agents/index.js` (+7 -0) 📝 `server/utils/helpers/customModels.js` (+31 -0) 📝 `server/utils/helpers/index.js` (+8 -0) 📝 `server/utils/helpers/updateENV.js` (+23 -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 #4383 ### What is in this change? <!-- Describe the changes in this PR that are impactful to the repo. --> - Add support for Microsoft Foundry Local LLM and agent providers ### 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:36:12 -05:00
yindo closed this issue 2026-02-22 18:36:12 -05:00
yindo changed title from [PR #4435] Microsoft Foundry Local LLM provider & agent provider to [PR #4435] [MERGED] Microsoft Foundry Local LLM provider & agent provider 2026-06-05 15:19:30 -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#4625