update template

This commit is contained in:
2026-01-01 23:42:32 +03:00
parent 4d1c34e0a5
commit bbde5fe3ba
5 changed files with 9 additions and 4 deletions

40
data/workflow.json Normal file
View File

@@ -0,0 +1,40 @@
{
"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"
}
]
}