This commit is contained in:
2026-01-01 12:05:40 +03:00
parent e3018cd6bc
commit b064af9e73
4 changed files with 69 additions and 2 deletions

40
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"
}
]
}