[PR #5077] [MERGED] Lemonade integration #5291

Closed
opened 2026-06-05 15:20:52 -04:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/5077
Author: @timothycarambat
Created: 2/26/2026
Status: Merged
Merged: 2/27/2026
Merged by: @timothycarambat

Base: masterHead: lemonade-integration


📝 Commits (9)

  • 8e4fb72 lemonade integration
  • adaf20f lemonade embedder
  • 7097491 Merge branch 'master' into lemonade-integration
  • 9197d3d log
  • bfbbfd4 load model
  • 1a0296e Merge branch 'master' into lemonade-integration
  • ba05dc1 readme updates
  • 6ab2679 Merge branch 'lemonade-integration' of github.com:Mintplex-Labs/anything-llm into lemonade-integration
  • f019a76 update embedder privacy entry

📊 Changes

33 files changed (+1728 additions, -27 deletions)

View changed files

📝 README.md (+1 -0)
📝 docker/.env.example (+5 -0)
frontend/src/components/EmbeddingSelection/LemonadeOptions/index.jsx (+227 -0)
frontend/src/components/LLMSelection/LemonadeOptions/index.jsx (+409 -0)
📝 frontend/src/components/ProviderPrivacy/constants.js (+15 -0)
📝 frontend/src/hooks/useProviderEndpointAutoDiscovery.js (+0 -9)
frontend/src/media/llmprovider/lemonade.png (+0 -0)
frontend/src/models/utils/lemonadeUtils.js (+115 -0)
📝 frontend/src/pages/GeneralSettings/EmbeddingPreference/index.jsx (+11 -1)
📝 frontend/src/pages/GeneralSettings/LLMPreference/index.jsx (+11 -0)
📝 frontend/src/pages/OnboardingFlow/Steps/LLMPreference/index.jsx (+10 -0)
📝 frontend/src/pages/WorkspaceSettings/AgentConfig/AgentLLMSelection/index.jsx (+1 -0)
📝 frontend/src/utils/constants.js (+7 -0)
📝 locales/README.fa-IR.md (+1 -0)
📝 locales/README.ja-JP.md (+1 -0)
📝 locales/README.tr-TR.md (+1 -0)
📝 locales/README.zh-CN.md (+1 -0)
📝 server/.env.example (+5 -0)
📝 server/endpoints/utils.js (+6 -0)
📝 server/endpoints/utils/dockerModelRunnerUtils.js (+1 -17)

...and 13 more files

📄 Description

Pull Request Type

  • feat (New feature)
  • 🐛 fix (Bug fix)
  • ♻️ refactor (Code refactoring without changing behavior)
  • 💄 style (UI style changes)
  • 🔨 chore (Build, CI, maintenance)
  • 📝 docs (Documentation updates)

Relevant Issues

resolves #

Description

Supports:

  • Model loading with context window
  • Model Download/Uninstall management within AnythingLLM
  • Agent streaming, native tool calling
  • Automatic model Capability detection
  • LLM and Embedder support

Visuals (if applicable)

Additional Information

Developer Validations

  • I ran yarn lint from the root of the repo & committed changes
  • Relevant documentation has been updated (if applicable)
  • 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/5077 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 2/26/2026 **Status:** ✅ Merged **Merged:** 2/27/2026 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `lemonade-integration` --- ### 📝 Commits (9) - [`8e4fb72`](https://github.com/Mintplex-Labs/anything-llm/commit/8e4fb721d1b879f134b4608ecbb96203095072d1) lemonade integration - [`adaf20f`](https://github.com/Mintplex-Labs/anything-llm/commit/adaf20f3983a49ff7865b5abd2af48e5312547fe) lemonade embedder - [`7097491`](https://github.com/Mintplex-Labs/anything-llm/commit/70974917a82a130c10ac83eacfc788fe49a85be0) Merge branch 'master' into lemonade-integration - [`9197d3d`](https://github.com/Mintplex-Labs/anything-llm/commit/9197d3db21eeceda0aefc52d6bdae4bcde1d793e) log - [`bfbbfd4`](https://github.com/Mintplex-Labs/anything-llm/commit/bfbbfd4fd072651a1e6c1b599711a93d295ebe45) load model - [`1a0296e`](https://github.com/Mintplex-Labs/anything-llm/commit/1a0296e37612eb3f4a7341045f607ca0eb68d640) Merge branch 'master' into lemonade-integration - [`ba05dc1`](https://github.com/Mintplex-Labs/anything-llm/commit/ba05dc15256bab5fa8d637ae8d7931461cda491a) readme updates - [`6ab2679`](https://github.com/Mintplex-Labs/anything-llm/commit/6ab26791495ac4defb6fd4fb944fac20ee3920dc) Merge branch 'lemonade-integration' of github.com:Mintplex-Labs/anything-llm into lemonade-integration - [`f019a76`](https://github.com/Mintplex-Labs/anything-llm/commit/f019a764a767b49258bea9204b7d34dfb63f8913) update embedder privacy entry ### 📊 Changes **33 files changed** (+1728 additions, -27 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+1 -0) 📝 `docker/.env.example` (+5 -0) ➕ `frontend/src/components/EmbeddingSelection/LemonadeOptions/index.jsx` (+227 -0) ➕ `frontend/src/components/LLMSelection/LemonadeOptions/index.jsx` (+409 -0) 📝 `frontend/src/components/ProviderPrivacy/constants.js` (+15 -0) 📝 `frontend/src/hooks/useProviderEndpointAutoDiscovery.js` (+0 -9) ➕ `frontend/src/media/llmprovider/lemonade.png` (+0 -0) ➕ `frontend/src/models/utils/lemonadeUtils.js` (+115 -0) 📝 `frontend/src/pages/GeneralSettings/EmbeddingPreference/index.jsx` (+11 -1) 📝 `frontend/src/pages/GeneralSettings/LLMPreference/index.jsx` (+11 -0) 📝 `frontend/src/pages/OnboardingFlow/Steps/LLMPreference/index.jsx` (+10 -0) 📝 `frontend/src/pages/WorkspaceSettings/AgentConfig/AgentLLMSelection/index.jsx` (+1 -0) 📝 `frontend/src/utils/constants.js` (+7 -0) 📝 `locales/README.fa-IR.md` (+1 -0) 📝 `locales/README.ja-JP.md` (+1 -0) 📝 `locales/README.tr-TR.md` (+1 -0) 📝 `locales/README.zh-CN.md` (+1 -0) 📝 `server/.env.example` (+5 -0) 📝 `server/endpoints/utils.js` (+6 -0) 📝 `server/endpoints/utils/dockerModelRunnerUtils.js` (+1 -17) _...and 13 more files_ </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [x] ✨ feat (New feature) - [ ] 🐛 fix (Bug fix) - [ ] ♻️ refactor (Code refactoring without changing behavior) - [ ] 💄 style (UI style changes) - [ ] 🔨 chore (Build, CI, maintenance) - [ ] 📝 docs (Documentation updates) ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves # ### Description Supports: - Model loading with context window - Model Download/Uninstall management within AnythingLLM - Agent streaming, native tool calling - Automatic model Capability detection - LLM and Embedder support <!-- Describe the changes in this PR that are impactful to the repo. What problem does it solve? --> ### Visuals (if applicable) <!-- Add screenshots or screen recordings to demonstrate the changes, especially for UI updates. --> ### 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. --> - [ ] I ran `yarn lint` from the root of the repo & committed changes - [ ] Relevant documentation has been updated (if applicable) - [ ] I have tested my code functionality - [ ] 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-06-05 15:20:52 -04:00
yindo closed this issue 2026-06-05 15:20:52 -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#5291