[PR #3483] [CLOSED] Added chat mode to only use agent #4293

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/3483
Author: @MrMarans
Created: 3/17/2025
Status: Closed

Base: masterHead: only_agent


📝 Commits (10+)

  • 353e7fd added: only_agent mode for workspace
  • d380f89 added: only_agent mode for workspace
  • 72639be Merge branch 'only_agent' of https://github.com/MrMarans/anything-llm into only_agent
  • 0d1edcc added languages
  • 5a7141d fixed arabian translation to check verifyTranslations mjs script
  • 11ddf6e rebuild 1.8.2
  • 98c3881 rebuild 1.8.2
  • 65f8668 patched agent mode for 1.8.2 with better slash command UX
  • a6dffeb Merge upstream/1.8.2 into only_agent branch - Resolved merge conflicts and preserved agent mode functionality
  • 5ab20e7 github workflow fix and linting

📊 Changes

35 files changed (+275 additions, -53 deletions)

View changed files

📝 .github/workflows/build-and-push-image-semver.yaml (+4 -11)
📝 frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SlashCommands/SlashPresets/index.jsx (+13 -7)
📝 frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SlashCommands/endAgentSession.jsx (+9 -2)
📝 frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SlashCommands/index.jsx (+18 -3)
📝 frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SlashCommands/reset.jsx (+5 -2)
📝 frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/index.jsx (+2 -0)
📝 frontend/src/components/WorkspaceChat/ChatContainer/index.jsx (+25 -16)
📝 frontend/src/locales/ar/common.js (+5 -0)
📝 frontend/src/locales/da/common.js (+5 -0)
📝 frontend/src/locales/de/common.js (+5 -0)
📝 frontend/src/locales/en/common.js (+5 -0)
📝 frontend/src/locales/es/common.js (+5 -0)
📝 frontend/src/locales/fa/common.js (+5 -0)
📝 frontend/src/locales/fr/common.js (+5 -0)
📝 frontend/src/locales/he/common.js (+5 -0)
📝 frontend/src/locales/it/common.js (+5 -0)
📝 frontend/src/locales/ja/common.js (+5 -0)
📝 frontend/src/locales/ko/common.js (+5 -0)
📝 frontend/src/locales/lv/common.js (+5 -0)
📝 frontend/src/locales/nl/common.js (+5 -0)

...and 15 more files

📄 Description

Pull Request Type

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

Relevant Issues

No issue created

What is in this change?

Adds Chat Mode "Agent"
image
Every first message when loading the chat window adds the @agent command.
Also the agent mode doesnt have a timeout anymore when in this mode.

Additional Information

No agent timeout when in agent chat mode of workspace, only agent calls. Added language parts for translations (and added german translation)

I would love to edit the documentation but I currently have no clue where the files for the documentation is. When answered I'll add it to my branch

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/3483 **Author:** [@MrMarans](https://github.com/MrMarans) **Created:** 3/17/2025 **Status:** ❌ Closed **Base:** `master` ← **Head:** `only_agent` --- ### 📝 Commits (10+) - [`353e7fd`](https://github.com/Mintplex-Labs/anything-llm/commit/353e7fdc8b7ce7d42f30e3d16fa39dc787eeddb0) added: only_agent mode for workspace - [`d380f89`](https://github.com/Mintplex-Labs/anything-llm/commit/d380f89ea569304b068cf2c919c0133d265007f1) added: only_agent mode for workspace - [`72639be`](https://github.com/Mintplex-Labs/anything-llm/commit/72639beb4514582dd253274c5fc6b705b92bd2e7) Merge branch 'only_agent' of https://github.com/MrMarans/anything-llm into only_agent - [`0d1edcc`](https://github.com/Mintplex-Labs/anything-llm/commit/0d1edccc6b0824388ac17dd061b3eb5dbf5d9ad8) added languages - [`5a7141d`](https://github.com/Mintplex-Labs/anything-llm/commit/5a7141d44d5ef2e592e1b741712f24325cf9477e) fixed arabian translation to check verifyTranslations mjs script - [`11ddf6e`](https://github.com/Mintplex-Labs/anything-llm/commit/11ddf6eb74193fe5feb2f9971a5b6bf5937219b8) rebuild 1.8.2 - [`98c3881`](https://github.com/Mintplex-Labs/anything-llm/commit/98c388157341e89c74e57bb73d4d7834752c2731) rebuild 1.8.2 - [`65f8668`](https://github.com/Mintplex-Labs/anything-llm/commit/65f86686a0ea5b66cf4d6de6e35a57041ceca159) patched agent mode for 1.8.2 with better slash command UX - [`a6dffeb`](https://github.com/Mintplex-Labs/anything-llm/commit/a6dffeb2fa43b67ed5e8794bdc6d5eb16102d85a) Merge upstream/1.8.2 into only_agent branch - Resolved merge conflicts and preserved agent mode functionality - [`5ab20e7`](https://github.com/Mintplex-Labs/anything-llm/commit/5ab20e738790ff7619e5126c1998ac31b759773a) github workflow fix and linting ### 📊 Changes **35 files changed** (+275 additions, -53 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/build-and-push-image-semver.yaml` (+4 -11) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SlashCommands/SlashPresets/index.jsx` (+13 -7) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SlashCommands/endAgentSession.jsx` (+9 -2) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SlashCommands/index.jsx` (+18 -3) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/SlashCommands/reset.jsx` (+5 -2) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/index.jsx` (+2 -0) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/index.jsx` (+25 -16) 📝 `frontend/src/locales/ar/common.js` (+5 -0) 📝 `frontend/src/locales/da/common.js` (+5 -0) 📝 `frontend/src/locales/de/common.js` (+5 -0) 📝 `frontend/src/locales/en/common.js` (+5 -0) 📝 `frontend/src/locales/es/common.js` (+5 -0) 📝 `frontend/src/locales/fa/common.js` (+5 -0) 📝 `frontend/src/locales/fr/common.js` (+5 -0) 📝 `frontend/src/locales/he/common.js` (+5 -0) 📝 `frontend/src/locales/it/common.js` (+5 -0) 📝 `frontend/src/locales/ja/common.js` (+5 -0) 📝 `frontend/src/locales/ko/common.js` (+5 -0) 📝 `frontend/src/locales/lv/common.js` (+5 -0) 📝 `frontend/src/locales/nl/common.js` (+5 -0) _...and 15 more files_ </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [X] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [ ] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### Relevant Issues No issue created ### What is in this change? Adds Chat Mode "Agent" ![image](https://github.com/user-attachments/assets/6face029-a50a-42a4-a3d5-b7c5fb4188a9) Every first message when loading the chat window adds the @agent command. Also the agent mode doesnt have a timeout anymore when in this mode. ### Additional Information No agent timeout when in agent chat mode of workspace, only agent calls. Added language parts for translations (and added german translation) I would love to edit the documentation but I currently have no clue where the files for the documentation is. When answered I'll add it to my branch ### Developer Validations <!-- All of the applicable items should be checked. --> - [X] I ran `yarn lint` from the root of the repo & committed changes - [ ] 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:35:32 -05:00
yindo changed title from [PR #3483] Added chat mode to only use agent to [PR #3483] [CLOSED] Added chat mode to only use agent 2026-06-05 15:17:50 -04:00
yindo closed this issue 2026-06-05 15:17:50 -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#4293