[PR #1093] [MERGED] Agent support for @agent default agent inside workspace chat #3579

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

📋 Pull Request Information

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

Base: masterHead: agent-support


📝 Commits (10+)

  • a7096dc WIP agent support
  • d1cf887 move agent folder
  • ad3df8f Merge branch 'master' of github.com:Mintplex-Labs/anything-llm into agent-support
  • 7543df5 wip frontend socket
  • 8e78fa9 checkpoint
  • befba43 fix schema
  • 1532521 Checkpoint for plugins and AgentHandler
  • 9c2f5ed refactor plugins and agent arch
  • bad766b agent error reporting and handling
  • b133302 add frontend elements for agents in prompt input

📊 Changes

74 files changed (+5107 additions, -52 deletions)

View changed files

📝 .dockerignore (+1 -0)
📝 .github/workflows/build-and-push-image.yaml (+1 -0)
📝 .vscode/settings.json (+4 -0)
📝 cloud-deployments/aws/cloudformation/aws_https_instructions.md (+18 -0)
📝 collector/index.js (+21 -1)
📝 collector/processLink/convert/generic.js (+27 -2)
📝 collector/processLink/index.js (+6 -0)
📝 docker/.env.example (+13 -0)
📝 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 (+13 -0)
frontend/src/pages/WorkspaceSettings/AgentConfig/AgentLLMSelection/AgentLLMItem/index.jsx (+151 -0)
frontend/src/pages/WorkspaceSettings/AgentConfig/AgentLLMSelection/index.jsx (+163 -0)
frontend/src/pages/WorkspaceSettings/AgentConfig/AgentModelSelection/index.jsx (+112 -0)

...and 54 more files

📄 Description

Pull Request Type

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

Relevant Issues

resolves #746
resolves #509
resolves #738

What is in this change?

v1 beta implementation of agents for @workspace with the following abilities:

  • Save any file to browser dynamically
  • Search web
  • Scrape websites in real time
  • Thought dumping to chat to observe work
  • Document summarization and reading

Additional Information

This is not intended to replace the traditional RAG chat method.
Custom agents or multi-agent support is not live
Can only invoke agent abilities with the @workspace in prompt.

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/1093 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 4/12/2024 **Status:** ✅ Merged **Merged:** 4/16/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `agent-support` --- ### 📝 Commits (10+) - [`a7096dc`](https://github.com/Mintplex-Labs/anything-llm/commit/a7096dcebf04b02fc491f499da7d055e418390bb) WIP agent support - [`d1cf887`](https://github.com/Mintplex-Labs/anything-llm/commit/d1cf8879550f0035d17a6794be09d0b5af71b22e) move agent folder - [`ad3df8f`](https://github.com/Mintplex-Labs/anything-llm/commit/ad3df8f9ee392eb28ad45ca0231caae6285496f6) Merge branch 'master' of github.com:Mintplex-Labs/anything-llm into agent-support - [`7543df5`](https://github.com/Mintplex-Labs/anything-llm/commit/7543df5ac06caaf8c471d39c47e5cb0b569883af) wip frontend socket - [`8e78fa9`](https://github.com/Mintplex-Labs/anything-llm/commit/8e78fa93fab95fed948d57da04b5b40c5022e657) checkpoint - [`befba43`](https://github.com/Mintplex-Labs/anything-llm/commit/befba43fbbdf1139ec0dd9664c57bea42ef37eda) fix schema - [`1532521`](https://github.com/Mintplex-Labs/anything-llm/commit/15325212c02f6053d628fe4121949d039b52c90c) Checkpoint for plugins and AgentHandler - [`9c2f5ed`](https://github.com/Mintplex-Labs/anything-llm/commit/9c2f5ed22a3e3407c1756236a7bb7d8b21c69351) refactor plugins and agent arch - [`bad766b`](https://github.com/Mintplex-Labs/anything-llm/commit/bad766b7921610404d59754ced9fb2ce0fe77045) agent error reporting and handling - [`b133302`](https://github.com/Mintplex-Labs/anything-llm/commit/b13330247707e89c647585602b923c5130263a64) add frontend elements for agents in prompt input ### 📊 Changes **74 files changed** (+5107 additions, -52 deletions) <details> <summary>View changed files</summary> 📝 `.dockerignore` (+1 -0) 📝 `.github/workflows/build-and-push-image.yaml` (+1 -0) 📝 `.vscode/settings.json` (+4 -0) 📝 `cloud-deployments/aws/cloudformation/aws_https_instructions.md` (+18 -0) 📝 `collector/index.js` (+21 -1) 📝 `collector/processLink/convert/generic.js` (+27 -2) 📝 `collector/processLink/index.js` (+6 -0) 📝 `docker/.env.example` (+13 -0) 📝 `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` (+13 -0) ➕ `frontend/src/pages/WorkspaceSettings/AgentConfig/AgentLLMSelection/AgentLLMItem/index.jsx` (+151 -0) ➕ `frontend/src/pages/WorkspaceSettings/AgentConfig/AgentLLMSelection/index.jsx` (+163 -0) ➕ `frontend/src/pages/WorkspaceSettings/AgentConfig/AgentModelSelection/index.jsx` (+112 -0) _...and 54 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" --> resolves #746 resolves #509 resolves #738 ### What is in this change? v1 beta implementation of agents for `@workspace` with the following abilities: - Save any file to browser dynamically - Search web - Scrape websites in real time - Thought dumping to chat to observe work - Document summarization and reading ### Additional Information This is not intended to replace the traditional RAG chat method. Custom agents or multi-agent support is not live Can only invoke agent abilities with the `@workspace` in prompt. ### Developer Validations <!-- All of the applicable items should be checked. --> - [x] I ran `yarn lint` from the root of the repo & committed changes - [x] Relevant documentation has been updated - [x] I have tested my code functionality - [x] 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:04 -05:00
yindo closed this issue 2026-02-22 18:34:04 -05:00
yindo changed title from [PR #1093] Agent support for `@agent` default agent inside workspace chat to [PR #1093] [MERGED] Agent support for `@agent` default agent inside workspace chat 2026-06-05 15:14:08 -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#3579