Agent Workflow Builder
Properties
Select a node or edge to edit its properties.
▶️
Start
Starting point of the workflow
🤖
Agent
AI agent node
Press enter or space to select a node. You can then use the arrow keys to move the node around. Press delete to remove it and escape to cancel.
Press enter or space to select an edge. You can then press delete to remove it or escape to cancel.
Code Preview
{
"nodes": [
{
"id": "1",
"name": "Start",
"description": "Starting point of the workflow",
"type": "start",
"position": {
"x": 100,
"y": 100
}
},
{
"id": "2",
"name": "Agent",
"description": "AI agent node",
"type": "agent",
"position": {
"x": 300,
"y": 200
}
}
],
"edges": [
{
"id": "e1-2",
"source": "1",
"target": "2",
"condition": "always",
"description": "Initial flow"
}
]
}