-
- Downloads
Agent flow builder (#3077)
* wip agent builder * refactor structure for agent builder * improve ui for add block menu and sidebar * lint * node ui improvement * handle deleting variable in all nodes * add headers and body to apiCall node * lint * Agent flow builder backend (#3078) * wip agent builder backend * save/load agent tasks * lint * refactor agent task to use uuids instead of names * placeholder for run task * update frontend sidebar + seperate backend to agent-tasks utils * lint * add deleting of agent tasks * create AgentTasks class + wip load agent tasks into aibitat * lint * inject + call agent tasks * wip call agent tasks * add llm instruction + fix api calling blocks * add ui + backend for editing/toggling agent tasks * lint * add back middlewares * disable run task + add navigate to home on logo click * implement normalizePath to prevent path traversal * wip make api calling more consistent * lint * rename all references from task to flow * patch load flow bug when on editing page * remove unneeded files/comments * lint * fix delete endpoint + rename load flows * add move block to ui + fix api-call backend + add telemetry * lint * add web scraping block * only allow admin for agent builder --------- Co-authored-by:timothycarambat <rambat1010@gmail.com> * Move AgentFlowManager flows to static simplify UI states Handle LLM prompt flow when provided non-string * delete/edit menu for agent flow panel + update flow icon * lint * fix open builder button hidden bug * add tooltips to move up/down block buttons * add tooltip to delete block * truncate block description to fit on blocklist component * light mode agent builder sidebar * light mode api call block * fix light mode styles for agent builder blocks * agent flow fetch in UI * sync delete flow * agent flow ui/ux improvements * remove unused AgentSidebar component * comment out /run * UI changes and updates for flow builder * format flow panel info * update link handling * ui tweaks to header menu * remove unused import * update doc links update block icons * bump readme * Patch code block header oddity resolves #3117 * bump dev image --------- Co-authored-by:
Timothy Carambat <rambat1010@gmail.com>
Showing
- .github/workflows/dev-build.yaml 1 addition, 1 deletion.github/workflows/dev-build.yaml
- README.md 2 additions, 1 deletionREADME.md
- frontend/src/App.jsx 19 additions, 0 deletionsfrontend/src/App.jsx
- frontend/src/components/PrivateRoute/index.jsx 7 additions, 3 deletionsfrontend/src/components/PrivateRoute/index.jsx
- frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/index.jsx 4 additions, 0 deletions...hat/ChatContainer/ChatHistory/HistoricalMessage/index.jsx
- frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/StatusResponse/index.jsx 3 additions, 1 deletion...ceChat/ChatContainer/ChatHistory/StatusResponse/index.jsx
- frontend/src/index.css 9 additions, 0 deletionsfrontend/src/index.css
- frontend/src/media/logo/anything-llm-infinity.png 0 additions, 0 deletionsfrontend/src/media/logo/anything-llm-infinity.png
- frontend/src/models/agentFlows.js 149 additions, 0 deletionsfrontend/src/models/agentFlows.js
- frontend/src/pages/Admin/AgentBuilder/AddBlockMenu/index.jsx 68 additions, 0 deletionsfrontend/src/pages/Admin/AgentBuilder/AddBlockMenu/index.jsx
- frontend/src/pages/Admin/AgentBuilder/BlockList/index.jsx 305 additions, 0 deletionsfrontend/src/pages/Admin/AgentBuilder/BlockList/index.jsx
- frontend/src/pages/Admin/AgentBuilder/HeaderMenu/index.jsx 130 additions, 0 deletionsfrontend/src/pages/Admin/AgentBuilder/HeaderMenu/index.jsx
- frontend/src/pages/Admin/AgentBuilder/index.jsx 361 additions, 0 deletionsfrontend/src/pages/Admin/AgentBuilder/index.jsx
- frontend/src/pages/Admin/AgentBuilder/nodes/ApiCallNode/index.jsx 293 additions, 0 deletions.../src/pages/Admin/AgentBuilder/nodes/ApiCallNode/index.jsx
- frontend/src/pages/Admin/AgentBuilder/nodes/CodeNode/index.jsx 56 additions, 0 deletions...end/src/pages/Admin/AgentBuilder/nodes/CodeNode/index.jsx
- frontend/src/pages/Admin/AgentBuilder/nodes/FileNode/index.jsx 72 additions, 0 deletions...end/src/pages/Admin/AgentBuilder/nodes/FileNode/index.jsx
- frontend/src/pages/Admin/AgentBuilder/nodes/FinishNode/index.jsx 10 additions, 0 deletions...d/src/pages/Admin/AgentBuilder/nodes/FinishNode/index.jsx
- frontend/src/pages/Admin/AgentBuilder/nodes/FlowInfoNode/index.jsx 65 additions, 0 deletions...src/pages/Admin/AgentBuilder/nodes/FlowInfoNode/index.jsx
- frontend/src/pages/Admin/AgentBuilder/nodes/LLMInstructionNode/index.jsx 52 additions, 0 deletions...ges/Admin/AgentBuilder/nodes/LLMInstructionNode/index.jsx
- frontend/src/pages/Admin/AgentBuilder/nodes/StartNode/index.jsx 72 additions, 0 deletions...nd/src/pages/Admin/AgentBuilder/nodes/StartNode/index.jsx
Loading
Please register or sign in to comment