[PR #3078] [MERGED] Agent flow builder backend #4212

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/3078
Author: @shatfield4
Created: 1/31/2025
Status: Merged
Merged: 2/10/2025
Merged by: @timothycarambat

Base: agent-builderHead: agent-builder-backend


📝 Commits (10+)

  • 0e33daf wip agent builder backend
  • 1904f24 save/load agent tasks
  • 958f1e2 lint
  • 3525211 refactor agent task to use uuids instead of names
  • c75f57a placeholder for run task
  • 4c35b9e update frontend sidebar + seperate backend to agent-tasks utils
  • 9411a1b lint
  • 7a52fc4 add deleting of agent tasks
  • 57426d5 Merge branch 'master' of github.com:Mintplex-Labs/anything-llm into agent-builder-backend
  • c4e87fb Merge branch 'agent-builder' into agent-builder-backend

📊 Changes

33 files changed (+2188 additions, -120 deletions)

View changed files

📝 frontend/src/App.jsx (+4 -0)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/StatusResponse/index.jsx (+3 -1)
📝 frontend/src/locales/resources.js (+2 -2)
📝 frontend/src/locales/tr/common.js (+1 -2)
frontend/src/models/agentFlows.js (+147 -0)
📝 frontend/src/pages/Admin/AgentBuilder/AddBlockMenu/index.jsx (+20 -4)
📝 frontend/src/pages/Admin/AgentBuilder/AgentSidebar/index.jsx (+74 -17)
📝 frontend/src/pages/Admin/AgentBuilder/BlockList/index.jsx (+98 -22)
frontend/src/pages/Admin/AgentBuilder/LoadFlowMenu/index.jsx (+154 -0)
📝 frontend/src/pages/Admin/AgentBuilder/index.jsx (+173 -11)
📝 frontend/src/pages/Admin/AgentBuilder/nodes/ApiCallNode/index.jsx (+65 -11)
frontend/src/pages/Admin/AgentBuilder/nodes/FinishNode/index.jsx (+10 -0)
frontend/src/pages/Admin/AgentBuilder/nodes/LLMInstructionNode/index.jsx (+52 -0)
frontend/src/pages/Admin/AgentBuilder/nodes/WebScrapingNode/index.jsx (+41 -0)
frontend/src/pages/Admin/Agents/AgentFlows/FlowPanel.jsx (+66 -0)
frontend/src/pages/Admin/Agents/AgentFlows/index.jsx (+63 -0)
📝 frontend/src/pages/Admin/Agents/Imported/ImportedSkillConfig/index.jsx (+2 -2)
📝 frontend/src/pages/Admin/Agents/index.jsx (+145 -41)
📝 frontend/src/utils/paths.js (+8 -0)
📝 server/.gitignore (+1 -0)

...and 13 more files

📄 Description

Pull Request Type

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

Relevant Issues

resolves #xxx

What is in this change?

  • Backend implementation for CRUD on all agent tasks

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/3078 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 1/31/2025 **Status:** ✅ Merged **Merged:** 2/10/2025 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `agent-builder` ← **Head:** `agent-builder-backend` --- ### 📝 Commits (10+) - [`0e33daf`](https://github.com/Mintplex-Labs/anything-llm/commit/0e33daf6b7e08ab70d8547249d8754114d04d26d) wip agent builder backend - [`1904f24`](https://github.com/Mintplex-Labs/anything-llm/commit/1904f2472f5c7fce792973e365abe2cf315f0f21) save/load agent tasks - [`958f1e2`](https://github.com/Mintplex-Labs/anything-llm/commit/958f1e2dc1627a5a1d8c0030dd9259b0650056f6) lint - [`3525211`](https://github.com/Mintplex-Labs/anything-llm/commit/35252117a67ebc98f11f158f5e4117f2d7c612c7) refactor agent task to use uuids instead of names - [`c75f57a`](https://github.com/Mintplex-Labs/anything-llm/commit/c75f57a36943bc032403d2779ecb79f1f75d59f9) placeholder for run task - [`4c35b9e`](https://github.com/Mintplex-Labs/anything-llm/commit/4c35b9e5a4bbb439ed498c346acd9cf99079014f) update frontend sidebar + seperate backend to agent-tasks utils - [`9411a1b`](https://github.com/Mintplex-Labs/anything-llm/commit/9411a1b8932af2eda5af3d94cb46f4d004356a94) lint - [`7a52fc4`](https://github.com/Mintplex-Labs/anything-llm/commit/7a52fc4ffb22d95dfe27dcc76df9dc7185116a72) add deleting of agent tasks - [`57426d5`](https://github.com/Mintplex-Labs/anything-llm/commit/57426d52073cbd11f8f519d77858cce916d85fa0) Merge branch 'master' of github.com:Mintplex-Labs/anything-llm into agent-builder-backend - [`c4e87fb`](https://github.com/Mintplex-Labs/anything-llm/commit/c4e87fbd61b63e94dcb6164e50b187c770b2145b) Merge branch 'agent-builder' into agent-builder-backend ### 📊 Changes **33 files changed** (+2188 additions, -120 deletions) <details> <summary>View changed files</summary> 📝 `frontend/src/App.jsx` (+4 -0) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/StatusResponse/index.jsx` (+3 -1) 📝 `frontend/src/locales/resources.js` (+2 -2) 📝 `frontend/src/locales/tr/common.js` (+1 -2) ➕ `frontend/src/models/agentFlows.js` (+147 -0) 📝 `frontend/src/pages/Admin/AgentBuilder/AddBlockMenu/index.jsx` (+20 -4) 📝 `frontend/src/pages/Admin/AgentBuilder/AgentSidebar/index.jsx` (+74 -17) 📝 `frontend/src/pages/Admin/AgentBuilder/BlockList/index.jsx` (+98 -22) ➕ `frontend/src/pages/Admin/AgentBuilder/LoadFlowMenu/index.jsx` (+154 -0) 📝 `frontend/src/pages/Admin/AgentBuilder/index.jsx` (+173 -11) 📝 `frontend/src/pages/Admin/AgentBuilder/nodes/ApiCallNode/index.jsx` (+65 -11) ➕ `frontend/src/pages/Admin/AgentBuilder/nodes/FinishNode/index.jsx` (+10 -0) ➕ `frontend/src/pages/Admin/AgentBuilder/nodes/LLMInstructionNode/index.jsx` (+52 -0) ➕ `frontend/src/pages/Admin/AgentBuilder/nodes/WebScrapingNode/index.jsx` (+41 -0) ➕ `frontend/src/pages/Admin/Agents/AgentFlows/FlowPanel.jsx` (+66 -0) ➕ `frontend/src/pages/Admin/Agents/AgentFlows/index.jsx` (+63 -0) 📝 `frontend/src/pages/Admin/Agents/Imported/ImportedSkillConfig/index.jsx` (+2 -2) 📝 `frontend/src/pages/Admin/Agents/index.jsx` (+145 -41) 📝 `frontend/src/utils/paths.js` (+8 -0) 📝 `server/.gitignore` (+1 -0) _...and 13 more files_ </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [ ] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [ ] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #xxx ### What is in this change? <!-- Describe the changes in this PR that are impactful to the repo. --> - Backend implementation for CRUD on all agent tasks ### 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:35:22 -05:00
yindo closed this issue 2026-02-22 18:35:22 -05:00
yindo changed title from [PR #3078] Agent flow builder backend to [PR #3078] [MERGED] Agent flow builder backend 2026-06-05 15:17:25 -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#4212