[PR #4863] [MERGED] Improved DMR support #4792

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/4863
Author: @timothycarambat
Created: 1/14/2026
Status: Merged
Merged: 1/14/2026
Merged by: @timothycarambat

Base: masterHead: 4391-dmr-support


📝 Commits (4)

📊 Changes

37 files changed (+1463 additions, -10 deletions)

View changed files

📝 .github/workflows/dev-build.yaml (+1 -1)
📝 README.md (+1 -0)
📝 docker/.env.example (+5 -0)
📝 frontend/src/components/LLMSelection/DPAISOptions/index.jsx (+1 -1)
frontend/src/components/LLMSelection/DockerModelRunnerOptions/ModelTable/index.jsx (+314 -0)
frontend/src/components/LLMSelection/DockerModelRunnerOptions/index.jsx (+426 -0)
📝 frontend/src/components/LLMSelection/FoundryOptions/index.jsx (+1 -1)
📝 frontend/src/components/LLMSelection/GenericOpenAiOptions/index.jsx (+1 -1)
📝 frontend/src/components/LLMSelection/GiteeAIOptions/index.jsx (+1 -1)
📝 frontend/src/components/LLMSelection/KoboldCPPOptions/index.jsx (+1 -1)
📝 frontend/src/components/LLMSelection/LiteLLMOptions/index.jsx (+1 -1)
📝 frontend/src/components/LLMSelection/LocalAiOptions/index.jsx (+1 -1)
📝 frontend/src/components/LLMSelection/TextGenWebUIOptions/index.jsx (+1 -1)
📝 frontend/src/components/ProviderPrivacy/constants.js (+8 -0)
📝 frontend/src/hooks/useGetProvidersModels.js (+1 -0)
frontend/src/media/llmprovider/docker-model-runner.png (+0 -0)
📝 frontend/src/pages/GeneralSettings/LLMPreference/index.jsx (+30 -0)
📝 frontend/src/pages/OnboardingFlow/Steps/LLMPreference/index.jsx (+9 -0)
📝 frontend/src/pages/WorkspaceSettings/AgentConfig/AgentLLMSelection/index.jsx (+2 -0)
📝 frontend/src/utils/constants.js (+8 -0)

...and 17 more files

📄 Description

Pull Request Type

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

Relevant Issues

closes #4477
resolves #4391

What is in this change?

  • Autodetect models installed
  • Grab all models from hub.docker to show available
  • UI to handle render,search, install, and management of models
  • Support functionality for chat, stream, and agentic calls
  • Cache model listing for 24 hours
  • Works with Docker Desktop for streamlined UI

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/4863 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 1/14/2026 **Status:** ✅ Merged **Merged:** 1/14/2026 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `4391-dmr-support` --- ### 📝 Commits (4) - [`4b53a0b`](https://github.com/Mintplex-Labs/anything-llm/commit/4b53a0b17c97b6c7417a5c2966169802b2ea4f38) Improve DMR support - [`68a58a3`](https://github.com/Mintplex-Labs/anything-llm/commit/68a58a3f8ab076b9404b430f6eb01ce3ea4796b0) forgot files - [`e988f54`](https://github.com/Mintplex-Labs/anything-llm/commit/e988f5482e60b018d844af9c64fee0effef46719) fix loader circle being too large - [`be78256`](https://github.com/Mintplex-Labs/anything-llm/commit/be78256524e0dcfbcf8f5f7fc55675932c0f8481) adjust imports ### 📊 Changes **37 files changed** (+1463 additions, -10 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/dev-build.yaml` (+1 -1) 📝 `README.md` (+1 -0) 📝 `docker/.env.example` (+5 -0) 📝 `frontend/src/components/LLMSelection/DPAISOptions/index.jsx` (+1 -1) ➕ `frontend/src/components/LLMSelection/DockerModelRunnerOptions/ModelTable/index.jsx` (+314 -0) ➕ `frontend/src/components/LLMSelection/DockerModelRunnerOptions/index.jsx` (+426 -0) 📝 `frontend/src/components/LLMSelection/FoundryOptions/index.jsx` (+1 -1) 📝 `frontend/src/components/LLMSelection/GenericOpenAiOptions/index.jsx` (+1 -1) 📝 `frontend/src/components/LLMSelection/GiteeAIOptions/index.jsx` (+1 -1) 📝 `frontend/src/components/LLMSelection/KoboldCPPOptions/index.jsx` (+1 -1) 📝 `frontend/src/components/LLMSelection/LiteLLMOptions/index.jsx` (+1 -1) 📝 `frontend/src/components/LLMSelection/LocalAiOptions/index.jsx` (+1 -1) 📝 `frontend/src/components/LLMSelection/TextGenWebUIOptions/index.jsx` (+1 -1) 📝 `frontend/src/components/ProviderPrivacy/constants.js` (+8 -0) 📝 `frontend/src/hooks/useGetProvidersModels.js` (+1 -0) ➕ `frontend/src/media/llmprovider/docker-model-runner.png` (+0 -0) 📝 `frontend/src/pages/GeneralSettings/LLMPreference/index.jsx` (+30 -0) 📝 `frontend/src/pages/OnboardingFlow/Steps/LLMPreference/index.jsx` (+9 -0) 📝 `frontend/src/pages/WorkspaceSettings/AgentConfig/AgentLLMSelection/index.jsx` (+2 -0) 📝 `frontend/src/utils/constants.js` (+8 -0) _...and 17 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" --> closes #4477 resolves #4391 ### What is in this change? - Autodetect models installed - Grab all models from hub.docker to show available - UI to handle render,search, install, and management of models - Support functionality for chat, stream, and agentic calls - Cache model listing for 24 hours - Works with Docker Desktop for streamlined UI <!-- Describe the changes in this PR that are impactful to the repo. --> ### 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 - [ ] 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-02-22 18:36:32 -05:00
yindo closed this issue 2026-02-22 18:36:32 -05:00
yindo changed title from [PR #4863] Improved DMR support to [PR #4863] [MERGED] Improved DMR support 2026-06-05 15:20:24 -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#4792