[PR #1110] [MERGED] Desktop agent support #3583

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/1110
Author: @timothycarambat
Created: 4/16/2024
Status: Merged
Merged: 4/16/2024
Merged by: @timothycarambat

Base: desktop-1.5.0Head: desktop-agent-support


📝 Commits (10+)

  • 0081192 [FEAT] Add ability to override chat user icon and name in embedded chat widget (#1067)
  • 7407406 [FEAT] Survey form revisions (#1069)
  • d54e1c1 expand support for non-US azure deployments (#1080)
  • b194a9e patch rerender
  • 102689a Merge branch 'master' of github.com:Mintplex-Labs/anything-llm
  • a8e731f Add ability for owner to reset just the workspace vector DB (#1094)
  • 2c6135a patch file types as plaintext (#1095)
  • af84b01 [FIX] GitHub repo with periods in link fix (#1084)
  • 6fde557 remove unneeded answerKey for Anthropic (#1100)
  • 8306098 Bump all static model providers (#1101)

📊 Changes

91 files changed (+5817 additions, -464 deletions)

View changed files

📝 .dockerignore (+1 -0)
📝 .vscode/settings.json (+4 -0)
📝 collector/index.js (+21 -1)
📝 collector/processLink/convert/generic.js (+27 -2)
📝 collector/processLink/index.js (+6 -0)
📝 collector/utils/extensions/GithubRepo/RepoLoader/index.js (+3 -1)
📝 collector/utils/files/mime.js (+15 -1)
📝 frontend/package.json (+1 -1)
📝 frontend/public/embed/anythingllm-chat-widget.min.js (+2 -2)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/index.jsx (+20 -0)
frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/AgentMenu/index.jsx (+189 -0)
frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SlashCommands/endAgentSession.jsx (+23 -0)
📝 frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SlashCommands/index.jsx (+10 -19)
frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SlashCommands/reset.jsx (+23 -0)
📝 frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/StopGenerationButton/index.jsx (+1 -1)
📝 frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/index.jsx (+23 -0)
📝 frontend/src/components/WorkspaceChat/ChatContainer/index.jsx (+97 -3)
📝 frontend/src/index.css (+17 -0)
📝 frontend/src/models/admin.js (+1 -1)
📝 frontend/src/models/workspace.js (+11 -3)

...and 71 more files

📄 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/1110 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 4/16/2024 **Status:** ✅ Merged **Merged:** 4/16/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `desktop-1.5.0` ← **Head:** `desktop-agent-support` --- ### 📝 Commits (10+) - [`0081192`](https://github.com/Mintplex-Labs/anything-llm/commit/0081192fc96c73aeb3d3628d889a79499ec0bdb1) [FEAT] Add ability to override chat user icon and name in embedded chat widget (#1067) - [`7407406`](https://github.com/Mintplex-Labs/anything-llm/commit/74074066437caf320b0a8f3cc6fc335a2dfca91f) [FEAT] Survey form revisions (#1069) - [`d54e1c1`](https://github.com/Mintplex-Labs/anything-llm/commit/d54e1c1f2dae98618ea0f9def0356ec764a46eee) expand support for non-US azure deployments (#1080) - [`b194a9e`](https://github.com/Mintplex-Labs/anything-llm/commit/b194a9e8bd2a5fb25f45e97cdea19109741ab9ae) patch rerender - [`102689a`](https://github.com/Mintplex-Labs/anything-llm/commit/102689a77abb3271f6362855c4d90607c76f29b6) Merge branch 'master' of github.com:Mintplex-Labs/anything-llm - [`a8e731f`](https://github.com/Mintplex-Labs/anything-llm/commit/a8e731f548fc7e2174ac42dfbffab179e05832e8) Add ability for owner to reset just the workspace vector DB (#1094) - [`2c6135a`](https://github.com/Mintplex-Labs/anything-llm/commit/2c6135aa54ad0dba04d0ba9642b5e0d8a57087ec) patch file types as plaintext (#1095) - [`af84b01`](https://github.com/Mintplex-Labs/anything-llm/commit/af84b0148235aa67db252e02cff32163537b184e) [FIX] GitHub repo with periods in link fix (#1084) - [`6fde557`](https://github.com/Mintplex-Labs/anything-llm/commit/6fde5570b356036ab9150a00da52ebc072451d63) remove unneeded answerKey for Anthropic (#1100) - [`8306098`](https://github.com/Mintplex-Labs/anything-llm/commit/8306098b08397cba101fbf18c5a90f28f19fa267) Bump all static model providers (#1101) ### 📊 Changes **91 files changed** (+5817 additions, -464 deletions) <details> <summary>View changed files</summary> 📝 `.dockerignore` (+1 -0) 📝 `.vscode/settings.json` (+4 -0) 📝 `collector/index.js` (+21 -1) 📝 `collector/processLink/convert/generic.js` (+27 -2) 📝 `collector/processLink/index.js` (+6 -0) 📝 `collector/utils/extensions/GithubRepo/RepoLoader/index.js` (+3 -1) 📝 `collector/utils/files/mime.js` (+15 -1) 📝 `frontend/package.json` (+1 -1) 📝 `frontend/public/embed/anythingllm-chat-widget.min.js` (+2 -2) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/index.jsx` (+20 -0) ➕ `frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/AgentMenu/index.jsx` (+189 -0) ➕ `frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SlashCommands/endAgentSession.jsx` (+23 -0) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SlashCommands/index.jsx` (+10 -19) ➕ `frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SlashCommands/reset.jsx` (+23 -0) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/StopGenerationButton/index.jsx` (+1 -1) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/index.jsx` (+23 -0) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/index.jsx` (+97 -3) 📝 `frontend/src/index.css` (+17 -0) 📝 `frontend/src/models/admin.js` (+1 -1) 📝 `frontend/src/models/workspace.js` (+11 -3) _...and 71 more files_ </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:34:05 -05:00
yindo closed this issue 2026-02-22 18:34:05 -05:00
yindo changed title from [PR #1110] Desktop agent support to [PR #1110] [MERGED] Desktop agent support 2026-06-05 15:14:11 -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#3583