adding the workflow collection to git

This commit is contained in:
Eliad Shahar
2025-05-14 11:58:29 +03:00
parent 05c94a30d5
commit 84c802cb50
2050 changed files with 984481 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
{
"nodes": [
{
"name": "Read Binary File",
"type": "n8n-nodes-base.readBinaryFile",
"position": [
450,
300
],
"parameters": {
"filePath": "/data/demo1.wav"
},
"typeVersion": 1
},
{
"name": "HTTP Request",
"type": "n8n-nodes-base.httpRequest",
"position": [
650,
300
],
"parameters": {
"url": "https://api.wit.ai/speech?v=20200513",
"options": {
"bodyContentType": "raw"
},
"requestMethod": "POST",
"jsonParameters": true,
"sendBinaryData": true,
"headerParametersJson": "={{JSON.parse('{\"Authorization\":\"Bearer {your_token_goes_here}\", \"Content-Type\":\"audio/wav\"}')}}"
},
"typeVersion": 1
}
],
"connections": {
"Read Binary File": {
"main": [
[
{
"node": "HTTP Request",
"type": "main",
"index": 0
}
]
]
}
}
}