[PR #411] [MERGED] Add built-in embedding engine into AnythingLLM #3342

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/411
Author: @timothycarambat
Created: 12/5/2023
Status: Merged
Merged: 12/6/2023
Merged by: @timothycarambat

Base: masterHead: built-in-embedder


📝 Commits (9)

  • 6c63918 Implement use of native embedder (all-Mini-L6-v2)
  • f038a65 Add native embedder as an available embedder selection
  • ab451f8 wrap model loader in try/catch
  • 48680a6 Merge branch 'master' of github.com:Mintplex-Labs/anything-llm into built-in-embedder
  • 0618196 print progress on download
  • f7bc1fc Update to progress output for embedder
  • e3bfaf9 move embedder selection options to component
  • 5b62ff9 forgot import
  • af22665 add Data privacy alert updates for local embedder

📊 Changes

14 files changed (+517 additions, -27 deletions)

View changed files

frontend/src/components/EmbeddingSelection/NativeEmbeddingOptions/index.jsx (+10 -0)
frontend/src/media/logo/anything-llm-icon.png (+0 -0)
📝 frontend/src/pages/GeneralSettings/EmbeddingPreference/index.jsx (+11 -0)
📝 frontend/src/pages/OnboardingFlow/OnboardingModal/Steps/DataHandling/index.jsx (+18 -14)
📝 frontend/src/pages/OnboardingFlow/OnboardingModal/Steps/EmbeddingSelection/index.jsx (+13 -2)
📝 server/models/systemSettings.js (+1 -1)
📝 server/package.json (+1 -0)
server/storage/models/.gitignore (+2 -0)
server/storage/models/README.md (+13 -0)
server/utils/EmbeddingEngines/native/index.js (+80 -0)
📝 server/utils/helpers/index.js (+3 -0)
📝 server/utils/helpers/updateENV.js (+1 -1)
📝 server/utils/prisma/index.js (+1 -4)
📝 server/yarn.lock (+363 -5)

📄 Description

No description provided


🔄 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/411 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 12/5/2023 **Status:** ✅ Merged **Merged:** 12/6/2023 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `built-in-embedder` --- ### 📝 Commits (9) - [`6c63918`](https://github.com/Mintplex-Labs/anything-llm/commit/6c63918b87ee587ec1c74d62c8b17c9e12507311) Implement use of native embedder (all-Mini-L6-v2) - [`f038a65`](https://github.com/Mintplex-Labs/anything-llm/commit/f038a65ff5b50a8137b27a8fa756a1ff75017c42) Add native embedder as an available embedder selection - [`ab451f8`](https://github.com/Mintplex-Labs/anything-llm/commit/ab451f893beb4552c89ccc7aa21daee8fb80c41f) wrap model loader in try/catch - [`48680a6`](https://github.com/Mintplex-Labs/anything-llm/commit/48680a6d9c71f61b2a021d7319e16c785dedc7ac) Merge branch 'master' of github.com:Mintplex-Labs/anything-llm into built-in-embedder - [`0618196`](https://github.com/Mintplex-Labs/anything-llm/commit/061819691f80f05c9b38e498a091747b13105283) print progress on download - [`f7bc1fc`](https://github.com/Mintplex-Labs/anything-llm/commit/f7bc1fc35c545452ad06c98a0cc2f2cb92adfe92) Update to progress output for embedder - [`e3bfaf9`](https://github.com/Mintplex-Labs/anything-llm/commit/e3bfaf9e58329b1fc05f78408d035e02665dea38) move embedder selection options to component - [`5b62ff9`](https://github.com/Mintplex-Labs/anything-llm/commit/5b62ff9550fdee4e3122a6832a30388eee724932) forgot import - [`af22665`](https://github.com/Mintplex-Labs/anything-llm/commit/af22665219f7e6c2b50c24927e0f8a7daf3b3b33) add Data privacy alert updates for local embedder ### 📊 Changes **14 files changed** (+517 additions, -27 deletions) <details> <summary>View changed files</summary> ➕ `frontend/src/components/EmbeddingSelection/NativeEmbeddingOptions/index.jsx` (+10 -0) ➕ `frontend/src/media/logo/anything-llm-icon.png` (+0 -0) 📝 `frontend/src/pages/GeneralSettings/EmbeddingPreference/index.jsx` (+11 -0) 📝 `frontend/src/pages/OnboardingFlow/OnboardingModal/Steps/DataHandling/index.jsx` (+18 -14) 📝 `frontend/src/pages/OnboardingFlow/OnboardingModal/Steps/EmbeddingSelection/index.jsx` (+13 -2) 📝 `server/models/systemSettings.js` (+1 -1) 📝 `server/package.json` (+1 -0) ➕ `server/storage/models/.gitignore` (+2 -0) ➕ `server/storage/models/README.md` (+13 -0) ➕ `server/utils/EmbeddingEngines/native/index.js` (+80 -0) 📝 `server/utils/helpers/index.js` (+3 -0) 📝 `server/utils/helpers/updateENV.js` (+1 -1) 📝 `server/utils/prisma/index.js` (+1 -4) 📝 `server/yarn.lock` (+363 -5) </details> ### 📄 Description _No description provided_ --- <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:35 -05:00
yindo closed this issue 2026-02-22 18:33:35 -05:00
yindo changed title from [PR #411] Add built-in embedding engine into AnythingLLM to [PR #411] [MERGED] Add built-in embedding engine into AnythingLLM 2026-06-05 15:12:55 -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#3342