n8n/packages/@n8n/instance-ai/evaluations/computer-use/fixtures/sample-workflow.json
Bernhard Wittmann b445221c6a
feat: Computer-use evaluation harness (no-changelog) (#29797)
Co-authored-by: Elias Meire <elias@meire.dev>
2026-05-12 08:36:12 +00:00

45 lines
960 B
JSON

{
"name": "CU Eval — Sample Workflow",
"nodes": [
{
"parameters": {
"rule": { "interval": [{ "field": "hours", "hoursInterval": 1 }] }
},
"name": "Schedule Trigger",
"type": "n8n-nodes-base.scheduleTrigger",
"typeVersion": 1.2,
"position": [240, 300]
},
{
"parameters": {
"url": "https://api.example.com/items",
"options": {}
},
"name": "Fetch Items",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.2,
"position": [480, 300]
},
{
"parameters": {
"channel": "general",
"text": "={{ $json.message }}",
"otherOptions": {}
},
"name": "Notify Slack",
"type": "n8n-nodes-base.slack",
"typeVersion": 2.2,
"position": [720, 300]
}
],
"connections": {
"Schedule Trigger": {
"main": [[{ "node": "Fetch Items", "type": "main", "index": 0 }]]
},
"Fetch Items": {
"main": [[{ "node": "Notify Slack", "type": "main", "index": 0 }]]
}
},
"settings": {}
}