[PR #3077] [MERGED] Agent flow builder #4214

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/3077
Author: @shatfield4
Created: 1/31/2025
Status: Merged
Merged: 2/12/2025
Merged by: @timothycarambat

Base: masterHead: agent-builder


📝 Commits (10+)

  • d5e5f01 wip agent builder
  • a38f062 refactor structure for agent builder
  • 60c6fb0 Merge branch 'master' into agent-builder
  • a4fb36c improve ui for add block menu and sidebar
  • 31236fc lint
  • eeaefc2 node ui improvement
  • d5d3a45 handle deleting variable in all nodes
  • bad9248 add headers and body to apiCall node
  • 63caded lint
  • 4c50141 Merge branch 'master' into agent-builder

📊 Changes

45 files changed (+3102 additions, -60 deletions)

View changed files

📝 .github/workflows/dev-build.yaml (+1 -1)
📝 README.md (+2 -1)
📝 frontend/src/App.jsx (+19 -0)
📝 frontend/src/components/PrivateRoute/index.jsx (+7 -3)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/index.jsx (+4 -0)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/StatusResponse/index.jsx (+3 -1)
📝 frontend/src/index.css (+9 -0)
frontend/src/media/logo/anything-llm-infinity.png (+0 -0)
frontend/src/models/agentFlows.js (+149 -0)
frontend/src/pages/Admin/AgentBuilder/AddBlockMenu/index.jsx (+68 -0)
frontend/src/pages/Admin/AgentBuilder/BlockList/index.jsx (+305 -0)
frontend/src/pages/Admin/AgentBuilder/HeaderMenu/index.jsx (+130 -0)
frontend/src/pages/Admin/AgentBuilder/index.jsx (+361 -0)
frontend/src/pages/Admin/AgentBuilder/nodes/ApiCallNode/index.jsx (+293 -0)
frontend/src/pages/Admin/AgentBuilder/nodes/CodeNode/index.jsx (+56 -0)
frontend/src/pages/Admin/AgentBuilder/nodes/FileNode/index.jsx (+72 -0)
frontend/src/pages/Admin/AgentBuilder/nodes/FinishNode/index.jsx (+10 -0)
frontend/src/pages/Admin/AgentBuilder/nodes/FlowInfoNode/index.jsx (+65 -0)
frontend/src/pages/Admin/AgentBuilder/nodes/LLMInstructionNode/index.jsx (+52 -0)
frontend/src/pages/Admin/AgentBuilder/nodes/StartNode/index.jsx (+72 -0)

...and 25 more files

📄 Description

Pull Request Type

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

Relevant Issues

resolves #xxx

What is in this change?

  • Create frontend elements for the agent task builder UI
  • Allows users to create agent tasks via a UI

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/3077 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 1/31/2025 **Status:** ✅ Merged **Merged:** 2/12/2025 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `agent-builder` --- ### 📝 Commits (10+) - [`d5e5f01`](https://github.com/Mintplex-Labs/anything-llm/commit/d5e5f01359ea5d027ce19e699ea6ad725666170a) wip agent builder - [`a38f062`](https://github.com/Mintplex-Labs/anything-llm/commit/a38f062d39e65bd6e86be77ab5fe13aa2d65ab3f) refactor structure for agent builder - [`60c6fb0`](https://github.com/Mintplex-Labs/anything-llm/commit/60c6fb0fca790e39fd7ffca722be18cfa5e57ca8) Merge branch 'master' into agent-builder - [`a4fb36c`](https://github.com/Mintplex-Labs/anything-llm/commit/a4fb36ca8997d2877807ba7075806ef69d2a1f7f) improve ui for add block menu and sidebar - [`31236fc`](https://github.com/Mintplex-Labs/anything-llm/commit/31236fce105cdda0d4ce6a4f3a5ebe8f5b663231) lint - [`eeaefc2`](https://github.com/Mintplex-Labs/anything-llm/commit/eeaefc20bd561f0306475e4327fb1305002b8a76) node ui improvement - [`d5d3a45`](https://github.com/Mintplex-Labs/anything-llm/commit/d5d3a458b2465cba827fdf65d13b666498d28445) handle deleting variable in all nodes - [`bad9248`](https://github.com/Mintplex-Labs/anything-llm/commit/bad92480760cb5c5f95eb78c751cde293d2acde2) add headers and body to apiCall node - [`63caded`](https://github.com/Mintplex-Labs/anything-llm/commit/63cadedcc4186cf670db8644fbf13153087c7d9d) lint - [`4c50141`](https://github.com/Mintplex-Labs/anything-llm/commit/4c50141eeecd36947945781e4e07a49362bcccfd) Merge branch 'master' into agent-builder ### 📊 Changes **45 files changed** (+3102 additions, -60 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/dev-build.yaml` (+1 -1) 📝 `README.md` (+2 -1) 📝 `frontend/src/App.jsx` (+19 -0) 📝 `frontend/src/components/PrivateRoute/index.jsx` (+7 -3) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/index.jsx` (+4 -0) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/StatusResponse/index.jsx` (+3 -1) 📝 `frontend/src/index.css` (+9 -0) ➕ `frontend/src/media/logo/anything-llm-infinity.png` (+0 -0) ➕ `frontend/src/models/agentFlows.js` (+149 -0) ➕ `frontend/src/pages/Admin/AgentBuilder/AddBlockMenu/index.jsx` (+68 -0) ➕ `frontend/src/pages/Admin/AgentBuilder/BlockList/index.jsx` (+305 -0) ➕ `frontend/src/pages/Admin/AgentBuilder/HeaderMenu/index.jsx` (+130 -0) ➕ `frontend/src/pages/Admin/AgentBuilder/index.jsx` (+361 -0) ➕ `frontend/src/pages/Admin/AgentBuilder/nodes/ApiCallNode/index.jsx` (+293 -0) ➕ `frontend/src/pages/Admin/AgentBuilder/nodes/CodeNode/index.jsx` (+56 -0) ➕ `frontend/src/pages/Admin/AgentBuilder/nodes/FileNode/index.jsx` (+72 -0) ➕ `frontend/src/pages/Admin/AgentBuilder/nodes/FinishNode/index.jsx` (+10 -0) ➕ `frontend/src/pages/Admin/AgentBuilder/nodes/FlowInfoNode/index.jsx` (+65 -0) ➕ `frontend/src/pages/Admin/AgentBuilder/nodes/LLMInstructionNode/index.jsx` (+52 -0) ➕ `frontend/src/pages/Admin/AgentBuilder/nodes/StartNode/index.jsx` (+72 -0) _...and 25 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. --> - Create frontend elements for the agent task builder UI - Allows users to create agent tasks via a UI ### 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 #3077] Agent flow builder to [PR #3077] [MERGED] Agent flow builder 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#4214