[PR #1246] [MERGED] Add LMStudio agent support (generic) support #3626

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/1246
Author: @timothycarambat
Created: 5/1/2024
Status: Merged
Merged: 5/7/2024
Merged by: @timothycarambat

Base: masterHead: 1241-lm-studio-agents


📝 Commits (4)

  • bd8043c add LMStudio agent support (generic) support
  • 0976266 add comments
  • 6dfe161 Merge branch 'master' of github.com:Mintplex-Labs/anything-llm into 1241-lm-studio-agents
  • 7238f1b enable few-shot prompting per function for OSS models

📊 Changes

19 files changed (+472 additions, -12 deletions)

View changed files

📝 .vscode/settings.json (+1 -0)
📝 frontend/src/pages/WorkspaceSettings/AgentConfig/AgentLLMSelection/index.jsx (+16 -2)
📝 server/endpoints/agentWebsocket.js (+1 -1)
📝 server/package.json (+1 -0)
📝 server/utils/agents/aibitat/index.js (+14 -0)
📝 server/utils/agents/aibitat/plugins/memory.js (+31 -1)
📝 server/utils/agents/aibitat/plugins/save-file-browser.js (+26 -0)
📝 server/utils/agents/aibitat/plugins/summarize.js (+20 -0)
📝 server/utils/agents/aibitat/plugins/web-browsing.js (+15 -1)
📝 server/utils/agents/aibitat/plugins/web-scraping.js (+13 -2)
📝 server/utils/agents/aibitat/providers/ai-provider.js (+19 -1)
server/utils/agents/aibitat/providers/helpers/classes.js (+16 -0)
server/utils/agents/aibitat/providers/helpers/untooled.js (+168 -0)
📝 server/utils/agents/aibitat/providers/index.js (+2 -0)
server/utils/agents/aibitat/providers/lmstudio.js (+90 -0)
📝 server/utils/agents/defaults.js (+3 -2)
📝 server/utils/agents/index.js (+20 -2)
📝 server/utils/http/index.js (+11 -0)
📝 server/yarn.lock (+5 -0)

📄 Description

"works" with non-tool callable LLMs, highly dependent on system specs and model. Will need a warning.

Pull Request Type

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

Relevant Issues

resolves #1241

What is in this change?

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/1246 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 5/1/2024 **Status:** ✅ Merged **Merged:** 5/7/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `1241-lm-studio-agents` --- ### 📝 Commits (4) - [`bd8043c`](https://github.com/Mintplex-Labs/anything-llm/commit/bd8043cf827c76f015881035d85098eae41738ff) add LMStudio agent support (generic) support - [`0976266`](https://github.com/Mintplex-Labs/anything-llm/commit/0976266b428889e03eff9af83619a287180563b3) add comments - [`6dfe161`](https://github.com/Mintplex-Labs/anything-llm/commit/6dfe1616c947b2a433bd20790c495cf01f60594a) Merge branch 'master' of github.com:Mintplex-Labs/anything-llm into 1241-lm-studio-agents - [`7238f1b`](https://github.com/Mintplex-Labs/anything-llm/commit/7238f1b07f5ca1ace3aca155ca0eac0298257857) enable few-shot prompting per function for OSS models ### 📊 Changes **19 files changed** (+472 additions, -12 deletions) <details> <summary>View changed files</summary> 📝 `.vscode/settings.json` (+1 -0) 📝 `frontend/src/pages/WorkspaceSettings/AgentConfig/AgentLLMSelection/index.jsx` (+16 -2) 📝 `server/endpoints/agentWebsocket.js` (+1 -1) 📝 `server/package.json` (+1 -0) 📝 `server/utils/agents/aibitat/index.js` (+14 -0) 📝 `server/utils/agents/aibitat/plugins/memory.js` (+31 -1) 📝 `server/utils/agents/aibitat/plugins/save-file-browser.js` (+26 -0) 📝 `server/utils/agents/aibitat/plugins/summarize.js` (+20 -0) 📝 `server/utils/agents/aibitat/plugins/web-browsing.js` (+15 -1) 📝 `server/utils/agents/aibitat/plugins/web-scraping.js` (+13 -2) 📝 `server/utils/agents/aibitat/providers/ai-provider.js` (+19 -1) ➕ `server/utils/agents/aibitat/providers/helpers/classes.js` (+16 -0) ➕ `server/utils/agents/aibitat/providers/helpers/untooled.js` (+168 -0) 📝 `server/utils/agents/aibitat/providers/index.js` (+2 -0) ➕ `server/utils/agents/aibitat/providers/lmstudio.js` (+90 -0) 📝 `server/utils/agents/defaults.js` (+3 -2) 📝 `server/utils/agents/index.js` (+20 -2) 📝 `server/utils/http/index.js` (+11 -0) 📝 `server/yarn.lock` (+5 -0) </details> ### 📄 Description "works" with non-tool callable LLMs, highly dependent on system specs and model. Will need a warning. ### 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 #1241 ### What is in this change? <!-- 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:34:10 -05:00
yindo closed this issue 2026-02-22 18:34:10 -05:00
yindo changed title from [PR #1246] Add LMStudio agent support (generic) support to [PR #1246] [MERGED] Add LMStudio agent support (generic) support 2026-06-05 15:14: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#3626