Files
S8N.WorkflowTemplate/data/workflow.json

40 lines
742 B
JSON
Raw Normal View History

2026-01-01 12:05:40 +03:00
{
"name": "MyWorkflow",
"settings": {
"lorem": "lorem ipsum dolor sit amet"
},
"nodes": [
{
"id": "aiAgentNode",
"position": {
"x": 100,
"y": 100
},
"width": 300,
"height": 100,
"type": "default",
"class": "s8n_ai.AiAgent"
},
{
"id": "aiChatBoxNode",
"position": {
"x": 0,
"y": 100
},
"width": 50,
"height": 50,
"type": "default",
"class": "s8n_ai.AiChatBox"
}
],
"edges": [
{
"id": "583c30c67c2f4bc3a543a87b192ec616",
"source": "aiChatBoxNode",
"target": "aiAgentNode",
"isEvent": true,
"sourceHandle": "NewMessage",
"targetHandle": "Handle"
}
]
}