name
stringlengths
2
299
nodes
stringlengths
2
426k
connections
stringlengths
2
8.15k
Qualify replies from Pipedrive persons with AI
[{"id": "97b36168-7fa8-4a97-a6cc-c42496918c4c", "name": "Search Person in CRM", "type": "n8n-nodes-base.pipedrive", "position": [-880, 400], "parameters": {"term": "={{ $json.from.value[0].address }}", "limit": 1, "resource": "person", "operation": "search", "additionalFields": {"includeFields": ""}}, "credentials": {"pipedriveApi": {"id": "MdJQDtRDHnpwuVYP", "name": "Pipedrive LinkedUp"}}, "typeVersion": 1}, {"id": "2a17582b-9375-4a01-87d9-a50f573b83db", "name": "In campaign?", "type": "n8n-nodes-base.if", "position": [-420, 400], "parameters": {"conditions": {"string": [{"value1": "={{ $json.in_campaign }}", "value2": "True"}]}}, "typeVersion": 1}, {"id": "2a8d509f-8ac2-4f45-a905-f34552833381", "name": "Get person from CRM", "type": "n8n-nodes-base.pipedrive", "position": [-640, 400], "parameters": {"personId": "={{ $json.id }}", "resource": "person", "operation": "get", "resolveProperties": true}, "credentials": {"pipedriveApi": {"id": "MdJQDtRDHnpwuVYP", "name": "Pipedrive LinkedUp"}}, "typeVersion": 1}, {"id": "b9c6f3d3-1a6d-4144-8e77-3a3c6e5282d8", "name": "Is interested?", "type": "n8n-nodes-base.openAi", "position": [-180, 380], "parameters": {"model": "gpt-4", "prompt": {"messages": [{"content": "=You are the best sales development representative in the world. You send cold email messages daily to CEOs and founders of companies. You do this to persuade them to make contact. This could be a phone call or a video meeting. \n\nYour task is to assess whether someone is interested in meeting up or calling sometime. You do this by attentively evaluating their response.\n\nThis is the email:\n{{ $('Get email').item.json.text }}\n\nThe response format should be:\n{\"interested\": [yes/no],\n\"reason\": reason\n}\n\nJSON:"}]}, "options": {}, "resource": "chat"}, "credentials": {"openAiApi": {"id": "qPBzqgpCRxncJ90K", "name": "OpenAi account 2"}}, "typeVersion": 1}, {"id": "f1eb438d-f002-4082-8481-51565df13f5c", "name": "Get email", "type": "n8n-nodes-base.set", "position": [-1100, 400], "parameters": {"fields": {"values": [{"name": "email", "stringValue": "={{ $json.text }}"}]}, "options": {}}, "typeVersion": 3.2}, {"id": "78461c36-ba54-4f0f-a38e-183bfafa576c", "name": "Create deal in CRM", "type": "n8n-nodes-base.pipedrive", "position": [460, 360], "parameters": {"title": "={{ $('Get person from CRM').item.json.Name }} Deal", "additionalFields": {}}, "credentials": {"pipedriveApi": {"id": "MdJQDtRDHnpwuVYP", "name": "Pipedrive LinkedUp"}}, "typeVersion": 1}, {"id": "efe07661-9afc-4184-b558-e1f547b6721f", "name": "IF interested", "type": "n8n-nodes-base.if", "position": [240, 380], "parameters": {"conditions": {"string": [{"value1": "={{ $json.interested }}", "value2": "yes"}]}}, "typeVersion": 1}, {"id": "7c2b7b59-9d68-4d8c-9b9f-a36ea47526c9", "name": "Get response", "type": "n8n-nodes-base.code", "position": [20, 380], "parameters": {"mode": "runOnceForEachItem", "jsCode": "let interested = JSON.parse($json[\"message\"][\"content\"]).interested\nlet reason = JSON.parse($json[\"message\"][\"content\"]).reason\n\nreturn {json:{\n interested: interested,\n reason: reason\n}}"}, "typeVersion": 1}, {"id": "53f51f8c-5995-4bcd-a038-3018834942e6", "name": "Email box 1", "type": "n8n-nodes-base.gmailTrigger", "position": [-1300, 400], "parameters": {"simple": false, "filters": {"labelIds": []}, "options": {}, "pollTimes": {"item": [{"mode": "everyMinute"}]}}, "typeVersion": 1}, {"id": "bb1254ec-676a-4edc-bf4a-a1c66bac78bb", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [-1880, 360], "parameters": {"width": 452.37174177689576, "height": 462.1804790107177, "content": "## About the workflow\nThe workflow reads every reply that is received from a cold email campaign and qualifies if the lead is interested in a meeting. If the lead is interested, a deal is made in pipedrive. You can add as many email inboxes as you need!\n\n## Setup:\n- Add credentials to the Gmail, OpenAI and Pipedrive Nodes.\n- Add a in_campaign field in Pipedrive for persons. In Pipedrive click on your credentials at the top right, go to company settings > Data fields > Person and click on add custom field. Single option [TRUE/FALSE].\n- If you have only one email inbox, you can delete one of the Gmail nodes.\n- If you have more than two email inboxes, you can duplicate a Gmail node as many times as you like. Just connect it to the Get email node, and you are good to go!\n- In the Gmail inbox nodes, select Inbox under label names and uncheck Simplify."}, "typeVersion": 1}, {"id": "c1aaee97-11f4-4e9d-9a71-90ca3f5773a9", "name": "Email box 2", "type": "n8n-nodes-base.gmailTrigger", "position": [-1300, 600], "parameters": {"simple": false, "filters": {"labelIds": []}, "options": {}, "pollTimes": {"item": [{"mode": "everyMinute"}]}}, "typeVersion": 1}]
{"Get email": {"main": [[{"node": "Search Person in CRM", "type": "main", "index": 0}]]}, "Email box 1": {"main": [[{"node": "Get email", "type": "main", "index": 0}]]}, "Email box 2": {"main": [[{"node": "Get email", "type": "main", "index": 0}]]}, "Get response": {"main": [[{"node": "IF interested", "type": "main", "index": 0}]]}, "In campaign?": {"main": [[{"node": "Is interested?", "type": "main", "index": 0}]]}, "IF interested": {"main": [[{"node": "Create deal in CRM", "type": "main", "index": 0}]]}, "Is interested?": {"main": [[{"node": "Get response", "type": "main", "index": 0}]]}, "Get person from CRM": {"main": [[{"node": "In campaign?", "type": "main", "index": 0}]]}, "Search Person in CRM": {"main": [[{"node": "Get person from CRM", "type": "main", "index": 0}]]}}
Cockpit:Collection:createEntry updateEntry getAllEntries:Singleton:get:Form:submit
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "768b2ddf-9888-4361-8f1e-3a4dff195e6b"}, {"parameters": {"operation": "create", "collection": "FixedCollection", "dataFieldsUi": {"field": [{"name": "Name", "value": "=entry{{Date.now()}}"}]}}, "name": "Cockpit", "type": "n8n-nodes-base.cockpit", "typeVersion": 1, "position": [550, 180], "credentials": {"cockpitApi": {"id": "81", "name": "Cockpit API creds"}}, "id": "a731c3d7-ffb7-493e-a3ac-9fdef8776801"}, {"parameters": {"operation": "update", "collection": "FixedCollection", "id": "={{$node[\"Cockpit\"].json[\"_id\"]}}", "dataFieldsUi": {"field": [{"name": "Name", "value": "=UpdatedEntry{{Date.now()}}"}]}}, "name": "Cockpit1", "type": "n8n-nodes-base.cockpit", "typeVersion": 1, "position": [700, 180], "credentials": {"cockpitApi": {"id": "81", "name": "Cockpit API creds"}}, "id": "be0de116-a348-436c-8903-a78f2d9978f3"}, {"parameters": {"collection": "FixedCollection", "limit": 1, "options": {}}, "name": "Cockpit2", "type": "n8n-nodes-base.cockpit", "typeVersion": 1, "position": [850, 180], "credentials": {"cockpitApi": {"id": "81", "name": "Cockpit API creds"}}, "id": "e151e242-d0a9-43d9-8003-632b4f8569ad"}, {"parameters": {"resource": "singleton", "singleton": "FixedSingleton"}, "name": "Cockpit3", "type": "n8n-nodes-base.cockpit", "typeVersion": 1, "position": [550, 350], "credentials": {"cockpitApi": {"id": "81", "name": "Cockpit API creds"}}, "id": "b1f38f40-c544-496f-bcb9-3957a755a497"}, {"parameters": {"resource": "form", "form": "FixedForm", "dataFieldsUi": {"field": [{"name": "name", "value": "=name{{Date.now()}}"}, {"name": "tag", "value": "=tag{{Date.now()}}"}]}}, "name": "Cockpit4", "type": "n8n-nodes-base.cockpit", "typeVersion": 1, "position": [550, 500], "credentials": {"cockpitApi": {"id": "81", "name": "Cockpit API creds"}}, "id": "9567077a-58f2-453e-8d36-35d4c68e9510"}]
{"Cockpit": {"main": [[{"node": "Cockpit1", "type": "main", "index": 0}]]}, "Cockpit1": {"main": [[{"node": "Cockpit2", "type": "main", "index": 0}]]}, "Start": {"main": [[{"node": "Cockpit", "type": "main", "index": 0}, {"node": "Cockpit3", "type": "main", "index": 0}, {"node": "Cockpit4", "type": "main", "index": 0}]]}}
Autonomous AI crawler
[{"id": "6cdc45e5-1fa4-47fe-b80a-0e1560996936", "name": "Text", "type": "@n8n/n8n-nodes-langchain.toolWorkflow", "position": [1460, 980], "parameters": {"name": "text_retrieval_tool", "source": "parameter", "description": "Call this tool to return all text from the given website. Query should be full website URL.", "workflowJson": "{\n \"nodes\": [\n {\n \"parameters\": {},\n \"id\": \"05107436-c9cb-419b-ae8a-b74d309a130d\",\n \"name\": \"Execute workflow\",\n \"type\": \"n8n-nodes-base.manualTrigger\",\n \"typeVersion\": 1,\n \"position\": [\n 2220,\n 620\n ]\n },\n {\n \"parameters\": {\n \"assignments\": {\n \"assignments\": [\n {\n \"id\": \"253c2b17-c749-4f0a-93e8-5ff74f1ce49b\",\n \"name\": \"domain\",\n \"value\": \"={{ $json.query }}\",\n \"type\": \"string\"\n }\n ]\n },\n \"options\": {}\n },\n \"id\": \"bb8be616-3227-4705-8520-1827069faacd\",\n \"name\": \"Set domain\",\n \"type\": \"n8n-nodes-base.set\",\n \"typeVersion\": 3.3,\n \"position\": [\n 2440,\n 620\n ]\n },\n {\n \"parameters\": {\n \"assignments\": {\n \"assignments\": [\n {\n \"id\": \"ed0f1505-82b6-4393-a0d8-088055137ec9\",\n \"name\": \"domain\",\n \"value\": \"={{ $json.domain.startsWith(\\\"http\\\") ? $json.domain : \\\"http://\\\" + $json.domain }}\",\n \"type\": \"string\"\n }\n ]\n },\n \"options\": {}\n },\n \"id\": \"bdf29340-f135-489f-848e-1c7fa43a01df\",\n \"name\": \"Add protocool to domain\",\n \"type\": \"n8n-nodes-base.set\",\n \"typeVersion\": 3.3,\n \"position\": [\n 2640,\n 620\n ]\n },\n {\n \"parameters\": {\n \"assignments\": {\n \"assignments\": [\n {\n \"id\": \"2b1c7ff8-06a7-448b-99b7-5ede4b2e0bf0\",\n \"name\": \"response\",\n \"value\": \"={{ $json.data }}\",\n \"type\": \"string\"\n }\n ]\n },\n \"options\": {}\n },\n \"id\": \"9f0aa264-08c1-459a-bb99-e28599fe8f76\",\n \"name\": \"Set response\",\n \"type\": \"n8n-nodes-base.set\",\n \"typeVersion\": 3.3,\n \"position\": [\n 3300,\n 620\n ]\n },\n {\n \"parameters\": {\n \"url\": \"={{ $json.domain }}\",\n \"options\": {}\n },\n \"id\": \"cec7c8e8-bf5e-43d5-aa41-876293dbec78\",\n \"name\": \"Get website\",\n \"type\": \"n8n-nodes-base.httpRequest\",\n \"typeVersion\": 4.2,\n \"position\": [\n 2860,\n 620\n ]\n },\n {\n \"parameters\": {\n \"html\": \"={{ $json.data }}\",\n \"options\": {\n \"ignore\": \"a,img\"\n }\n },\n \"id\": \"1af94fcb-bca3-45c4-9277-18878c75d417\",\n \"name\": \"Convert HTML to Markdown\",\n \"type\": \"n8n-nodes-base.markdown\",\n \"typeVersion\": 1,\n \"position\": [\n 3080,\n 620\n ]\n }\n ],\n \"connections\": {\n \"Execute workflow\": {\n \"main\": [\n [\n {\n \"node\": \"Set domain\",\n \"type\": \"main\",\n \"index\": 0\n }\n ]\n ]\n },\n \"Set domain\": {\n \"main\": [\n [\n {\n \"node\": \"Add protocool to domain\",\n \"type\": \"main\",\n \"index\": 0\n }\n ]\n ]\n },\n \"Add protocool to domain\": {\n \"main\": [\n [\n {\n \"node\": \"Get website\",\n \"type\": \"main\",\n \"index\": 0\n }\n ]\n ]\n },\n \"Get website\": {\n \"main\": [\n [\n {\n \"node\": \"Convert HTML to Markdown\",\n \"type\": \"main\",\n \"index\": 0\n }\n ]\n ]\n },\n \"Convert HTML to Markdown\": {\n \"main\": [\n [\n {\n \"node\": \"Set response\",\n \"type\": \"main\",\n \"index\": 0\n }\n ]\n ]\n }\n },\n \"pinData\": {}\n}", "requestOptions": {}}, "typeVersion": 1.1}, {"id": "af8efccb-ba3c-44de-85f7-b932d7a2e3ca", "name": "URLs", "type": "@n8n/n8n-nodes-langchain.toolWorkflow", "position": [1640, 980], "parameters": {"name": "url_retrieval_tool", "source": "parameter", "description": "Call this tool to return all URLs from the given website. Query should be full website URL.", "workflowJson": "{\n \"nodes\": [\n {\n \"parameters\": {},\n \"id\": \"05107436-c9cb-419b-ae8a-b74d309a130d\",\n \"name\": \"Execute workflow\",\n \"type\": \"n8n-nodes-base.manualTrigger\",\n \"typeVersion\": 1,\n \"position\": [\n 2200,\n 740\n ]\n },\n {\n \"parameters\": {\n \"operation\": \"extractHtmlContent\",\n \"extractionValues\": {\n \"values\": [\n {\n \"key\": \"output\",\n \"cssSelector\": \"a\",\n \"returnValue\": \"attribute\",\n \"returnArray\": true\n }\n ]\n },\n \"options\": {}\n },\n \"id\": \"1972e13e-d923-45e8-9752-e4bf45faaccf\",\n \"name\": \"Retrieve URLs\",\n \"type\": \"n8n-nodes-base.html\",\n \"typeVersion\": 1.2,\n \"position\": [\n 3060,\n 740\n ]\n },\n {\n \"parameters\": {\n \"fieldToSplitOut\": \"output\",\n \"options\": {}\n },\n \"id\": \"19703fbc-05ff-4d80-ab53-85ba6d39fc3f\",\n \"name\": \"Split out URLs\",\n \"type\": \"n8n-nodes-base.splitOut\",\n \"typeVersion\": 1,\n \"position\": [\n 3280,\n 740\n ]\n },\n {\n \"parameters\": {\n \"compare\": \"selectedFields\",\n \"fieldsToCompare\": \"href\",\n \"options\": {}\n },\n \"id\": \"5cc988e7-de9b-4177-b5e7-edb3842202c8\",\n \"name\": \"Remove duplicated\",\n \"type\": \"n8n-nodes-base.removeDuplicates\",\n \"typeVersion\": 1,\n \"position\": [\n 3720,\n 740\n ]\n },\n {\n \"parameters\": {\n \"assignments\": {\n \"assignments\": [\n {\n \"id\": \"04ced063-09f0-496c-9b28-b8095f9e2297\",\n \"name\": \"href\",\n \"value\": \"={{ $json.href.startsWith(\\\"/\\\") ? $('Add protocool to domain (URL)').item.json[\\\"domain\\\"] + $json.href : $json.href }}\",\n \"type\": \"string\"\n }\n ]\n },\n \"includeOtherFields\": true,\n \"include\": \"selected\",\n \"includeFields\": \"title\",\n \"options\": {}\n },\n \"id\": \"4715a25d-93a7-4056-8768-e3f886a1a0c9\",\n \"name\": \"Set domain to path\",\n \"type\": \"n8n-nodes-base.set\",\n \"typeVersion\": 3.3,\n \"position\": [\n 3940,\n 740\n ]\n },\n {\n \"parameters\": {\n \"conditions\": {\n \"options\": {\n \"caseSensitive\": true,\n \"leftValue\": \"\",\n \"typeValidation\": \"strict\"\n },\n \"conditions\": [\n {\n \"id\": \"d01ea6a8-7e75-40d4-98f2-25d42b245f36\",\n \"leftValue\": \"={{ $json.href.isUrl() }}\",\n \"rightValue\": \"\",\n \"operator\": {\n \"type\": \"boolean\",\n \"operation\": \"true\",\n \"singleValue\": true\n }\n }\n ],\n \"combinator\": \"and\"\n },\n \"options\": {}\n },\n \"id\": \"353deefb-ae69-440c-95b6-fdadacf4bf91\",\n \"name\": \"Filter out invalid URLs\",\n \"type\": \"n8n-nodes-base.filter\",\n \"typeVersion\": 2,\n \"position\": [\n 4160,\n 740\n ]\n },\n {\n \"parameters\": {\n \"aggregate\": \"aggregateAllItemData\",\n \"include\": \"specifiedFields\",\n \"fieldsToInclude\": \"title,href\",\n \"options\": {}\n },\n \"id\": \"9f87be8c-72d7-4ab1-b297-dc7069b2dd11\",\n \"name\": \"Aggregate URLs\",\n \"type\": \"n8n-nodes-base.aggregate\",\n \"typeVersion\": 1,\n \"position\": [\n 4380,\n 740\n ]\n },\n {\n \"parameters\": {\n \"conditions\": {\n \"options\": {\n \"caseSensitive\": true,\n \"leftValue\": \"\",\n \"typeValidation\": \"strict\"\n },\n \"conditions\": [\n {\n \"id\": \"5b9b7353-bd04-4af2-9480-8de135ff4223\",\n \"leftValue\": \"={{ $json.href }}\",\n \"rightValue\": \"\",\n \"operator\": {\n \"type\": \"string\",\n \"operation\": \"exists\",\n \"singleValue\": true\n }\n }\n ],\n \"combinator\": \"and\"\n },\n \"options\": {}\n },\n \"id\": \"35c8323a-5350-403a-9c2d-114b0527e395\",\n \"name\": \"Filter out empty hrefs\",\n \"type\": \"n8n-nodes-base.filter\",\n \"typeVersion\": 2,\n \"position\": [\n 3500,\n 740\n ]\n },\n {\n \"parameters\": {\n \"assignments\": {\n \"assignments\": [\n {\n \"id\": \"253c2b17-c749-4f0a-93e8-5ff74f1ce49b\",\n \"name\": \"domain\",\n \"value\": \"={{ $json.query }}\",\n \"type\": \"string\"\n }\n ]\n },\n \"options\": {}\n },\n \"id\": \"d9f6a148-6c8c-4a58-89f5-4e9cfcd8d910\",\n \"name\": \"Set domain (URL)\",\n \"type\": \"n8n-nodes-base.set\",\n \"typeVersion\": 3.3,\n \"position\": [\n 2400,\n 740\n ]\n },\n {\n \"parameters\": {\n \"assignments\": {\n \"assignments\": [\n {\n \"id\": \"ed0f1505-82b6-4393-a0d8-088055137ec9\",\n \"name\": \"domain\",\n \"value\": \"={{ $json.domain.startsWith(\\\"http\\\") ? $json.domain : \\\"http://\\\" + $json.domain }}\",\n \"type\": \"string\"\n }\n ]\n },\n \"options\": {}\n },\n \"id\": \"1f974444-da58-4a47-a9c3-ba3091fc1e96\",\n \"name\": \"Add protocool to domain (URL)\",\n \"type\": \"n8n-nodes-base.set\",\n \"typeVersion\": 3.3,\n \"position\": [\n 2620,\n 740\n ]\n },\n {\n \"parameters\": {\n \"url\": \"={{ $json.domain }}\",\n \"options\": {}\n },\n \"id\": \"31d7c7d4-8f61-402b-858d-63dd68ac69ee\",\n \"name\": \"Get website (URL)\",\n \"type\": \"n8n-nodes-base.httpRequest\",\n \"typeVersion\": 4.2,\n \"position\": [\n 2840,\n 740\n ]\n },\n {\n \"parameters\": {\n \"assignments\": {\n \"assignments\": [\n {\n \"id\": \"53c1c016-7983-4eba-a91d-da2a0523d805\",\n \"name\": \"response\",\n \"value\": \"={{ JSON.stringify($json.data) }}\",\n \"type\": \"string\"\n }\n ]\n },\n \"options\": {}\n },\n \"id\": \"f4b6df77-96be-4b12-9a8b-ae9b7009f13d\",\n \"name\": \"Set response (URL)\",\n \"type\": \"n8n-nodes-base.set\",\n \"typeVersion\": 3.3,\n \"position\": [\n 4600,\n 740\n ]\n }\n ],\n \"connections\": {\n \"Execute workflow\": {\n \"main\": [\n [\n {\n \"node\": \"Set domain (URL)\",\n \"type\": \"main\",\n \"index\": 0\n }\n ]\n ]\n },\n \"Retrieve URLs\": {\n \"main\": [\n [\n {\n \"node\": \"Split out URLs\",\n \"type\": \"main\",\n \"index\": 0\n }\n ]\n ]\n },\n \"Split out URLs\": {\n \"main\": [\n [\n {\n \"node\": \"Filter out empty hrefs\",\n \"type\": \"main\",\n \"index\": 0\n }\n ]\n ]\n },\n \"Remove duplicated\": {\n \"main\": [\n [\n {\n \"node\": \"Set domain to path\",\n \"type\": \"main\",\n \"index\": 0\n }\n ]\n ]\n },\n \"Set domain to path\": {\n \"main\": [\n [\n {\n \"node\": \"Filter out invalid URLs\",\n \"type\": \"main\",\n \"index\": 0\n }\n ]\n ]\n },\n \"Filter out invalid URLs\": {\n \"main\": [\n [\n {\n \"node\": \"Aggregate URLs\",\n \"type\": \"main\",\n \"index\": 0\n }\n ]\n ]\n },\n \"Aggregate URLs\": {\n \"main\": [\n [\n {\n \"node\": \"Set response (URL)\",\n \"type\": \"main\",\n \"index\": 0\n }\n ]\n ]\n },\n \"Filter out empty hrefs\": {\n \"main\": [\n [\n {\n \"node\": \"Remove duplicated\",\n \"type\": \"main\",\n \"index\": 0\n }\n ]\n ]\n },\n \"Set domain (URL)\": {\n \"main\": [\n [\n {\n \"node\": \"Add protocool to domain (URL)\",\n \"type\": \"main\",\n \"index\": 0\n }\n ]\n ]\n },\n \"Add protocool to domain (URL)\": {\n \"main\": [\n [\n {\n \"node\": \"Get website (URL)\",\n \"type\": \"main\",\n \"index\": 0\n }\n ]\n ]\n },\n \"Get website (URL)\": {\n \"main\": [\n [\n {\n \"node\": \"Retrieve URLs\",\n \"type\": \"main\",\n \"index\": 0\n }\n ]\n ]\n }\n },\n \"pinData\": {}\n}", "requestOptions": {}}, "typeVersion": 1.1}, {"id": "725dc9d9-dc10-4895-aedb-93ecd7494d76", "name": "OpenAI Chat Model", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [1300, 980], "parameters": {"model": "gpt-4o", "options": {"temperature": 0, "responseFormat": "json_object"}, "requestOptions": {}}, "credentials": {"openAiApi": {"id": "Qp9mop4DylpfqiTH", "name": "OpenAI (avirago@avirago.pl)"}}, "typeVersion": 1}, {"id": "2b9aa18b-e72e-486a-b307-db50e408842b", "name": "JSON Parser", "type": "@n8n/n8n-nodes-langchain.outputParserStructured", "position": [1800, 980], "parameters": {"schemaType": "manual", "inputSchema": "{\n \"type\": \"object\",\n \"properties\": {\n \"social_media\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"platform\": {\n \"type\": \"string\",\n \"description\": \"The name of the social media platform (e.g., LinkedIn, Instagram)\"\n },\n \"urls\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\",\n \"format\": \"uri\",\n \"description\": \"A URL for the social media platform\"\n }\n }\n },\n \"required\": [\"platform\", \"urls\"],\n \"additionalProperties\": false\n }\n }\n },\n \"required\": [\"platforms\"],\n \"additionalProperties\": false\n}\n", "requestOptions": {}}, "typeVersion": 1.2}, {"id": "87dcfe83-01f3-439c-8175-7da3d96391b4", "name": "Map company name and website", "type": "n8n-nodes-base.set", "position": [1400, 300], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "ae484e44-36bc-4d88-9772-545e579a261c", "name": "company_name", "type": "string", "value": "={{ $json.name }}"}, {"id": "c426ab19-649c-4443-aabb-eb0826680452", "name": "company_website", "type": "string", "value": "={{ $json.website }}"}]}}, "typeVersion": 3.3}, {"id": "a904bd16-b470-4c98-ac05-50bbc09bf24b", "name": "Execute workflow", "type": "n8n-nodes-base.manualTrigger", "position": [540, 620], "parameters": {}, "typeVersion": 1}, {"id": "a9801b62-a691-457c-a52f-ac0d68c8e8b3", "name": "Get companies", "type": "n8n-nodes-base.supabase", "position": [780, 620], "parameters": {"tableId": "companies_input", "operation": "getAll"}, "credentials": {"supabaseApi": {"id": "TZeFGe5qO3z7X5Zk", "name": "Supabase (workfloows@gmail.com)"}}, "typeVersion": 1}, {"id": "40d8fe8a-2975-4ea5-b6ac-46e19d158eea", "name": "Select company name and website", "type": "n8n-nodes-base.set", "position": [1040, 620], "parameters": {"include": "selected", "options": {}, "assignments": {"assignments": []}, "includeFields": "name,website", "includeOtherFields": true}, "typeVersion": 3.3}, {"id": "20aa3aea-f1f6-435c-a511-d4e8db047c6d", "name": "Set social media array", "type": "n8n-nodes-base.set", "position": [1800, 720], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "a6e109b7-9333-44e8-aa13-590aeb91a56b", "name": "social_media", "type": "array", "value": "={{ $json.output.social_media }}"}]}}, "typeVersion": 3.3}, {"id": "53f64ebf-8d9f-4718-9a33-aaae06e9cf9a", "name": "Merge all data", "type": "n8n-nodes-base.merge", "position": [2040, 620], "parameters": {"mode": "combine", "options": {}, "combinationMode": "mergeByPosition"}, "typeVersion": 2.1}, {"id": "e38e590e-cc1c-485f-b6c4-e7631f1c8381", "name": "Insert new row", "type": "n8n-nodes-base.supabase", "position": [2260, 620], "parameters": {"tableId": "companies_output", "dataToSend": "autoMapInputData"}, "credentials": {"supabaseApi": {"id": "TZeFGe5qO3z7X5Zk", "name": "Supabase (workfloows@gmail.com)"}}, "typeVersion": 1}, {"id": "aac08494-b324-4307-a5c5-5d5345cc9070", "name": "Convert HTML to Markdown", "type": "n8n-nodes-base.markdown", "position": [2100, 1314], "parameters": {"html": "={{ $json.data }}", "options": {"ignore": "a,img"}}, "typeVersion": 1}, {"id": "ca6733cb-973f-4e7b-9d52-48f1af2e08e3", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [1420, 940], "parameters": {"color": 5, "width": 157.8125, "height": 166.55000000000004, "content": ""}, "typeVersion": 1}, {"id": "4acd71c9-9e31-43fc-bda6-66d6a057306b", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [1600, 940], "parameters": {"color": 4, "width": 157.8125, "height": 166.55000000000004, "content": ""}, "typeVersion": 1}, {"id": "359adcd6-6bb9-4d64-8dde-6a45b0439fd6", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [1420, 1180], "parameters": {"color": 5, "width": 1117.5005339977713, "height": 329.45390772033636, "content": "### Text scraper tool\nThis tool is designed to return all text from the given webpage.\n\n\ud83d\udca1 **Consider adding proxy for better crawling accuracy.**\n"}, "typeVersion": 1}, {"id": "84133903-dcec-4c0c-8684-fdeb49f5702d", "name": "Retrieve URLs", "type": "n8n-nodes-base.html", "position": [2120, 1700], "parameters": {"options": {}, "operation": "extractHtmlContent", "extractionValues": {"values": [{"key": "output", "cssSelector": "a", "returnArray": true, "returnValue": "attribute"}]}}, "typeVersion": 1.2}, {"id": "2ebffed6-5517-47ff-9fcd-5ce503aa3b63", "name": "Split out URLs", "type": "n8n-nodes-base.splitOut", "position": [2340, 1700], "parameters": {"options": {}, "fieldToSplitOut": "output"}, "typeVersion": 1}, {"id": "215da9b2-0c0d-4d0e-b5f9-9887be75b0c4", "name": "Remove duplicated", "type": "n8n-nodes-base.removeDuplicates", "position": [2780, 1700], "parameters": {"compare": "selectedFields", "options": {}, "fieldsToCompare": "href"}, "typeVersion": 1}, {"id": "55825a1c-9351-413c-858a-c44cd3078f11", "name": "Set domain to path", "type": "n8n-nodes-base.set", "position": [3000, 1700], "parameters": {"include": "selected", "options": {}, "assignments": {"assignments": [{"id": "04ced063-09f0-496c-9b28-b8095f9e2297", "name": "href", "type": "string", "value": "={{ $json.href.startsWith(\"/\") ? $('Add protocool to domain (URL)').item.json[\"domain\"] + $json.href : $json.href }}"}]}, "includeFields": "title", "includeOtherFields": true}, "typeVersion": 3.3}, {"id": "57858d59-2727-4291-9dc6-238101de25ea", "name": "Filter out invalid URLs", "type": "n8n-nodes-base.filter", "position": [3220, 1700], "parameters": {"options": {}, "conditions": {"options": {"leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "d01ea6a8-7e75-40d4-98f2-25d42b245f36", "operator": {"type": "boolean", "operation": "true", "singleValue": true}, "leftValue": "={{ $json.href.isUrl() }}", "rightValue": ""}]}}, "typeVersion": 2}, {"id": "0e487a35-8a6c-48f7-9048-fe66a5a346e8", "name": "Aggregate URLs", "type": "n8n-nodes-base.aggregate", "position": [3440, 1700], "parameters": {"include": "specifiedFields", "options": {}, "aggregate": "aggregateAllItemData", "fieldsToInclude": "title,href"}, "typeVersion": 1}, {"id": "0062af28-8727-4ed4-b283-e250146c2085", "name": "Filter out empty hrefs", "type": "n8n-nodes-base.filter", "position": [2560, 1700], "parameters": {"options": {}, "conditions": {"options": {"leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "5b9b7353-bd04-4af2-9480-8de135ff4223", "operator": {"type": "string", "operation": "exists", "singleValue": true}, "leftValue": "={{ $json.href }}", "rightValue": ""}]}}, "typeVersion": 2}, {"id": "995e04f2-f5e3-48b8-879e-913f3a9fb657", "name": "Set domain (text)", "type": "n8n-nodes-base.set", "position": [1460, 1314], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "253c2b17-c749-4f0a-93e8-5ff74f1ce49b", "name": "domain", "type": "string", "value": "={{ $json.query }}"}]}}, "typeVersion": 3.3}, {"id": "c88f1008-00f8-4285-b595-a936e1f925a5", "name": "Add protocool to domain (text)", "type": "n8n-nodes-base.set", "position": [1660, 1314], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "ed0f1505-82b6-4393-a0d8-088055137ec9", "name": "domain", "type": "string", "value": "={{ $json.domain.startsWith(\"http\") ? $json.domain : \"http://\" + $json.domain }}"}]}}, "typeVersion": 3.3}, {"id": "3bc68a89-8bab-423a-b4bf-4739739aeb07", "name": "Get website (text)", "type": "n8n-nodes-base.httpRequest", "position": [1880, 1314], "parameters": {"url": "={{ $json.domain }}", "options": {}}, "typeVersion": 4.2}, {"id": "9d4782c3-872b-4e3c-9f8c-02cfea7a8ff2", "name": "Set response (text)", "type": "n8n-nodes-base.set", "position": [2320, 1314], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "2b1c7ff8-06a7-448b-99b7-5ede4b2e0bf0", "name": "response", "type": "string", "value": "={{ $json.data }}"}]}}, "typeVersion": 3.3}, {"id": "2b6ffbd9-892d-4246-b47c-86ad51362ac9", "name": "Set domain (URL)", "type": "n8n-nodes-base.set", "position": [1460, 1700], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "253c2b17-c749-4f0a-93e8-5ff74f1ce49b", "name": "domain", "type": "string", "value": "={{ $json.query }}"}]}}, "typeVersion": 3.3}, {"id": "2477677e-262e-45a3-99c3-06607b5ae270", "name": "Get website (URL)", "type": "n8n-nodes-base.httpRequest", "position": [1900, 1700], "parameters": {"url": "={{ $json.domain }}", "options": {}}, "typeVersion": 4.2}, {"id": "4f84eb31-7ad4-4b10-8043-b474fc7f367a", "name": "Set response (URL)", "type": "n8n-nodes-base.set", "position": [3660, 1700], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "53c1c016-7983-4eba-a91d-da2a0523d805", "name": "response", "type": "string", "value": "={{ JSON.stringify($json.data) }}"}]}}, "typeVersion": 3.3}, {"id": "2d2288dd-2ab5-41a1-984c-ff7c5bbab8d1", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [1420, 1560], "parameters": {"color": 4, "width": 2467.2678721043376, "height": 328.79842054012374, "content": "### URL scraper tool\nThis tool is designed to return all links (URLs) from the given webpage.\n\n\ud83d\udca1 **Consider adding proxy for better crawling accuracy.**"}, "typeVersion": 1}, {"id": "61c1b30f-38e5-44a5-a8be-edd4df1b13e5", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [720, 400], "parameters": {"width": 221.7729148148145, "height": 400.16865185185225, "content": "### Get companies from database\nRetrieve names and websites of companies from Supabase table to process crawling.\n\n\ud83d\udca1 **You can replace Supabase with other database of your choice.**"}, "typeVersion": 1}, {"id": "b6c6643a-4450-4576-b9c3-e28bc9ebed5d", "name": "Sticky Note5", "type": "n8n-nodes-base.stickyNote", "position": [980, 429.32034814814835], "parameters": {"width": 221.7729148148145, "height": 370.14757037037066, "content": "### Set parameters for execution\nPass only `name` and `website` values from database. \n\n\u26a0\ufe0f **If you use other field namings, update this node.**"}, "typeVersion": 1}, {"id": "52196e71-c2c2-4ec9-91ab-f7ebc9874d6c", "name": "Sticky Note6", "type": "n8n-nodes-base.stickyNote", "position": [1360, 536.6201859111013], "parameters": {"width": 339.7128777777775, "height": 328.4957622370491, "content": "### Crawling agent (retrieve social media profile links)\nCrawl website to extract social media profile links and return them in unified JSON format.\n\n\ud83d\udca1 **You can change type of retrieved data by editing prompt and parser schema.**"}, "typeVersion": 1}, {"id": "ea11931b-c1c7-43c4-a728-f10479863e38", "name": "Sticky Note7", "type": "n8n-nodes-base.stickyNote", "position": [2200, 435.3819888888892], "parameters": {"width": 221.7729148148145, "height": 364.786662962963, "content": "### Insert data to database\nAdd new rows in database table with extracted data.\n\n\ud83d\udca1 **You can replace Supabase with other database of your choice.**"}, "typeVersion": 1}, {"id": "bc3d3337-a5b9-45ec-bb73-810cea9c0e73", "name": "Add protocool to domain (URL)", "type": "n8n-nodes-base.set", "position": [1680, 1700], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "ed0f1505-82b6-4393-a0d8-088055137ec9", "name": "domain", "type": "string", "value": "={{ $json.domain.startsWith(\"http\") ? $json.domain : \"http://\" + $json.domain }}"}]}}, "typeVersion": 3.3}, {"id": "db91703c-0133-4030-a9b5-fc3ab4331784", "name": "Sticky Note8", "type": "n8n-nodes-base.stickyNote", "position": [0, 660], "parameters": {"color": 3, "width": 369.60264559047334, "height": 256.26672065702303, "content": "## \u26a0\ufe0f Note\n\n1. Complete video guide for this workflow is available [on my YouTube](https://youtu.be/2W09puFZwtY). \n2. Remember to add your credentials and configure nodes.\n3. If you like this workflow, please subscribe to [my YouTube channel](https://www.youtube.com/@workfloows) and/or [my newsletter](https://workfloows.com/).\n\n**Thank you for your support!**"}, "typeVersion": 1}, {"id": "54530733-f8dc-44c7-a645-6f279e9a2c21", "name": "Sticky Note9", "type": "n8n-nodes-base.stickyNote", "position": [0, 420], "parameters": {"color": 7, "width": 369.93062670813185, "height": 212.09880341753203, "content": "## Autonomous AI crawler\nThis workflow autonomously navigates through given websites and retrieves social media profile links. \n\n\ud83d\udca1 **You can modify this workflow to retrieve other type of data (e.g. contact details or company profile summary).**"}, "typeVersion": 1}, {"id": "b43aee3c-47b5-47fd-89c4-7d213b26b4ca", "name": "Crawl website", "type": "@n8n/n8n-nodes-langchain.agent", "position": [1400, 720], "parameters": {"text": "=Retrieve social media profile URLs from this website: {{ $json.website }}", "options": {"systemMessage": "You are an automated web crawler tasked with extracting social media URLs from a webpage provided by the user. You have access to a text retrieval tool to gather all text content from the page and a URL retrieval tool to identify and navigate through links on the page. Utilize the URLs retrieved to crawl additional pages. Your objective is to provide a unified JSON output containing the extracted data (links to all possible social media profiles from the website)."}, "promptType": "define", "hasOutputParser": true}, "retryOnFail": true, "typeVersion": 1.6}]
{"Text": {"ai_tool": [[{"node": "Crawl website", "type": "ai_tool", "index": 0}]]}, "URLs": {"ai_tool": [[{"node": "Crawl website", "type": "ai_tool", "index": 0}]]}, "JSON Parser": {"ai_outputParser": [[{"node": "Crawl website", "type": "ai_outputParser", "index": 0}]]}, "Crawl website": {"main": [[{"node": "Set social media array", "type": "main", "index": 0}]]}, "Get companies": {"main": [[{"node": "Select company name and website", "type": "main", "index": 0}]]}, "Retrieve URLs": {"main": [[{"node": "Split out URLs", "type": "main", "index": 0}]]}, "Aggregate URLs": {"main": [[{"node": "Set response (URL)", "type": "main", "index": 0}]]}, "Merge all data": {"main": [[{"node": "Insert new row", "type": "main", "index": 0}]]}, "Split out URLs": {"main": [[{"node": "Filter out empty hrefs", "type": "main", "index": 0}]]}, "Execute workflow": {"main": [[{"node": "Get companies", "type": "main", "index": 0}]]}, "Set domain (URL)": {"main": [[{"node": "Add protocool to domain (URL)", "type": "main", "index": 0}]]}, "Get website (URL)": {"main": [[{"node": "Retrieve URLs", "type": "main", "index": 0}]]}, "OpenAI Chat Model": {"ai_languageModel": [[{"node": "Crawl website", "type": "ai_languageModel", "index": 0}]]}, "Remove duplicated": {"main": [[{"node": "Set domain to path", "type": "main", "index": 0}]]}, "Set domain (text)": {"main": [[{"node": "Add protocool to domain (text)", "type": "main", "index": 0}]]}, "Get website (text)": {"main": [[{"node": "Convert HTML to Markdown", "type": "main", "index": 0}]]}, "Set domain to path": {"main": [[{"node": "Filter out invalid URLs", "type": "main", "index": 0}]]}, "Filter out empty hrefs": {"main": [[{"node": "Remove duplicated", "type": "main", "index": 0}]]}, "Set social media array": {"main": [[{"node": "Merge all data", "type": "main", "index": 1}]]}, "Filter out invalid URLs": {"main": [[{"node": "Aggregate URLs", "type": "main", "index": 0}]]}, "Convert HTML to Markdown": {"main": [[{"node": "Set response (text)", "type": "main", "index": 0}]]}, "Map company name and website": {"main": [[{"node": "Merge all data", "type": "main", "index": 0}]]}, "Add protocool to domain (URL)": {"main": [[{"node": "Get website (URL)", "type": "main", "index": 0}]]}, "Add protocool to domain (text)": {"main": [[{"node": "Get website (text)", "type": "main", "index": 0}]]}, "Select company name and website": {"main": [[{"node": "Crawl website", "type": "main", "index": 0}, {"node": "Map company name and website", "type": "main", "index": 0}]]}}
Detect hallucinations using specialised Ollama model bespoke-minicheck
[{"id": "cbc036f7-b0e1-4eb4-94c3-7571c67a1efe", "name": "Code", "type": "n8n-nodes-base.code", "position": [-120, 40], "parameters": {"mode": "runOnceForEachItem", "jsCode": "// Get the input text\nconst text = $input.item.json.text;\n\n// Ensure text is not null or undefined\nif (!text) {\n throw new Error('Input text is empty');\n}\n\n// Function to split text into sentences while preserving dates and list items\nfunction splitIntoSentences(text) {\n const monthNames = '(?:Januar|Februar|M\u00e4rz|April|Mai|Juni|Juli|August|September|Oktober|November|Dezember)';\n const datePattern = `(?:\\\\d{1,2}\\\\.\\\\s*(?:${monthNames}|\\\\d{1,2}\\\\.)\\\\s*\\\\d{2,4})`;\n \n // Split by sentence-ending punctuation, but not within dates or list items\n const regex = new RegExp(`(?<=[.!?])\\\\s+(?=[A-Z\u00c4\u00d6\u00dc]|$)(?!${datePattern}|\\\\s*[-\u2022]\\\\s)`, 'g');\n \n return text.split(regex)\n .map(sentence => sentence.trim())\n .filter(sentence => sentence !== '');\n}\n\n// Split the text into sentences\nconst sentences = splitIntoSentences(text);\n\n// Output a single object with an array of sentences\nreturn { json: { sentences: sentences } };"}, "typeVersion": 2}, {"id": "faae4740-a529-4275-be0e-b079c3bfde58", "name": "Split Out1", "type": "n8n-nodes-base.splitOut", "position": [340, -180], "parameters": {"options": {"destinationFieldName": "claim"}, "fieldToSplitOut": "sentences"}, "typeVersion": 1}, {"id": "c3944f89-e267-4df0-8fc4-9281eac4e759", "name": "Basic LLM Chain4", "type": "@n8n/n8n-nodes-langchain.chainLlm", "position": [640, -40], "parameters": {"text": "=Document: {{ $('Merge1').item.json.facts }}\nClaim: {{ $json.claim }}", "promptType": "define"}, "typeVersion": 1.5}, {"id": "4e53c7f1-ab9f-42be-a253-9328b209fc68", "name": "Ollama Chat Model", "type": "@n8n/n8n-nodes-langchain.lmChatOllama", "position": [700, 160], "parameters": {"model": "bespoke-minicheck:latest", "options": {}}, "credentials": {"ollamaApi": {"id": "DeuK54dDNrCCnXHl", "name": "Ollama account"}}, "typeVersion": 1}, {"id": "0252e47e-0e50-4024-92a0-74b554c8cbd1", "name": "When clicking \u2018Test workflow\u2019", "type": "n8n-nodes-base.manualTrigger", "position": [-760, 40], "parameters": {}, "typeVersion": 1}, {"id": "8dd3f67c-e36f-4b03-8f9f-9b52ea23e0ed", "name": "Edit Fields", "type": "n8n-nodes-base.set", "position": [-460, 40], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "55748f38-486f-495f-91ec-02c1d49acf18", "name": "facts", "type": "string", "value": "Sara Beery came to MIT as an assistant professor in MIT\u2019s Department of Electrical Engineering and Computer Science (EECS) eager to focus on ecological challenges. She has fashioned her research career around the opportunity to apply her expertise in computer vision, machine learning, and data science to tackle real-world issues in conservation and sustainability. Beery was drawn to the Institute\u2019s commitment to \u201ccomputing for the planet,\u201d and set out to bring her methods to global-scale environmental and biodiversity monitoring.\n\nIn the Pacific Northwest, salmon have a disproportionate impact on the health of their ecosystems, and their complex reproductive needs have attracted Beery\u2019s attention. Each year, millions of salmon embark on a migration to spawn. Their journey begins in freshwater stream beds where the eggs hatch. Young salmon fry (newly hatched salmon) make their way to the ocean, where they spend several years maturing to adulthood. As adults, the salmon return to the streams where they were born in order to spawn, ensuring the continuation of their species by depositing their eggs in the gravel of the stream beds. Both male and female salmon die shortly after supplying the river habitat with the next generation of salmon."}, {"id": "7d8e29db-4a4b-47c5-8c93-fda1e72137a7", "name": "text", "type": "string", "value": "MIT's AI Pioneer Tackles Salmon Conservation Professor Sara Beery, a rising star in MIT's Department of Electrical Engineering and Computer Science, is revolutionizing ecological conservation through cutting-edge technology. Specializing in computer vision, machine learning, and data science, Beery has set her sights on addressing real-world sustainability challenges. Her current focus? The vital salmon populations of the Pacific Northwest. These fish play a crucial role in their ecosystems, with their complex life cycle spanning from freshwater streams to the open ocean and back again. Beery's innovative approach uses AI to monitor salmon migration patterns, providing unprecedented insights into their behavior and habitat needs. Beery's work has led to the development of underwater AI cameras that can distinguish between different salmon species with 99.9% accuracy. Her team has also created a revolutionary \"salmon translator\" that can predict spawning locations based on fish vocalizations. As climate change threatens these delicate ecosystems, Beery's research offers hope for more effective conservation strategies. By harnessing the power of technology, she's not just studying nature \u2013 she's actively working to preserve it for future generations."}]}}, "typeVersion": 3.4}, {"id": "25849b47-1550-464c-9e70-e787712e5765", "name": "Merge", "type": "n8n-nodes-base.merge", "position": [1120, -160], "parameters": {"mode": "combine", "options": {}, "combineBy": "combineByPosition"}, "typeVersion": 3}, {"id": "eaea7ef4-a5d5-42b8-b262-e9a4bd6b7281", "name": "Filter", "type": "n8n-nodes-base.filter", "position": [1340, -160], "parameters": {"options": {}, "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "20a4ffd6-0dd0-44f9-97bc-7d891f689f4d", "operator": {"name": "filter.operator.equals", "type": "string", "operation": "equals"}, "leftValue": "={{ $json.text }}", "rightValue": "No"}]}}, "typeVersion": 2.2}, {"id": "9f074bdb-b1a6-4c36-be1c-203f78092657", "name": "When Executed by Another Workflow", "type": "n8n-nodes-base.executeWorkflowTrigger", "position": [-760, -200], "parameters": {"workflowInputs": {"values": [{"name": "facts"}, {"name": "text"}]}}, "typeVersion": 1.1}, {"id": "0a08ac40-b497-4f6e-ac2c-2213a00d63f2", "name": "Aggregate", "type": "n8n-nodes-base.aggregate", "position": [1560, -160], "parameters": {"options": {}, "aggregate": "aggregateAllItemData"}, "typeVersion": 1}, {"id": "b0d79886-01fc-43c7-88fe-a7a5b8b56b35", "name": "Merge1", "type": "n8n-nodes-base.merge", "position": [80, -180], "parameters": {"mode": "combine", "options": {}, "combineBy": "combineByPosition"}, "typeVersion": 3}, {"id": "82640408-9db4-4a12-9136-1a22985b609b", "name": "Basic LLM Chain", "type": "@n8n/n8n-nodes-langchain.chainLlm", "position": [1780, -160], "parameters": {"text": "={{ $json.data }}", "messages": {"messageValues": [{"message": "You are a fact-checking assistant. Your task is to analyze a list of statements, each accompanied by a \"yes\" or \"no\" indicating whether the statement is correct. Follow these guidelines:\n\n1. Review Process:\n a) Carefully read through each statement and its corresponding yes/no answer.\n b) Identify which statements are marked as incorrect (no).\n c) Ignore chit-chat sentences or statements that don't contain factual information.\n d) Count the total number of incorrect factual statements.\n\n2. Statement Classification:\n - Factual Statements: Contains specific information, data, or claims that can be verified.\n - Chit-chat/Non-factual: General comments, introductions, or transitions that don't present verifiable facts.\n\n3. Summary Structure:\n a) Overview: Provide a brief summary of the number of factual errors found.\n b) List of Problems: Enumerate the incorrect factual statements.\n c) Final Assessment: Offer a concise evaluation of the overall state of the article's factual accuracy.\n\n4. Prioritization:\n - Focus only on the factual statements marked as incorrect (no).\n - Ignore statements marked as correct (yes) and non-factual chit-chat.\n\n5. Feedback Tone:\n - Maintain a neutral and objective tone.\n - Present the information factually without additional commentary.\n\n6. Output Format:\n Present your summary in the following structure:\n\n ## Problem Summary\n [Number] incorrect factual statements were identified in the article.\n\n ## List of Incorrect Factual Statements\n 1. [First incorrect factual statement]\n 2. [Second incorrect factual statement]\n 3. [Third incorrect factual statement]\n (Continue listing all incorrect factual statements)\n\n ## Final Assessment\n Based on the number of incorrect factual statements:\n - If 0-1 errors: The article appears to be highly accurate and may only need minor factual adjustments.\n - If 2-3 errors: The article requires some revision to address these factual inaccuracies.\n - If 4 or more errors: The article needs significant revision to improve its factual accuracy.\n\nRemember, your role is to provide a clear, concise summary of the incorrect factual statements to help the writing team quickly understand what needs to be addressed. Ignore any chit-chat or non-factual statements in your analysis and summary."}]}, "promptType": "define"}, "typeVersion": 1.5}, {"id": "719054ef-0863-4e52-8390-23313c750aac", "name": "Ollama Model", "type": "@n8n/n8n-nodes-langchain.lmOllama", "position": [1880, 60], "parameters": {"model": "qwen2.5:1.5b", "options": {}}, "credentials": {"ollamaApi": {"id": "DeuK54dDNrCCnXHl", "name": "Ollama account"}}, "typeVersion": 1}, {"id": "6595eb25-32ce-49f5-a013-b87d7f3c65d3", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [1480, -320], "parameters": {"width": 860, "height": 600, "content": "## Build a summary\n\nThis is useful to run it in an agentic workflow. You may remove the summary part and return the raw array with the found issues."}, "typeVersion": 1}, {"id": "9f6cde97-d2a7-44e4-b715-321ec1e68bd3", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [-240, -320], "parameters": {"width": 760, "height": 600, "content": "## Split into sentences"}, "typeVersion": 1}, {"id": "1ceb8f3c-c00b-4496-82b2-20578550c4be", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [540, -320], "parameters": {"width": 920, "height": 600, "content": "## Fact checking\n\nThis use a small ollama model that is specialized on that task: https://ollama.com/library/bespoke-minicheck\n\nYou have to install it before use with `ollama pull bespoke-minicheck`."}, "typeVersion": 1}, {"id": "6e340925-d4e5-4fe1-ba9d-a89a23b68226", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [-860, -20], "parameters": {"width": 600, "height": 300, "content": "## Test workflow\n"}, "typeVersion": 1}, {"id": "5561d606-93d2-4887-839d-8ce2230ff30c", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [-860, -320], "parameters": {"width": 600, "height": 280, "content": "## Entrypoint to use in other workflows\n"}, "typeVersion": 1}]
{"Code": {"main": [[{"node": "Merge1", "type": "main", "index": 1}]]}, "Merge": {"main": [[{"node": "Filter", "type": "main", "index": 0}]]}, "Filter": {"main": [[{"node": "Aggregate", "type": "main", "index": 0}]]}, "Merge1": {"main": [[{"node": "Split Out1", "type": "main", "index": 0}]]}, "Aggregate": {"main": [[{"node": "Basic LLM Chain", "type": "main", "index": 0}]]}, "Split Out1": {"main": [[{"node": "Merge", "type": "main", "index": 0}, {"node": "Basic LLM Chain4", "type": "main", "index": 0}]]}, "Edit Fields": {"main": [[{"node": "Code", "type": "main", "index": 0}, {"node": "Merge1", "type": "main", "index": 0}]]}, "Ollama Model": {"ai_languageModel": [[{"node": "Basic LLM Chain", "type": "ai_languageModel", "index": 0}]]}, "Basic LLM Chain4": {"main": [[{"node": "Merge", "type": "main", "index": 1}]]}, "Ollama Chat Model": {"ai_languageModel": [[{"node": "Basic LLM Chain4", "type": "ai_languageModel", "index": 0}]]}, "When Executed by Another Workflow": {"main": [[{"node": "Code", "type": "main", "index": 0}, {"node": "Merge1", "type": "main", "index": 0}]]}, "When clicking \u2018Test workflow\u2019": {"main": [[{"node": "Edit Fields", "type": "main", "index": 0}]]}}
Build Your Own Image Search Using AI Object Detection, CDN and ElasticSearchBuild Your Own Image Search Using AI Object Detection, CDN and ElasticSearch
[{"id": "6359f725-1ede-4b05-bc19-05a7e85c0865", "name": "When clicking \"Test workflow\"", "type": "n8n-nodes-base.manualTrigger", "position": [680, 292], "parameters": {}, "typeVersion": 1}, {"id": "9e1e61c7-f5fd-4e8a-99a6-ccc5a24f5528", "name": "Fetch Source Image", "type": "n8n-nodes-base.httpRequest", "position": [1000, 292], "parameters": {"url": "={{ $json.source_image }}", "options": {}}, "typeVersion": 4.2}, {"id": "9b1b94cf-3a7d-4c43-ab6c-8df9824b5667", "name": "Split Out Results Only", "type": "n8n-nodes-base.splitOut", "position": [1428, 323], "parameters": {"options": {}, "fieldToSplitOut": "result"}, "typeVersion": 1}, {"id": "fcbaf6c3-2aee-4ea1-9c5e-2833dd7a9f50", "name": "Filter Score >= 0.9", "type": "n8n-nodes-base.filter", "position": [1608, 323], "parameters": {"options": {}, "conditions": {"options": {"leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "367d83ef-8ecf-41fe-858c-9bfd78b0ae9f", "operator": {"type": "number", "operation": "gte"}, "leftValue": "={{ $json.score }}", "rightValue": 0.9}]}}, "typeVersion": 2}, {"id": "954ce7b0-ef82-4203-8706-17cfa5e5e3ff", "name": "Crop Object From Image", "type": "n8n-nodes-base.editImage", "position": [2080, 432], "parameters": {"width": "={{ $json.box.xmax - $json.box.xmin }}", "height": "={{ $json.box.ymax - $json.box.ymin }}", "options": {"format": "jpeg", "fileName": "={{ $binary.data.fileName.split('.')[0].urlEncode()+'-'+$json.label.urlEncode() + '-' + $itemIndex }}.jpg"}, "operation": "crop", "positionX": "={{ $json.box.xmin }}", "positionY": "={{ $json.box.ymin }}"}, "typeVersion": 1}, {"id": "40027456-4bf9-4eea-8d71-aa28e69b29e5", "name": "Set Variables", "type": "n8n-nodes-base.set", "position": [840, 292], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "9e95d951-8530-4a80-bd00-6bb55623a71f", "name": "CLOUDFLARE_ACCOUNT_ID", "type": "string", "value": ""}, {"id": "66807a90-63a1-4d4e-886e-e8abf3019a34", "name": "model", "type": "string", "value": "@cf/facebook/detr-resnet-50"}, {"id": "a13ccde6-e6e3-46f4-afa3-2134af7bc765", "name": "source_image", "type": "string", "value": "https://images.pexels.com/photos/2293367/pexels-photo-2293367.jpeg?auto=compress&cs=tinysrgb&w=600"}, {"id": "0734fc55-b414-47f7-8b3e-5c880243f3ed", "name": "elasticsearch_index", "type": "string", "value": "n8n-image-search"}]}}, "typeVersion": 3.3}, {"id": "c3d8c5e3-546e-472c-9e6e-091cf5cee3c3", "name": "Use Detr-Resnet-50 Object Classification", "type": "n8n-nodes-base.httpRequest", "position": [1248, 324], "parameters": {"url": "=https://api.cloudflare.com/client/v4/accounts/{{ $('Set Variables').item.json.CLOUDFLARE_ACCOUNT_ID }}/ai/run/{{ $('Set Variables').item.json.model }}", "method": "POST", "options": {}, "sendBody": true, "contentType": "binaryData", "authentication": "predefinedCredentialType", "inputDataFieldName": "data", "nodeCredentialType": "cloudflareApi"}, "credentials": {"cloudflareApi": {"id": "qOynkQdBH48ofOSS", "name": "Cloudflare account"}}, "typeVersion": 4.2}, {"id": "3c7aa2fc-9ca1-41ba-a10d-aa5930d45f18", "name": "Upload to Cloudinary", "type": "n8n-nodes-base.httpRequest", "position": [2380, 380], "parameters": {"url": "https://api.cloudinary.com/v1_1/daglih2g8/image/upload", "method": "POST", "options": {}, "sendBody": true, "sendQuery": true, "contentType": "multipart-form-data", "authentication": "genericCredentialType", "bodyParameters": {"parameters": [{"name": "file", "parameterType": "formBinaryData", "inputDataFieldName": "data"}]}, "genericAuthType": "httpQueryAuth", "queryParameters": {"parameters": [{"name": "upload_preset", "value": "n8n-workflows-preset"}]}}, "credentials": {"httpQueryAuth": {"id": "sT9jeKzZiLJ3bVPz", "name": "Cloudinary API"}}, "typeVersion": 4.2}, {"id": "3c4e1f04-a0ba-4cce-b82a-aa3eadc4e7e1", "name": "Create Docs In Elasticsearch", "type": "n8n-nodes-base.elasticsearch", "position": [2580, 380], "parameters": {"indexId": "={{ $('Set Variables').item.json.elasticsearch_index }}", "options": {}, "fieldsUi": {"fieldValues": [{"fieldId": "image_url", "fieldValue": "={{ $json.secure_url.replace('upload','upload/f_auto,q_auto') }}"}, {"fieldId": "source_image_url", "fieldValue": "={{ $('Set Variables').item.json.source_image }}"}, {"fieldId": "label", "fieldValue": "={{ $('Crop Object From Image').item.json.label }}"}, {"fieldId": "metadata", "fieldValue": "={{ JSON.stringify(Object.assign($('Crop Object From Image').item.json, { filename: $json.original_filename })) }}"}]}, "operation": "create", "additionalFields": {}}, "credentials": {"elasticsearchApi": {"id": "dRuuhAgS7AF0mw0S", "name": "Elasticsearch account"}}, "typeVersion": 1}, {"id": "292c9821-c123-44fa-9ba1-c37bf84079bc", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [620, 120], "parameters": {"color": 7, "width": 541.1455500767354, "height": 381.6388867600897, "content": "## 1. Get Source Image\n[Read more about setting variables for your workflow](https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.set)\n\nFor this demo, we'll manually define an image to process. In production however, this image can come from a variety of sources such as drives, webhooks and more."}, "typeVersion": 1}, {"id": "863271dc-fb9d-4211-972d-6b57336073b4", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [1180, 80], "parameters": {"color": 7, "width": 579.7748008857744, "height": 437.4680103498263, "content": "## 2. Use Detr-Resnet-50 Object Classification\n[Learn more about Cloudflare Workers AI](https://developers.cloudflare.com/workers-ai/)\n\nNot all AI workflows need an LLM! As in this example, we're using a non-LLM vision model to parse the source image and return what objects are contained within. The image search feature we're building will be based on the objects in the image making for a much more granular search via object association.\n\nWe'll use the Cloudflare Workers AI service which conveniently provides this model via API use."}, "typeVersion": 1}, {"id": "b73b45da-0436-4099-b538-c6b3b84822f2", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [1800, 260], "parameters": {"color": 7, "width": 466.35460775498495, "height": 371.9272151757119, "content": "## 3. Crop Objects Out of Source Image\n[Read more about Editing Images in n8n](https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.editimage)\n\nWith our objects identified by their bounding boxes, we can \"cut\" them out of the source image as separate images."}, "typeVersion": 1}, {"id": "465bd842-8a35-49d8-a9ff-c30d164620db", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [2300, 180], "parameters": {"color": 7, "width": 478.20345439832454, "height": 386.06196032653685, "content": "## 4. Index Object Images In ElasticSearch\n[Read more about using ElasticSearch](https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.elasticsearch)\n\nBy storing the newly created object images externally and indexing them in Elasticsearch, we now have a foundation for our Image Search service which queries by object association."}, "typeVersion": 1}, {"id": "6a04b4b5-7830-410d-9b5b-79acb0b1c78b", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [1800, -220], "parameters": {"color": 7, "width": 328.419768654291, "height": 462.65463700396174, "content": "Fig 1. Result of Classification\n![image of classification](https://res.cloudinary.com/daglih2g8/image/upload/f_auto,q_auto,w_300/v1/n8n-workflows/ywtzjcmqrypihci1npgh)"}, "typeVersion": 1}, {"id": "8f607951-ba41-4362-8323-e8b4b96ad122", "name": "Fetch Source Image Again", "type": "n8n-nodes-base.httpRequest", "position": [1880, 432], "parameters": {"url": "={{ $('Set Variables').item.json.source_image }}", "options": {}}, "typeVersion": 4.2}, {"id": "6933f67d-276b-4908-8602-654aa352a68b", "name": "Sticky Note8", "type": "n8n-nodes-base.stickyNote", "position": [220, 120], "parameters": {"width": 359.6648027457353, "height": 352.41026669883723, "content": "## Try It Out!\n### This workflow does the following:\n* Downloads an image\n* Uses an object classification AI model to identify objects in the image.\n* Crops the objects out from the original image into new image files.\n* Indexes the image's object in an Elasticsearch Database to enable image search.\n\n### Need Help?\nJoin the [Discord](https://discord.com/invite/XPKeKXeB7d) or ask in the [Forum](https://community.n8n.io/)!\n\nHappy Hacking!"}, "typeVersion": 1}, {"id": "35615ed5-43e8-43f0-95fe-1f95a1177d69", "name": "Sticky Note5", "type": "n8n-nodes-base.stickyNote", "position": [800, 280], "parameters": {"width": 172.9365918827757, "height": 291.6881468483679, "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\ud83d\udea8**Required**\n* Set your variables here first!"}, "typeVersion": 1}]
{"Set Variables": {"main": [[{"node": "Fetch Source Image", "type": "main", "index": 0}]]}, "Fetch Source Image": {"main": [[{"node": "Use Detr-Resnet-50 Object Classification", "type": "main", "index": 0}]]}, "Filter Score >= 0.9": {"main": [[{"node": "Fetch Source Image Again", "type": "main", "index": 0}]]}, "Upload to Cloudinary": {"main": [[{"node": "Create Docs In Elasticsearch", "type": "main", "index": 0}]]}, "Crop Object From Image": {"main": [[{"node": "Upload to Cloudinary", "type": "main", "index": 0}]]}, "Split Out Results Only": {"main": [[{"node": "Filter Score >= 0.9", "type": "main", "index": 0}]]}, "Fetch Source Image Again": {"main": [[{"node": "Crop Object From Image", "type": "main", "index": 0}]]}, "When clicking \"Test workflow\"": {"main": [[{"node": "Set Variables", "type": "main", "index": 0}]]}, "Use Detr-Resnet-50 Object Classification": {"main": [[{"node": "Split Out Results Only", "type": "main", "index": 0}]]}}
MicrosoftOutlook:Folder:create get getAll getChildren delete:Message send getAll get getMime update delete:FolderMessage:getAll:Draft:create update get delete send:MessageAttachment:add getAll get download
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "c8853916-a370-410c-8c96-fec280e24502"}, {"parameters": {"subject": "=Subject {{Date.now()}}", "bodyContent": "=Test {{(new Date).toUTCString()}}", "toRecipients": "node8qa@gmail.com", "additionalFields": {}}, "name": "Microsoft Outlook", "type": "n8n-nodes-base.microsoftOutlook", "typeVersion": 1, "position": [450, 300], "credentials": {"microsoftOutlookOAuth2Api": {"id": "72", "name": "Microsoft Outlook OAuth2 creds"}}, "id": "75eee31d-df00-4fe7-8c29-0dca953fcec5"}, {"parameters": {"operation": "getAll", "limit": 1, "additionalFields": {}}, "name": "Microsoft Outlook1", "type": "n8n-nodes-base.microsoftOutlook", "typeVersion": 1, "position": [750, 300], "credentials": {"microsoftOutlookOAuth2Api": {"id": "72", "name": "Microsoft Outlook OAuth2 creds"}}, "id": "7b0b82c4-5e02-4819-a2af-748eee795377"}, {"parameters": {"operation": "get", "messageId": "={{$node[\"Microsoft Outlook1\"].json[\"id\"]}}", "additionalFields": {}}, "name": "Microsoft Outlook2", "type": "n8n-nodes-base.microsoftOutlook", "typeVersion": 1, "position": [900, 300], "credentials": {"microsoftOutlookOAuth2Api": {"id": "72", "name": "Microsoft Outlook OAuth2 creds"}}, "id": "e11bc3e4-d5fc-496a-b601-939ea3edf709"}, {"parameters": {"operation": "getMime", "messageId": "={{$node[\"Microsoft Outlook1\"].json[\"id\"]}}"}, "name": "Microsoft Outlook3", "type": "n8n-nodes-base.microsoftOutlook", "typeVersion": 1, "position": [1200, 300], "credentials": {"microsoftOutlookOAuth2Api": {"id": "72", "name": "Microsoft Outlook OAuth2 creds"}}, "id": "4d18fe05-dc23-47f9-b0bf-776ea266ad94"}, {"parameters": {"operation": "update", "messageId": "={{$node[\"Microsoft Outlook2\"].json[\"id\"]}}", "updateFields": {"bodyContent": "=Updated{{$node[\"Microsoft Outlook2\"].json[\"body\"][\"content\"]}}"}}, "name": "Microsoft Outlook4", "type": "n8n-nodes-base.microsoftOutlook", "typeVersion": 1, "position": [1350, 300], "credentials": {"microsoftOutlookOAuth2Api": {"id": "72", "name": "Microsoft Outlook OAuth2 creds"}}, "id": "eba271aa-7a39-45c4-b74c-79be4d600f5e"}, {"parameters": {"operation": "delete", "messageId": "={{$node[\"Microsoft Outlook1\"].json[\"id\"]}}"}, "name": "Microsoft Outlook5", "type": "n8n-nodes-base.microsoftOutlook", "typeVersion": 1, "position": [1800, 300], "credentials": {"microsoftOutlookOAuth2Api": {"id": "72", "name": "Microsoft Outlook OAuth2 creds"}}, "id": "631bf979-dfac-4acc-b038-c2efbbc4eb61"}, {"parameters": {"resource": "draft", "subject": "=Draft{{Date.now()}}", "bodyContent": "=draft test{{(new Date).toUTCString()}}", "additionalFields": {"toRecipients": " node8qa@gmail.com "}}, "name": "Microsoft Outlook6", "type": "n8n-nodes-base.microsoftOutlook", "typeVersion": 1, "position": [450, 500], "credentials": {"microsoftOutlookOAuth2Api": {"id": "72", "name": "Microsoft Outlook OAuth2 creds"}}, "id": "d52c068a-caec-4b41-8f2b-6ecb09eeff45"}, {"parameters": {"resource": "draft", "operation": "update", "messageId": "={{$node[\"Microsoft Outlook6\"].json[\"id\"]}}", "updateFields": {"bodyContent": "=Updated{{$node[\"Microsoft Outlook6\"].json[\"body\"][\"content\"]}}"}}, "name": "Microsoft Outlook7", "type": "n8n-nodes-base.microsoftOutlook", "typeVersion": 1, "position": [600, 500], "credentials": {"microsoftOutlookOAuth2Api": {"id": "72", "name": "Microsoft Outlook OAuth2 creds"}}, "id": "d9f97b7a-cd2d-476a-bc98-65c622adafae"}, {"parameters": {"resource": "draft", "operation": "get", "messageId": "={{$node[\"Microsoft Outlook6\"].json[\"id\"]}}", "additionalFields": {}}, "name": "Microsoft Outlook8", "type": "n8n-nodes-base.microsoftOutlook", "typeVersion": 1, "position": [900, 500], "credentials": {"microsoftOutlookOAuth2Api": {"id": "72", "name": "Microsoft Outlook OAuth2 creds"}}, "id": "d8668bc3-43db-4ba9-ab40-a5bd7fd0ea32"}, {"parameters": {"resource": "draft", "operation": "delete", "messageId": "={{$node[\"Microsoft Outlook6\"].json[\"id\"]}}"}, "name": "Microsoft Outlook9", "type": "n8n-nodes-base.microsoftOutlook", "typeVersion": 1, "position": [1050, 500], "credentials": {"microsoftOutlookOAuth2Api": {"id": "72", "name": "Microsoft Outlook OAuth2 creds"}}, "id": "5c319460-5c69-4622-953a-7bcaee892d07"}, {"parameters": {"resource": "draft", "subject": "=Draft{{Date.now()}}", "bodyContent": "=draft test{{Date.now()}}", "additionalFields": {"toRecipients": " node8qa@gmail.com "}}, "name": "Microsoft Outlook10", "type": "n8n-nodes-base.microsoftOutlook", "typeVersion": 1, "position": [1350, 500], "credentials": {"microsoftOutlookOAuth2Api": {"id": "72", "name": "Microsoft Outlook OAuth2 creds"}}, "id": "4fefb565-502a-4a8d-a9a4-db2b208d7b12"}, {"parameters": {"resource": "draft", "operation": "send", "messageId": "={{$node[\"Microsoft Outlook10\"].json[\"id\"]}}", "additionalFields": {"recipients": "node8qa@gmail.com"}}, "name": "Microsoft Outlook11", "type": "n8n-nodes-base.microsoftOutlook", "typeVersion": 1, "position": [2650, 550], "credentials": {"microsoftOutlookOAuth2Api": {"id": "72", "name": "Microsoft Outlook OAuth2 creds"}}, "id": "c1d8d7e4-8d6d-4ca4-9e05-e0ad702a586d"}, {"parameters": {"operation": "delete", "messageId": "={{$node[\"Microsoft Outlook13\"].json[\"id\"]}}"}, "name": "Microsoft Outlook12", "type": "n8n-nodes-base.microsoftOutlook", "typeVersion": 1, "position": [3100, 550], "credentials": {"microsoftOutlookOAuth2Api": {"id": "72", "name": "Microsoft Outlook OAuth2 creds"}}, "id": "0e1e8c29-065e-43e2-9751-46b580640c73"}, {"parameters": {"operation": "getAll", "limit": 1, "additionalFields": {}}, "name": "Microsoft Outlook13", "type": "n8n-nodes-base.microsoftOutlook", "typeVersion": 1, "position": [2950, 550], "credentials": {"microsoftOutlookOAuth2Api": {"id": "72", "name": "Microsoft Outlook OAuth2 creds"}}, "id": "c4ba0930-587d-47a4-8a4b-a3b3ba7ed3f2"}, {"parameters": {"resource": "folder", "displayName": "=Folder{{(new Date).toUTCString()}}"}, "name": "Microsoft Outlook14", "type": "n8n-nodes-base.microsoftOutlook", "typeVersion": 1, "position": [450, 140], "credentials": {"microsoftOutlookOAuth2Api": {"id": "72", "name": "Microsoft Outlook OAuth2 creds"}}, "id": "3b783dbb-0e38-4cdb-8931-a83c2e542a9e"}, {"parameters": {"resource": "folder", "operation": "get", "folderId": "={{$node[\"Microsoft Outlook14\"].json[\"id\"]}}", "additionalFields": {}}, "name": "Microsoft Outlook15", "type": "n8n-nodes-base.microsoftOutlook", "typeVersion": 1, "position": [750, 140], "credentials": {"microsoftOutlookOAuth2Api": {"id": "72", "name": "Microsoft Outlook OAuth2 creds"}}, "id": "c829334b-0ac4-4440-b3bd-537f659608f7"}, {"parameters": {"resource": "folder", "operation": "getAll", "limit": 1, "additionalFields": {"filter": "startsWith(displayName,'Folder')"}}, "name": "Microsoft Outlook16", "type": "n8n-nodes-base.microsoftOutlook", "typeVersion": 1, "position": [900, 140], "credentials": {"microsoftOutlookOAuth2Api": {"id": "72", "name": "Microsoft Outlook OAuth2 creds"}}, "id": "d446756b-e052-4869-9d2d-7d4af3c155f3"}, {"parameters": {"resource": "folder", "operation": "getChildren", "folderId": "={{$node[\"Microsoft Outlook14\"].json[\"id\"]}}", "limit": 1, "additionalFields": {}}, "name": "Microsoft Outlook17", "type": "n8n-nodes-base.microsoftOutlook", "typeVersion": 1, "position": [1200, 140], "alwaysOutputData": true, "credentials": {"microsoftOutlookOAuth2Api": {"id": "72", "name": "Microsoft Outlook OAuth2 creds"}}, "id": "8f732179-076b-4375-96ef-396c41ec4f22"}, {"parameters": {"resource": "folder", "operation": "delete", "folderId": "={{$node[\"Microsoft Outlook14\"].json[\"id\"]}}"}, "name": "Microsoft Outlook18", "type": "n8n-nodes-base.microsoftOutlook", "typeVersion": 1, "position": [1350, 140], "credentials": {"microsoftOutlookOAuth2Api": {"id": "72", "name": "Microsoft Outlook OAuth2 creds"}}, "id": "a4b7d61c-74c1-4595-9698-6b1fa7a73842"}, {"parameters": {"resource": "folderMessage", "operation": "getAll", "folderId": "AQMkADAwATNiZmYAZC0zODgAZC1jYjlmLTAwAi0wMAoALgAAA7ObUbW4UV9AtQb9CKQozz8BAIHMmBimhDVHlaNbe8JltA4AAAIBCQAAAA==", "limit": 1, "additionalFields": {}}, "name": "Microsoft Outlook19", "type": "n8n-nodes-base.microsoftOutlook", "typeVersion": 1, "position": [1650, 350], "credentials": {"microsoftOutlookOAuth2Api": {"id": "72", "name": "Microsoft Outlook OAuth2 creds"}}, "id": "891fb969-79f6-4832-a3d0-b2d938fe757a"}, {"parameters": {"resource": "messageAttachment", "messageId": "={{$node[\"Microsoft Outlook10\"].json[\"id\"]}}", "additionalFields": {"fileName": "test"}}, "name": "Microsoft Outlook20", "type": "n8n-nodes-base.microsoftOutlook", "typeVersion": 1, "position": [1750, 650], "credentials": {"microsoftOutlookOAuth2Api": {"id": "72", "name": "Microsoft Outlook OAuth2 creds"}}, "id": "d7131b8a-1656-4ad0-baa0-860456471bb1"}, {"parameters": {"mode": "jsonToBinary", "options": {"keepSource": false}}, "name": "Move Binary Data", "type": "n8n-nodes-base.moveBinaryData", "typeVersion": 1, "position": [1600, 650], "id": "9f86213f-ce39-4b3e-a9e9-7327d421f7cb"}, {"parameters": {"values": {"string": [{"name": "data", "value": "dGVzdCBmb3IgbWljcm9zb2Z0IG91dGxvb2s="}]}, "options": {}}, "name": "Set", "type": "n8n-nodes-base.set", "typeVersion": 1, "position": [1450, 650], "id": "b909a6f3-09d4-450f-be31-6c771fa96f08"}, {"parameters": {"resource": "messageAttachment", "operation": "getAll", "messageId": "={{$node[\"Microsoft Outlook10\"].json[\"id\"]}}", "additionalFields": {}}, "name": "Microsoft Outlook21", "type": "n8n-nodes-base.microsoftOutlook", "typeVersion": 1, "position": [2050, 650], "credentials": {"microsoftOutlookOAuth2Api": {"id": "72", "name": "Microsoft Outlook OAuth2 creds"}}, "id": "3b59dfb0-2204-4073-81fb-9629e95969bb"}, {"parameters": {"resource": "messageAttachment", "operation": "get", "messageId": "={{$node[\"Microsoft Outlook10\"].json[\"id\"]}}", "attachmentId": "={{$node[\"Microsoft Outlook21\"].json[\"id\"]}}", "additionalFields": {}}, "name": "Microsoft Outlook22", "type": "n8n-nodes-base.microsoftOutlook", "typeVersion": 1, "position": [2200, 650], "credentials": {"microsoftOutlookOAuth2Api": {"id": "72", "name": "Microsoft Outlook OAuth2 creds"}}, "id": "20c4215c-8ab5-4621-872e-1799140f546d"}, {"parameters": {"resource": "messageAttachment", "operation": "download", "messageId": "={{$node[\"Microsoft Outlook10\"].json[\"id\"]}}", "attachmentId": "={{$node[\"Microsoft Outlook21\"].json[\"id\"]}}"}, "name": "Microsoft Outlook23", "type": "n8n-nodes-base.microsoftOutlook", "typeVersion": 1, "position": [2490, 650], "credentials": {"microsoftOutlookOAuth2Api": {"id": "72", "name": "Microsoft Outlook OAuth2 creds"}}, "id": "5118f8c3-c5e5-417e-8d38-0970f7f56414"}, {"parameters": {"functionCode": "function sleep(milliseconds) {\n return new Promise(\n resolve => setTimeout(resolve, milliseconds)\n );\n}\n\nawait sleep(800);\n\n// Output data\nreturn items;"}, "name": "Sleep 0.8 second", "type": "n8n-nodes-base.function", "position": [1050, 140], "typeVersion": 1, "id": "94e105e3-0637-4064-8514-af332eb2827f"}, {"parameters": {"functionCode": "function sleep(milliseconds) {\n return new Promise(\n resolve => setTimeout(resolve, milliseconds)\n );\n}\n\nawait sleep(800);\n\n// Output data\nreturn items;"}, "name": "Sleep 0.8 second1", "type": "n8n-nodes-base.function", "position": [610, 140], "typeVersion": 1, "id": "18598ace-99d1-4b66-91c7-e644a87016c5"}, {"parameters": {"functionCode": "function sleep(milliseconds) {\n return new Promise(\n resolve => setTimeout(resolve, milliseconds)\n );\n}\n\nawait sleep(800);\n\n// Output data\nreturn items;"}, "name": "Sleep 0.8 second2", "type": "n8n-nodes-base.function", "position": [600, 300], "typeVersion": 1, "id": "ba10706c-633c-4cad-968a-f3f18e9c9920"}, {"parameters": {"functionCode": "function sleep(milliseconds) {\n return new Promise(\n resolve => setTimeout(resolve, milliseconds)\n );\n}\n\nawait sleep(800);\n\n// Output data\nreturn items;"}, "name": "Sleep 0.8 second3", "type": "n8n-nodes-base.function", "position": [1050, 300], "typeVersion": 1, "id": "b0f039ce-0731-4f9a-ba87-bc15d53769b8"}, {"parameters": {"functionCode": "function sleep(milliseconds) {\n return new Promise(\n resolve => setTimeout(resolve, milliseconds)\n );\n}\n\nawait sleep(800);\n\n// Output data\nreturn items;"}, "name": "Sleep 0.8 second4", "type": "n8n-nodes-base.function", "position": [1500, 350], "typeVersion": 1, "id": "418bceb9-6a77-464f-a4e1-8e1f9405e334"}, {"parameters": {"functionCode": "function sleep(milliseconds) {\n return new Promise(\n resolve => setTimeout(resolve, milliseconds)\n );\n}\n\nawait sleep(800);\n\n// Output data\nreturn items;"}, "name": "Sleep 0.8 second5", "type": "n8n-nodes-base.function", "position": [2800, 550], "typeVersion": 1, "id": "340d3c0c-faf5-4743-8c1b-f00c6541d8ca"}, {"parameters": {"functionCode": "function sleep(milliseconds) {\n return new Promise(\n resolve => setTimeout(resolve, milliseconds)\n );\n}\n\nawait sleep(800);\n\n// Output data\nreturn items;"}, "name": "Sleep 0.8 second6", "type": "n8n-nodes-base.function", "position": [2350, 650], "typeVersion": 1, "id": "e46a32dd-2110-4e2d-9c6e-d871edba8fe2"}, {"parameters": {"functionCode": "function sleep(milliseconds) {\n return new Promise(\n resolve => setTimeout(resolve, milliseconds)\n );\n}\n\nawait sleep(800);\n\n// Output data\nreturn items;"}, "name": "Sleep 0.8 second7", "type": "n8n-nodes-base.function", "position": [1900, 650], "typeVersion": 1, "id": "67a411cf-4505-4c21-aa92-1936ccdb0149"}, {"parameters": {"functionCode": "function sleep(milliseconds) {\n return new Promise(\n resolve => setTimeout(resolve, milliseconds)\n );\n}\n\nawait sleep(800);\n\n// Output data\nreturn items;"}, "name": "Sleep 0.8 second8", "type": "n8n-nodes-base.function", "position": [1940, 300], "typeVersion": 1, "id": "26cac095-afb7-41c7-85a9-44dbdf916e9f"}, {"parameters": {"functionCode": "function sleep(milliseconds) {\n return new Promise(\n resolve => setTimeout(resolve, milliseconds)\n );\n}\n\nawait sleep(800);\n\n// Output data\nreturn items;"}, "name": "Sleep 0.8 second9", "type": "n8n-nodes-base.function", "position": [750, 500], "typeVersion": 1, "id": "e1fe7a57-75ee-4154-a288-6a4a740b7375"}, {"parameters": {"functionCode": "function sleep(milliseconds) {\n return new Promise(\n resolve => setTimeout(resolve, milliseconds)\n );\n}\n\nawait sleep(800);\n\n// Output data\nreturn items;"}, "name": "Sleep 0.8 second10", "type": "n8n-nodes-base.function", "position": [1200, 500], "typeVersion": 1, "id": "571afdbd-30e6-45d6-9848-d9c6d71b5ba4"}]
{"Microsoft Outlook": {"main": [[{"node": "Sleep 0.8 second2", "type": "main", "index": 0}]]}, "Microsoft Outlook1": {"main": [[{"node": "Microsoft Outlook2", "type": "main", "index": 0}]]}, "Microsoft Outlook2": {"main": [[{"node": "Sleep 0.8 second3", "type": "main", "index": 0}]]}, "Microsoft Outlook3": {"main": [[{"node": "Microsoft Outlook4", "type": "main", "index": 0}]]}, "Microsoft Outlook4": {"main": [[{"node": "Sleep 0.8 second4", "type": "main", "index": 0}]]}, "Microsoft Outlook5": {"main": [[{"node": "Sleep 0.8 second8", "type": "main", "index": 0}]]}, "Start": {"main": [[{"node": "Microsoft Outlook", "type": "main", "index": 0}, {"node": "Microsoft Outlook14", "type": "main", "index": 0}]]}, "Microsoft Outlook6": {"main": [[{"node": "Microsoft Outlook7", "type": "main", "index": 0}]]}, "Microsoft Outlook7": {"main": [[{"node": "Sleep 0.8 second9", "type": "main", "index": 0}]]}, "Microsoft Outlook8": {"main": [[{"node": "Microsoft Outlook9", "type": "main", "index": 0}]]}, "Microsoft Outlook10": {"main": [[{"node": "Set", "type": "main", "index": 0}]]}, "Microsoft Outlook11": {"main": [[{"node": "Sleep 0.8 second5", "type": "main", "index": 0}]]}, "Microsoft Outlook13": {"main": [[{"node": "Microsoft Outlook12", "type": "main", "index": 0}]]}, "Microsoft Outlook9": {"main": [[{"node": "Sleep 0.8 second10", "type": "main", "index": 0}]]}, "Microsoft Outlook14": {"main": [[{"node": "Sleep 0.8 second1", "type": "main", "index": 0}]]}, "Microsoft Outlook15": {"main": [[{"node": "Microsoft Outlook16", "type": "main", "index": 0}]]}, "Microsoft Outlook16": {"main": [[{"node": "Sleep 0.8 second", "type": "main", "index": 0}]]}, "Microsoft Outlook17": {"main": [[{"node": "Microsoft Outlook18", "type": "main", "index": 0}]]}, "Microsoft Outlook19": {"main": [[{"node": "Microsoft Outlook5", "type": "main", "index": 0}]]}, "Move Binary Data": {"main": [[{"node": "Microsoft Outlook20", "type": "main", "index": 0}]]}, "Set": {"main": [[{"node": "Move Binary Data", "type": "main", "index": 0}]]}, "Microsoft Outlook20": {"main": [[{"node": "Sleep 0.8 second7", "type": "main", "index": 0}]]}, "Microsoft Outlook21": {"main": [[{"node": "Microsoft Outlook22", "type": "main", "index": 0}]]}, "Microsoft Outlook22": {"main": [[{"node": "Sleep 0.8 second6", "type": "main", "index": 0}]]}, "Microsoft Outlook23": {"main": [[{"node": "Microsoft Outlook11", "type": "main", "index": 0}]]}, "Sleep 0.8 second": {"main": [[{"node": "Microsoft Outlook17", "type": "main", "index": 0}]]}, "Sleep 0.8 second1": {"main": [[{"node": "Microsoft Outlook15", "type": "main", "index": 0}]]}, "Sleep 0.8 second2": {"main": [[{"node": "Microsoft Outlook1", "type": "main", "index": 0}]]}, "Sleep 0.8 second3": {"main": [[{"node": "Microsoft Outlook3", "type": "main", "index": 0}]]}, "Sleep 0.8 second4": {"main": [[{"node": "Microsoft Outlook19", "type": "main", "index": 0}]]}, "Sleep 0.8 second5": {"main": [[{"node": "Microsoft Outlook13", "type": "main", "index": 0}]]}, "Sleep 0.8 second6": {"main": [[{"node": "Microsoft Outlook23", "type": "main", "index": 0}]]}, "Sleep 0.8 second7": {"main": [[{"node": "Microsoft Outlook21", "type": "main", "index": 0}]]}, "Sleep 0.8 second8": {"main": [[{"node": "Microsoft Outlook6", "type": "main", "index": 0}]]}, "Sleep 0.8 second9": {"main": [[{"node": "Microsoft Outlook8", "type": "main", "index": 0}]]}, "Sleep 0.8 second10": {"main": [[{"node": "Microsoft Outlook10", "type": "main", "index": 0}]]}}
AWSRekognition:Image:analyze
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "b1f09994-6b4a-4979-bfc4-ec27ba3003ff"}, {"parameters": {"type": "detectText", "binaryData": true, "additionalFields": {}}, "name": "AWS Rekognition", "type": "n8n-nodes-base.awsRekognition", "typeVersion": 1, "position": [700, 300], "credentials": {"aws": {"id": "124", "name": "AWS creds"}}, "id": "9dd43252-32fd-469a-9698-7f486fc51bb5"}, {"parameters": {"functionCode": "item = {\n json:{},\n binary:{\n data: {\n data: 'iVBORw0KGgoAAAANSUhEUgAAAdAAAABqCAMAAAA7pfCVAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAqUExURQAAADhNW/9tWv9tWjhNW/9tWv9tWjhNW6teWv9tWjhNWzhNW/9tWjhNW0y9HhoAAAAMdFJOUwDD4n+KTrBCECcoZqF2YcgAAAnPSURBVHja7Z3ZmqsgDIDLvti+/+tO9wKSBFCsdsjV+U7HavnJQhLwdDqgKCWEUOo05AfECX5+CRcD6sFFfWi+mNoxKr+D8450aOlBxepzXvRQ0kM6T36GhLsxPL/EcxD9NZ6D6PH8J85zED2a6DMlegzSgUScaRFjmA5rcLVQSolEa/lYvBxUQfXLXToxVPSYwqHoJ4p9h4oeRRQczUbGeOQADxjiOmR9OgLdfaQMbsVNVDjmJ0M/Ogbz+9ZU83OFZNxkaHSHzf02ziqagFEVI849Ks68CqoBdI+LyzLJJWzdALoHsbqBZz7q6QfUGsnY5SqMyclvMSpKX0UcsNBg+XnvQO10Z/kRJnszfTuh45maNp5b+lB5yYjsmowKfgk/cKqgRsRWUa5nl7xM2yTEDqajqpFnduL2WIdOF1BkX6slnH0Y3iP50UYHmkemiCB4ZZ79iLr377uPz5FUNFmwaOWKHe48VcTXdzzmcvkCUfFJnKhjJaZjBdWuagJoxBuvNKnthRDTDejTANljhUXiXFnycnD2T5/Xt7hhfMumOz0TLWFYt2ERhwRaX8LUQH+f0x3axHxAzuTj3qkXUD375zpBqGrcqueuF9oafSs0kip1uvebKE0vUhcpqIRCpS4q6t4D4lYMipx41bN4XQbqcyG1yU80NI3M1q18XnZba0ozMPj5EO2SMtKPyfqYp6v001jBG/fqpcrCkVBHN0QxBQudtTqt3xaXWZh1F5vr1m6nEZlR4yVjnq2DgVvCdEsUo5qygovWLBPyWZ+VS0BUrDw/amY+VDeB9m3ypnWjaEgKLnOhObPaN859B3lrbHmFVYD4dmQXUd6rNXo9vdFGiDdQzL92AnoLRW6nR6yfvCm3ZvguP7seUPQRV4zxUaCyN9BOybhyotQuvxWBwi0rxRbKTvKpY4xBBes3ULtEQ41k3aqor6r7ve5u2kIO1cYzx2xB+dLlzW4mog6SPZ/xNElJLD/SE5bgmwPNZSFsUktlJUFxWEhHac5Sy6YeCxgZ8foK5qLyZUZJs+oZ/eoHN8vK0uweC3zmF2ZqpZnSOLMVQJEg2mTLtLMJU1DN0k2hZ24qLCxfxo28XCsyHfsYHlNcOEEWm2auvdHXQROnhOhlPgdncw2qul+Yx7DopFsdHPxUs/ntyjSFo+E50JgMUUI/BA4HZTrOU3kpbIJTtmweMKVlGA8Nua0BKlFnQHRSxFkY/kr4uZgpJ1cSb1eW2EUFzYGO9YQU6FRRCrNgC1Eur5B8mW+uopJ/LEurtAoKMGIFnGuDBV2ZgFQ0mjxiM6BIxZoh+aDUO7GMRYyBWgbfyVcAZdU8A6Icto8aVVEBu0qVL1PGumu3AhpWrNlNiHGOC6J29t8S4hDGLLMbyUVAZdJRaq4iZY6ow6BxrHzMkdBHZDQxWXX07LHwt9/7KZukCxUvC+Oi8Kp8reV2o2l+o5clDwvjxOoy/CKG+c/QbERhr5xVs1y2RhfGSqGg1lOHbllkwqz+59AYpKnWo7XN1HKyyQQR5kRMgCjmDL6qoHMFSlx4uJHUpAEBXs0q24DCG3IV/bvaDBLZU7VNWdUjxpDWXVvTXAYBZdDPiKfMPZTmaDXLNfc/8/oO255AZ8sGhioOHN0wykR7aG60A53w1U/cY0GMcVELratOOmxx8JdBl4ETmi6CeVoCqKlKPZUBZfhqNph9lsyVF21aqM4Pb3KQm0FjWV+UWyhbfLAig9wMlGx98aG5J7yaaHOhONBtDuYzeCgLf1aaksm5OOzTVqCMNNoyuP+/AGoRoNgSQZp5OlwivUZZ3HIhUIv+jORP/L8wubImojRJRDnfJ2pBoOzUAWhJJ5P8zKj/EBT5CqA2A87LS1nELHsAlQUL2SDy+gfLFlYTUcostrhmDS4TfQ+gRT7482gatbllO3MzvUN7SizICqCgWkdIp5qwZy2grOTKSzTyCsNyO9I0EoxOWFbJp/7ObpdAkfJ2uDi1FQuTpUCL1rGfmzhE06Jql8W0VxV8tmFyPgZqygcPzQIESjp9AagsAxrXyCzIE233SoMc4Ds3K581A53KtBpQ630AVVCdWlEFbg74RHiX31YF7magjOjqydtchg75xiY3jUdfbVfJ/iNOrkz4cydh0rsS+8qNWlCWA6ViD7NjoGq2Ve8qJU1isz1hPHOhgCcBZXPdqx1MKLcRUGrw8ia5L9CiZUv0RwVrk3wEoxpWNKVtnMneRl5/XloPoOYLQGVBV5KNHpzefQltP6WngkLstCjGWXq8xk8CnQp2pSaWg8oHgYk6cioITKthoIKvkIxYAvSyI5NbUlBNfbtq3axEEM1ZanolCp/UWZUCXhQUmf0EReRDhdF3UbEL83Uo0SwxEij2lTVEW4BKXBt8PjHYGagkVTRTHYA3LBFjiBx8m58IFFB861QF0UWJhfxFRGKhE1BP9ZllnxoCQ78+F3B49I413uKWy4m2ALVoUXwCRrYz0JPET0iCelJVBqkuOulL15y2QRyaoVsj7lWABmOH9JWlK4jeQD3aAePhDrUUqS7d8JdmhzC3u7gRWPcE6sEGvrB+BnTlVQG15imWTgpLhOiEtk5Z9dwPyLVQVdlz976QOF0TPXhq7kC5bj3BpglovLHlc2XciOKbgHry8cAsP4M6xsOaHvvOy9/Qo+GSBPIjPTTT/1WBXpi8Ss6L3j+b7ptOGNo8Xwj0fiNfAjR5pmTbKXsrtZEV+9u6CXJgVpzhCM4xE7xeRUuBJubQU/v2YP0hgMYPgwKdmejkqdiVOGObnZ5ORMUwGwH6YcervWgjULwtF+366wiUnmdf44kdgIxsX3S8tn2lFShBFDkDUBKrxCVAKaL+9D0BjyhH3auqTeoSQCWiDazugHIcqC8HOiFAT9j2cPbVl+GWvESAo+sdvQJQjwyehbYTMjSBJE+0LUCBYs90gk61+aq5LaoFAHGPq4xzCaCxOsxwy5IDgcqA+mKg+DOd4h3hn4j4+++qpuuoFg+PS27i2VMg9+Ile0vGjiSDBx3DdrPezy+BFOV2JN3sYfKPhz/TaX6UmDSnPQivt7iNJ+0uEvMkIaXxp92In6R8PNW0m6ei3KgmgqnxLt+9idUD6I+JGEB/TLBXNlM+1I7hOxhStzzKHfINpJoX7zY88PtS/5U49T6bTKOdJny8Pf1wbLGwSJxHTHQ40TBRdR4W94AuFew3FJvuFR6ylvB8q5ni2+7mH9JFRe8vCbiK4N1euzNkUxVd2Jg7ZGeBbuf3EA75htHt+p6zIVsvXb5zBNmQDYkOB3pAEcPe/pofhd42PHK4BxUrCt8rOeQwyxfdtFV1yI61NKyVajG08yf0VCkhlBowy+UP8oj4tnqDbLEAAAAASUVORK5CYII=', // Base64 encoded binary data (required)\n mimeType: 'image/png',\n fileExtension: 'png',\n fileName: 'n8n-logo.png',\n }\n }\n}\n\nreturn [item];"}, "name": "Function", "type": "n8n-nodes-base.function", "typeVersion": 1, "position": [500, 300], "id": "1d29136d-934f-4913-bd1c-d34a2881c9c8"}]
{"Start": {"main": [[{"node": "Function", "type": "main", "index": 0}]]}, "Function": {"main": [[{"node": "AWS Rekognition", "type": "main", "index": 0}]]}}
ExecuteCommand
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "596a5418-e61d-41ab-84eb-64e07630b23e"}, {"parameters": {"command": "=echo 'test' > /tmp/{{$node[\"Set\"].json[\"filename\"]}}"}, "name": "Execute Command", "type": "n8n-nodes-base.executeCommand", "typeVersion": 1, "position": [660, 300], "notesInFlow": true, "notes": "write file to /tmp", "id": "9c118fb2-edad-441a-b8a8-f1c843a37bd5"}, {"parameters": {"filePath": "=/tmp/{{$node[\"Set\"].json[\"filename\"]}}"}, "name": "Read Binary File", "type": "n8n-nodes-base.readBinaryFile", "typeVersion": 1, "position": [860, 300], "notesInFlow": true, "notes": "read file", "id": "af6e6941-e34e-4b5d-a236-3bccd5bd4cfd"}, {"parameters": {"values": {"string": [{"name": "filename", "value": "=filename{{Date.now()}}"}]}, "options": {}}, "name": "Set", "type": "n8n-nodes-base.set", "typeVersion": 1, "position": [450, 300], "notesInFlow": true, "notes": "generate filename", "id": "8864d17b-8310-4460-810c-d43da4e967ff"}, {"parameters": {"functionCode": "testData= 'dGVzdAo='\nif($node['Execute Command'].json['exitCode']!==0 || items[0].binary.data.data !== testData){\n throw new Error('Error Execute Command in node');\n}\nreturn items;"}, "name": "Function", "type": "n8n-nodes-base.function", "typeVersion": 1, "position": [1050, 300], "notesInFlow": true, "notes": "verify file content", "id": "0a60312c-4030-496b-ad24-3acebff5eca1"}, {"parameters": {"command": "=rm /tmp/{{$node[\"Set\"].json[\"filename\"]}}"}, "name": "Execute Command1", "type": "n8n-nodes-base.executeCommand", "typeVersion": 1, "position": [1250, 300], "notesInFlow": true, "notes": "remove file from /tmp", "id": "ede3e595-c571-4155-85bd-14e39fe78049"}]
{"Start": {"main": [[{"node": "Set", "type": "main", "index": 0}]]}, "Execute Command": {"main": [[{"node": "Read Binary File", "type": "main", "index": 0}]]}, "Set": {"main": [[{"node": "Execute Command", "type": "main", "index": 0}]]}, "Read Binary File": {"main": [[{"node": "Function", "type": "main", "index": 0}]]}, "Function": {"main": [[{"node": "Execute Command1", "type": "main", "index": 0}]]}}
Ask a human
[{"id": "a60c8572-56c1-4bf3-8352-a6419a475887", "name": "Window Buffer Memory", "type": "@n8n/n8n-nodes-langchain.memoryBufferWindow", "position": [900, 760], "parameters": {}, "typeVersion": 1.1}, {"id": "b4f2e26c-903b-46b8-bd8b-110fd64de9e4", "name": "Not sure?", "type": "@n8n/n8n-nodes-langchain.toolWorkflow", "position": [1120, 760], "parameters": {"name": "dont_know_tool", "fields": {"values": [{"name": "chatInput", "stringValue": "={{ $('Chat Trigger').item.json.chatInput }}"}]}, "workflowId": "={{ $workflow.id}}", "description": "Use this tool if you don't know the answer to the user's question, or if you're not very confident about your answer."}, "typeVersion": 1}, {"id": "951cc691-b422-4ce6-901f-b7feb3afd1ad", "name": "Execute Workflow Trigger", "type": "n8n-nodes-base.executeWorkflowTrigger", "position": [540, 1360], "parameters": {}, "typeVersion": 1}, {"id": "194ba9c0-e256-449a-8da7-ac5339123a99", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [500, 1020], "parameters": {"color": 7, "width": 1118.3459011229047, "height": 775.3931210698682, "content": "### Sub-workflow: Custom tool\nThe agent above can call this workflow. It checks if the user has supplied an email address. If they haven't it prompts them to provide one. If they have, it messages a customer support channel for help."}, "typeVersion": 1}, {"id": "38c6b363-45a7-4e72-9e40-8c0df3cc480f", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [500, 460], "parameters": {"color": 7, "width": 927.5, "height": 486.5625, "content": "### Main workflow: AI agent using custom tool"}, "typeVersion": 1}, {"id": "0389315b-e48d-4b00-b9a1-899302b1b094", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [1060, 700], "parameters": {"color": 5, "width": 197.45572294791873, "height": 179.21380662202682, "content": "**This tool calls the sub-workflow below**"}, "typeVersion": 1}, {"id": "fb11064a-4cf5-4110-9e39-af24a3225164", "name": "Sticky Note5", "type": "n8n-nodes-base.stickyNote", "position": [700, 680], "parameters": {"color": 2, "width": 150, "height": 213.44323866265472, "content": "**Set your credentials**"}, "typeVersion": 1}, {"id": "d689021d-0a46-4dff-a01a-0b01ecdd198b", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [1020, 1180], "parameters": {"color": 2, "width": 178.0499248677781, "height": 250.57252651663197, "content": "**Set your credentials and Slack details**"}, "typeVersion": 1}, {"id": "0926cd61-c0b8-4bae-ae65-9afd130d17cd", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [340, 520], "parameters": {"color": 4, "width": 185.9375, "height": 214.8397420554627, "content": "## Try it out\n\nSelect **Chat** at the bottom and enter:\n\n_Hi! Please respond to this as if you don't know the answer to my query._"}, "typeVersion": 1}, {"id": "cde69dfe-252e-4a05-8d56-fa79431df5d8", "name": "Sticky Note6", "type": "n8n-nodes-base.stickyNote", "position": [1580, 1600], "parameters": {"height": 144.50520156238127, "content": "## Next steps\n\nLearn more about [Advanced AI in n8n](https://docs.n8n.io/advanced-ai/)"}, "typeVersion": 1}, {"id": "927b775a-47f6-4067-a1a5-5f13dea28e45", "name": "Chat Trigger", "type": "@n8n/n8n-nodes-langchain.chatTrigger", "position": [600, 520], "webhookId": "785e0c0c-12e5-4249-9abe-47bb131975cb", "parameters": {}, "typeVersion": 1}, {"id": "971e7b90-c2d8-4292-9da8-732d7d399f04", "name": "Prompt the user to provide an email", "type": "n8n-nodes-base.code", "position": [1060, 1520], "parameters": {"jsCode": "response = {\"response\":\"I'm sorry I don't know the answer. Please repeat your question and include your email address so I can request help.\"};\nreturn response;"}, "typeVersion": 2}, {"id": "6f5a21b3-c145-46c8-8e69-660100c4a6fc", "name": "Confirm that we've messaged a human", "type": "n8n-nodes-base.code", "position": [1300, 1260], "parameters": {"jsCode": "response = {\"response\": \"Thank you for getting in touch. I've messaged a human to help.\"}\nreturn response;"}, "typeVersion": 2}, {"id": "8b17da5e-e392-4028-91b0-bc02d34e46ed", "name": "AI Agent", "type": "@n8n/n8n-nodes-langchain.agent", "position": [820, 520], "parameters": {"options": {"systemMessage": "Try to answer the user's question. When you can't answer, or you're not confident of the answer, use the appropriate tool. When you use the dont_know_tool, respond with the message from the tool."}}, "typeVersion": 1.2}, {"id": "990ecd3b-6aa0-4b17-8d01-d606b9164fa8", "name": "Check if user has provided email", "type": "n8n-nodes-base.if", "position": [760, 1360], "parameters": {"options": {}, "conditions": {"options": {"leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "5e21e7c5-db60-4111-bb17-c289ae0fc159", "operator": {"type": "string", "operation": "regex"}, "leftValue": "={{ $('Execute Workflow Trigger').item.json.chatInput }}", "rightValue": "/([a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\\.[a-zA-Z0-9_-]+)/gi"}]}}, "typeVersion": 2}, {"id": "d14da0ae-06ca-422b-b5b6-e7759e74c787", "name": "Message Slack for help", "type": "n8n-nodes-base.slack", "position": [1060, 1260], "parameters": {"text": "={{ \"A user had a question the bot couldn't answer. Here's their message: \" + $('Execute Workflow Trigger').item.json.chatInput }}", "select": "channel", "channelId": {"__rl": true, "mode": "name", "value": ""}, "otherOptions": {}}, "typeVersion": 2.1}, {"id": "278391c7-6945-495e-a4f1-74fb8fcc3549", "name": "GPT4", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [740, 740], "parameters": {"model": "gpt-4", "options": {"temperature": 0.2}}, "typeVersion": 1}]
{"GPT4": {"ai_languageModel": [[{"node": "AI Agent", "type": "ai_languageModel", "index": 0}]]}, "Not sure?": {"ai_tool": [[{"node": "AI Agent", "type": "ai_tool", "index": 0}]]}, "Chat Trigger": {"main": [[{"node": "AI Agent", "type": "main", "index": 0}]]}, "Window Buffer Memory": {"ai_memory": [[{"node": "AI Agent", "type": "ai_memory", "index": 0}]]}, "Message Slack for help": {"main": [[{"node": "Confirm that we've messaged a human", "type": "main", "index": 0}]]}, "Execute Workflow Trigger": {"main": [[{"node": "Check if user has provided email", "type": "main", "index": 0}]]}, "Check if user has provided email": {"main": [[{"node": "Message Slack for help", "type": "main", "index": 0}], [{"node": "Prompt the user to provide an email", "type": "main", "index": 0}]]}}
Dynamically generate HTML page from user request using OpenAI Structured Output
[{"id": "b1d9659f-4cd0-4f87-844d-32b2af1dcf13", "name": "Respond to Webhook", "type": "n8n-nodes-base.respondToWebhook", "position": [2160, 380], "parameters": {"options": {"responseHeaders": {"entries": [{"name": "Content-Type", "value": "text/html; charset=UTF-8"}]}}, "respondWith": "text", "responseBody": "={{ $json.html }}"}, "typeVersion": 1.1}, {"id": "5ca8ad3e-7702-4f07-af24-d38e94fdc4ec", "name": "Open AI - Using Structured Output", "type": "n8n-nodes-base.httpRequest", "position": [1240, 380], "parameters": {"url": "https://api.openai.com/v1/chat/completions", "method": "POST", "options": {}, "jsonBody": "={\n \"model\": \"gpt-4o-2024-08-06\",\n \"messages\": [\n {\n \"role\": \"system\",\n \"content\": \"You are a user interface designer and copy writter. Your job is to help users visualize their website ideas. You design elegant and simple webs, with professional text. You use Tailwind framework\"\n },\n {\n \"role\": \"user\",\n \"content\": \"{{ $json.query.query }}\"\n }\n ],\n \"response_format\":\n{\n \"type\": \"json_schema\",\n \"json_schema\": {\n \"name\": \"ui\",\n \"description\": \"Dynamically generated UI\",\n \"strict\": true,\n \"schema\": {\n \"type\": \"object\",\n \"properties\": {\n \"type\": {\n \"type\": \"string\",\n \"description\": \"The type of the UI component\",\n \"enum\": [\n \"div\",\n \"span\",\n \"a\",\n \"p\",\n \"h1\",\n \"h2\",\n \"h3\",\n \"h4\",\n \"h5\",\n \"h6\",\n \"ul\",\n \"ol\",\n \"li\",\n \"img\",\n \"button\",\n \"input\",\n \"textarea\",\n \"select\",\n \"option\",\n \"label\",\n \"form\",\n \"table\",\n \"thead\",\n \"tbody\",\n \"tr\",\n \"th\",\n \"td\",\n \"nav\",\n \"header\",\n \"footer\",\n \"section\",\n \"article\",\n \"aside\",\n \"main\",\n \"figure\",\n \"figcaption\",\n \"blockquote\",\n \"q\",\n \"hr\",\n \"code\",\n \"pre\",\n \"iframe\",\n \"video\",\n \"audio\",\n \"canvas\",\n \"svg\",\n \"path\",\n \"circle\",\n \"rect\",\n \"line\",\n \"polyline\",\n \"polygon\",\n \"g\",\n \"use\",\n \"symbol\"\n]\n },\n \"label\": {\n \"type\": \"string\",\n \"description\": \"The label of the UI component, used for buttons or form fields\"\n },\n \"children\": {\n \"type\": \"array\",\n \"description\": \"Nested UI components\",\n \"items\": {\n \"$ref\": \"#\"\n }\n },\n \"attributes\": {\n \"type\": \"array\",\n \"description\": \"Arbitrary attributes for the UI component, suitable for any element using Tailwind framework\",\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\",\n \"description\": \"The name of the attribute, for example onClick or className\"\n },\n \"value\": {\n \"type\": \"string\",\n \"description\": \"The value of the attribute using the Tailwind framework classes\"\n }\n },\n \"additionalProperties\": false,\n \"required\": [\"name\", \"value\"]\n }\n }\n },\n \"required\": [\"type\", \"label\", \"children\", \"attributes\"],\n \"additionalProperties\": false\n }\n }\n}\n}", "sendBody": true, "sendHeaders": true, "specifyBody": "json", "authentication": "predefinedCredentialType", "headerParameters": {"parameters": [{"name": "Content-Type", "value": "application/json"}]}, "nodeCredentialType": "openAiApi"}, "credentials": {"openAiApi": {"id": "WqzqjezKh8VtxdqA", "name": "OpenAi account - Baptiste"}}, "typeVersion": 4.2}, {"id": "24e5ca73-a3b3-4096-8c66-d84838d89b0c", "name": "OpenAI - JSON to HTML", "type": "@n8n/n8n-nodes-langchain.openAi", "position": [1420, 380], "parameters": {"modelId": {"__rl": true, "mode": "list", "value": "gpt-4o-mini", "cachedResultName": "GPT-4O-MINI"}, "options": {"temperature": 0.2}, "messages": {"values": [{"role": "system", "content": "You convert a JSON to HTML. \nThe JSON output has the following fields:\n- html: the page HTML\n- title: the page title"}, {"content": "={{ $json.choices[0].message.content }}"}]}, "jsonOutput": true}, "credentials": {"openAiApi": {"id": "WqzqjezKh8VtxdqA", "name": "OpenAi account - Baptiste"}}, "typeVersion": 1.3}, {"id": "c50bdc84-ba59-4f30-acf7-496cee25068d", "name": "Format the HTML result", "type": "n8n-nodes-base.html", "position": [1940, 380], "parameters": {"html": "<!DOCTYPE html>\n\n<html>\n<head>\n <meta charset=\"UTF-8\" />\n <script src=\"https://cdn.tailwindcss.com\"></script>\n <title>{{ $json.message.content.title }}</title>\n</head>\n<body>\n{{ $json.message.content.html }}\n</body>\n</html>"}, "typeVersion": 1.2}, {"id": "193093f4-b1ce-4964-ab10-c3208e343c69", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [1134, 62], "parameters": {"color": 7, "width": 638, "height": 503, "content": "## Generate HTML from user query\n\n**HTTP Request node**\n- Send the user query to OpenAI, with a defined JSON response format - *using HTTP Request node as it has not yet been implemented in the OpenAI nodes*\n- The response format is inspired by the [Structured Output defined in OpenAI Introduction post](https://openai.com/index/introducing-structured-outputs-in-the-api)\n- The output is a JSON containing HTML components and attributed\n\n\n**OpenAI node**\n- Format the response from the previous node from JSON format to HTML format"}, "typeVersion": 1}, {"id": "0371156a-211f-4d92-82b1-f14fe60d4b6b", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [0, 60], "parameters": {"color": 7, "width": 768, "height": 503, "content": "## Workflow: Dynamically generate an HTML page from a user request using OpenAI Structured Output\n\n**Overview**\n- This workflow is a experiment to build HTML pages from a user input using the new Structured Output from OpenAI.\n- The Structured Output could be used in a variety of cases. Essentially, it guarantees the output from the GPT will follow a defined structure (JSON object).\n- It uses Tailwind CSS to make it slightly nicer, but any\n\n**How it works**\n- Once active, go to the production URL and add what you'd like to build as the parameter \"query\"\n- Example: https://production_url.com?query=a%20signup%20form\n- OpenAI nodes will first output the UI as a JSON then convert it to HTML\n- Finally, the response is integrated in a HTML container and rendered to the user\n\n**Further thoughts**\n- Results are not yet amazing, it is hard to see the direct value of such an experiment\n- But it showcase the potential of the Structured Output. Being able to guarantee the output format is key to build robust AI applications."}, "typeVersion": 1}, {"id": "06380781-5189-4d99-9ecd-d8913ce40fd5", "name": "Webhook", "type": "n8n-nodes-base.webhook", "position": [820, 380], "webhookId": "d962c916-6369-431a-9d80-af6e6a50fdf5", "parameters": {"path": "d962c916-6369-431a-9d80-af6e6a50fdf5", "options": {"allowedOrigins": "*"}, "responseMode": "responseNode"}, "typeVersion": 2}]
{"Webhook": {"main": [[{"node": "Open AI - Using Structured Output", "type": "main", "index": 0}]]}, "OpenAI - JSON to HTML": {"main": [[{"node": "Format the HTML result", "type": "main", "index": 0}]]}, "Format the HTML result": {"main": [[{"node": "Respond to Webhook", "type": "main", "index": 0}]]}, "Open AI - Using Structured Output": {"main": [[{"node": "OpenAI - JSON to HTML", "type": "main", "index": 0}]]}}
NeurochainAI Basic API Integration
[{"id": "da34bd1a-4e4e-4133-acad-939d0cc96596", "name": "Telegram Trigger", "type": "n8n-nodes-base.telegramTrigger", "position": [-1740, 880], "webhookId": "05885608-5344-4dcf-81ad-4550b9a01241", "parameters": {"updates": ["*"], "additionalFields": {}}, "credentials": {"telegramApi": {"id": "VPtf3hBnwGucAQtu", "name": "TEMPLATE"}}, "typeVersion": 1.1}, {"id": "3b3f4b00-6b3b-4346-8fcc-7ab75bcfe838", "name": "Code", "type": "n8n-nodes-base.code", "notes": "Extract the URL from the previous node", "position": [80, 260], "parameters": {"jsCode": "// O valor vem como um array com uma string, ent\u00e3o precisamos pegar o primeiro item do array\nconst rawUrl = $json.choices[0].text;\n\n// Remover colchetes e aspas (se existirem) e pegar o primeiro elemento do array\nconst imageUrl = JSON.parse(rawUrl)[0];\n\nreturn {\n json: {\n imageUrl: imageUrl\n }\n};"}, "notesInFlow": true, "typeVersion": 2}, {"id": "ccb91a15-96b5-42aa-a6ae-ff7ae79d1e8f", "name": "HTTP Request3", "type": "n8n-nodes-base.httpRequest", "position": [240, 260], "parameters": {"url": "={{ $json.imageUrl }}", "options": {}}, "typeVersion": 4.2}, {"id": "588899b6-a68e-407e-b12f-f05c205674c5", "name": "Telegram2", "type": "n8n-nodes-base.telegram", "position": [-520, 500], "parameters": {"text": "\u231b", "chatId": "={{ $('Telegram Trigger').item.json.message.chat.id }}", "replyMarkup": "inlineKeyboard", "additionalFields": {"appendAttribution": false, "reply_to_message_id": "={{ $('Telegram Trigger').item.json.message.message_id }}"}}, "credentials": {"telegramApi": {"id": "VPtf3hBnwGucAQtu", "name": "TEMPLATE"}}, "typeVersion": 1.2}, {"id": "e1534b69-d93d-4e8b-a3c4-adbc17c1dacd", "name": "Telegram1", "type": "n8n-nodes-base.telegram", "position": [440, 260], "parameters": {"chatId": "={{ $('Telegram Trigger').item.json.message.chat.id }}", "operation": "sendPhoto", "binaryData": true, "additionalFields": {"caption": "=*Prompt:* `{{ $('Code1').item.json.cleanMessage }}`", "parse_mode": "Markdown", "reply_to_message_id": "={{ $('Telegram Trigger').item.json.message.message_id }}"}}, "credentials": {"telegramApi": {"id": "VPtf3hBnwGucAQtu", "name": "TEMPLATE"}}, "typeVersion": 1.2}, {"id": "88ba4ced-bdd0-408e-94e1-9e54ed4d1b5d", "name": "Telegram4", "type": "n8n-nodes-base.telegram", "position": [620, 260], "parameters": {"chatId": "={{ $('Telegram2').item.json.result.chat.id }}", "messageId": "={{ $('Telegram2').item.json.result.message_id }}", "operation": "deleteMessage"}, "credentials": {"telegramApi": {"id": "VPtf3hBnwGucAQtu", "name": "TEMPLATE"}}, "typeVersion": 1.2}, {"id": "251a026e-ebfa-44f5-9c80-f30e5c142e23", "name": "Telegram3", "type": "n8n-nodes-base.telegram", "position": [260, 700], "parameters": {"text": "={{ $json.error.message }}", "chatId": "={{ $('Telegram Trigger').item.json.message.chat.id }}", "replyMarkup": "inlineKeyboard", "inlineKeyboard": {"rows": [{"row": {"buttons": [{"text": "\ud83d\udd04 Retry", "additionalFields": {"callback_data": "=response= Fluxretry: {{ $('Code1').item.json.cleanMessage }}"}}]}}]}, "additionalFields": {"appendAttribution": false, "reply_to_message_id": "={{ $('Telegram Trigger').item.json.message.message_id }}"}}, "credentials": {"telegramApi": {"id": "VPtf3hBnwGucAQtu", "name": "TEMPLATE"}}, "typeVersion": 1.2}, {"id": "fb71a62a-9cf8-4abf-baa4-885ae4b1a290", "name": "Telegram5", "type": "n8n-nodes-base.telegram", "position": [480, 700], "parameters": {"chatId": "={{ $('Telegram2').item.json.result.chat.id }}", "messageId": "={{ $('Telegram2').item.json.result.message_id }}", "operation": "deleteMessage"}, "credentials": {"telegramApi": {"id": "VPtf3hBnwGucAQtu", "name": "TEMPLATE"}}, "typeVersion": 1.2}, {"id": "0f9bcdf0-0008-447a-900c-6afe5b9d53fe", "name": "Telegram6", "type": "n8n-nodes-base.telegram", "position": [260, 520], "parameters": {"text": "=*Prompt too short*", "chatId": "={{ $('Telegram Trigger').item.json.message.chat.id }}", "replyMarkup": "inlineKeyboard", "additionalFields": {"parse_mode": "Markdown", "appendAttribution": false, "reply_to_message_id": "={{ $('Telegram Trigger').item.json.message.message_id }}"}}, "credentials": {"telegramApi": {"id": "VPtf3hBnwGucAQtu", "name": "TEMPLATE"}}, "typeVersion": 1.2}, {"id": "d805548a-7379-456c-9bc3-f5fafeb86aed", "name": "Telegram7", "type": "n8n-nodes-base.telegram", "position": [480, 520], "parameters": {"chatId": "={{ $('Telegram2').item.json.result.chat.id }}", "messageId": "={{ $('Telegram2').item.json.result.message_id }}", "operation": "deleteMessage"}, "credentials": {"telegramApi": {"id": "VPtf3hBnwGucAQtu", "name": "TEMPLATE"}}, "typeVersion": 1.2}, {"id": "a3e521a3-aff0-4d31-9a69-626f70f86ae2", "name": "NeurochainAI - REST API", "type": "n8n-nodes-base.httpRequest", "onError": "continueErrorOutput", "position": [-680, 1280], "parameters": {"url": "https://ncmb.neurochain.io/tasks/message", "method": "POST", "options": {}, "jsonBody": "={\n \"model\": \"Meta-Llama-3.1-8B-Instruct-Q6_K.gguf\",\n \"prompt\": \"You must respond directly to the user's message, and the message the user sent you is the following message: {{ $('Telegram Trigger').item.json.message.text }}\",\n \"max_tokens\": 1024,\n \"temperature\": 0.6,\n \"top_p\": 0.95,\n \"frequency_penalty\": 0,\n \"presence_penalty\": 1.1\n}", "sendBody": true, "sendHeaders": true, "specifyBody": "json", "headerParameters": {"parameters": [{"name": "Authorization", "value": "=Bearer YOUR-API-KEY-HERE"}, {"name": "Content-Type", "value": "application/json"}]}}, "typeVersion": 4.2, "alwaysOutputData": false}, {"id": "5fea3a8b-3e1b-4c69-b734-3f9dc7647e4b", "name": "TYPING - ACTION", "type": "n8n-nodes-base.telegram", "position": [-1100, 1280], "parameters": {"chatId": "={{ $('Telegram Trigger').item.json.message.chat.id }}", "operation": "sendChatAction"}, "credentials": {"telegramApi": {"id": "VPtf3hBnwGucAQtu", "name": "TEMPLATE"}}, "typeVersion": 1.2}, {"id": "ca183e3d-2bef-4d80-bbb7-c712a0290b2b", "name": "AI Response", "type": "n8n-nodes-base.telegram", "position": [-360, 1000], "parameters": {"text": "={{ $json.choices[0].text }}", "chatId": "={{ $('Telegram Trigger').item.json.message.chat.id }}", "additionalFields": {"parse_mode": "Markdown", "appendAttribution": false, "reply_to_message_id": "={{ $('Telegram Trigger').item.json.message.message_id }}"}}, "credentials": {"telegramApi": {"id": "VPtf3hBnwGucAQtu", "name": "TEMPLATE"}}, "typeVersion": 1.2}, {"id": "27e65f30-e58e-457d-b3b7-2b74267554e1", "name": "No response", "type": "n8n-nodes-base.telegram", "position": [-140, 1240], "parameters": {"text": "=*No response from worker*", "chatId": "={{ $('Telegram Trigger').item.json.message.chat.id }}", "additionalFields": {"parse_mode": "Markdown", "appendAttribution": false, "reply_to_message_id": "={{ $('Telegram Trigger').item.json.message.message_id }}"}}, "credentials": {"telegramApi": {"id": "VPtf3hBnwGucAQtu", "name": "TEMPLATE"}}, "typeVersion": 1.2}, {"id": "02cf4dfa-558f-4968-ad09-19f1e40735b0", "name": "Prompt too short", "type": "n8n-nodes-base.telegram", "position": [-140, 1400], "parameters": {"text": "=*Prompt too short*", "chatId": "={{ $('Telegram Trigger').item.json.message.chat.id }}", "replyMarkup": "inlineKeyboard", "additionalFields": {"parse_mode": "Markdown", "appendAttribution": false, "reply_to_message_id": "={{ $('Telegram Trigger').item.json.message.message_id }}"}}, "credentials": {"telegramApi": {"id": "VPtf3hBnwGucAQtu", "name": "TEMPLATE"}}, "typeVersion": 1.2}, {"id": "943d31e4-3745-49ea-9669-8a560a486cc4", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [-400, 1220], "parameters": {"color": 3, "width": 460.4333621829785, "height": 347.9769162173868, "content": "## ERROR"}, "typeVersion": 1}, {"id": "6b5d142f-8d8c-493f-81e7-cedb4e95cd31", "name": "Switch2", "type": "n8n-nodes-base.switch", "position": [-380, 1380], "parameters": {"rules": {"values": [{"conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"operator": {"type": "string", "operation": "equals"}, "leftValue": "={{ $json.error.message }}", "rightValue": "=500 - \"{\\\"error\\\":true,\\\"msg\\\":\\\"No response from worker\\\"}\""}]}}, {"conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "ef851d57-0618-4fe7-8469-a30971a05ee5", "operator": {"type": "string", "operation": "notEquals"}, "leftValue": "{{ $json.error.message }}", "rightValue": "400 - \"{\\\"error\\\":true,\\\"msg\\\":\\\"Prompt string is invalid\\\"}\""}]}}]}, "options": {}}, "typeVersion": 3.2}, {"id": "77651cb7-2530-46b2-89eb-7ac07f39a3ba", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [-400, 860], "parameters": {"color": 4, "width": 459.0810102677459, "height": 350.68162004785273, "content": "## SUCCESS\nThis node will send the AI \u200b\u200bresponse directly to the Telegram chat."}, "typeVersion": 1}, {"id": "5dce8414-fe7a-450a-a414-553d3e5e01cd", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [-830.8527430805248, 861.5987888475245], "parameters": {"color": 5, "width": 411.78262099325127, "height": 705.0354263931183, "content": "## HTTP REQUEST\n\nReplace **MODEL** with the desired AI model from the NeurochainAI dashboard.\n\nReplace YOUR-API-KEY-HERE with your actual NeurochainAI API key.\n\n**Models:**\nMeta-Llama-3.1-8B-Instruct-Q8_0.gguf\nMeta-Llama-3.1-8B-Instruct-Q6_K.gguf\nMistral-7B-Instruct-v0.2-GPTQ-Neurochain-custom-io\nMistral-7B-Instruct-v0.2-GPTQ-Neurochain-custom\nMistral-7B-OpenOrca-GPTQ\nMistral-7B-Instruct-v0.1-gguf-q8_0.gguf\nMistral-7B-Instruct-v0.2-GPTQ\ningredient-extractor-mistral-7b-instruct-v0.1-gguf-q8_0.gguf"}, "typeVersion": 1}, {"id": "3540e1fa-01f8-4b5e-ad7a-1b1c5cd90d08", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [-840, 220], "parameters": {"color": 6, "width": 236.80242230495116, "height": 535.7153791682382, "content": "## This node removes the /flux prefix."}, "typeVersion": 1}, {"id": "6720b734-c0ae-4c88-adb6-3931467c780d", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [220, 444], "parameters": {"color": 3, "width": 593.1328365275054, "height": 403.9345258807414, "content": "## ERROR"}, "typeVersion": 1}, {"id": "30332278-399d-4c8f-8470-dfb967764455", "name": "Sticky Note5", "type": "n8n-nodes-base.stickyNote", "position": [-320, 220], "parameters": {"color": 5, "width": 384.60321058533617, "height": 538.7613862505775, "content": "## HTTP REQUEST\n\nReplace **MODEL** with the desired AI model from the NeurochainAI dashboard.\n\nReplace YOUR-API-KEY-HERE with your actual NeurochainAI API key.\n\n**Models:**\nsuper-flux1-schnell-gguf\nflux1-schnell-gguf"}, "typeVersion": 1}, {"id": "09f17d6a-6229-49ad-b77b-243712552f2b", "name": "Code1", "type": "n8n-nodes-base.code", "position": [-780, 480], "parameters": {"jsCode": "// Acessa a mensagem original que est\u00e1 em $json.message.text\nconst userMessage = $json.message.text;\n\n// Remover o prefixo '/flux' e qualquer espa\u00e7o extra ap\u00f3s o comando\nconst cleanMessage = userMessage.replace(/^\\/flux\\s*/, '');\n\n// Retornar a mensagem limpa\nreturn {\n json: {\n cleanMessage: cleanMessage\n }\n};"}, "typeVersion": 2}, {"id": "0c809796-9776-4238-94b8-0779ad390bc6", "name": "Sticky Note6", "type": "n8n-nodes-base.stickyNote", "position": [-580, 220], "parameters": {"height": 535.7153791682384, "content": "## This node sends an emoji to indicate that the prompt is being processed."}, "typeVersion": 1}, {"id": "19043710-a61a-46d0-9ab9-bcdf9c94f800", "name": "Sticky Note7", "type": "n8n-nodes-base.stickyNote", "position": [220, 80], "parameters": {"color": 4, "width": 596.5768511548468, "height": 350.68162004785273, "content": "## SUCCESS\nThis node will send the AI \u200b\u200bresponse directly to the Telegram chat."}, "typeVersion": 1}, {"id": "e5715001-75a3-4da3-84bb-9aad193fe680", "name": "Switch", "type": "n8n-nodes-base.switch", "position": [-1420, 880], "parameters": {"rules": {"values": [{"outputKey": "Flux", "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": false, "typeValidation": "loose"}, "combinator": "and", "conditions": [{"id": "f5df9de6-0650-42e4-9a6e-8d1becf16c51", "operator": {"type": "string", "operation": "startsWith"}, "leftValue": "={{ $json.message.text }}", "rightValue": "/flux"}]}, "renameOutput": true}, {"outputKey": "text", "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": false, "typeValidation": "loose"}, "combinator": "and", "conditions": [{"id": "a49ecf63-3f68-4e21-a015-d0cbc227c230", "operator": {"type": "string", "operation": "contains"}, "leftValue": "={{ $json.message.text }}", "rightValue": "@NCNAI_BOT"}]}, "renameOutput": true}, {"outputKey": "DM Text", "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": false, "typeValidation": "loose"}, "combinator": "and", "conditions": [{"id": "d5ac0c9f-858a-4040-b72e-ae7b522ff60e", "operator": {"name": "filter.operator.equals", "type": "string", "operation": "equals"}, "leftValue": "={{ $json.message.chat.type }}", "rightValue": "private"}]}, "renameOutput": true}]}, "options": {"ignoreCase": true}, "looseTypeValidation": true}, "typeVersion": 3.2}, {"id": "0ebdea59-8518-4078-b07a-9aa24c5e79b5", "name": "Sticky Note8", "type": "n8n-nodes-base.stickyNote", "position": [-1840, 200], "parameters": {"width": 623.6530631885605, "height": 648.96526541807, "content": "## Instructions for Using the Template\nFollow these steps to set up and use this template:\n\n**Create a Telegram Bot**:\n- Open Telegram and search for BotFather.\n- Use the ``/newbot`` command to create your bot.\n- Follow the prompts and copy the Token provided at the end.\n-------------\n**Obtain a NeurochainAI API Key:**\n\n- Log in to the NeurochainAI Dashboard.\n- Generate an **API Key** under the Inference As Service section.\n- Ensure your account has sufficient credits for usage.\n-------------\n **Configure Telegram Nodes:**\n- Locate all Telegram nodes in the workflow and add your Telegram Bot Token to each node's credentials.\n-------------\n**Configure HTTP Request Nodes:**\n\n- Identify the NeurochainAI - Rest API and NeurochainAI - Flux nodes in the workflow.\nIn each node:\n- Enter your desired model in the Model field.\n- Replace ``YOUR-API-KEY-HERE`` with your API Key in the headers or configuration section.\n-------------\n**Save and Test:**\n- Save the workflow in N8N.\n- Test the workflow by interacting with your Telegram bot to trigger text and image generation tasks."}, "typeVersion": 1}, {"id": "06642d6b-f8e2-48b6-87e3-5f51af75d357", "name": "NeurochainAI - Flux", "type": "n8n-nodes-base.httpRequest", "onError": "continueErrorOutput", "position": [-180, 540], "parameters": {"url": "https://ncmb.neurochain.io/tasks/tti", "method": "POST", "options": {}, "jsonBody": "={\n \"model\": \"flux1-schnell-gguf\",\n \"prompt\": \"Generate an image that matches exactly this: {{ $('Code1').item.json.cleanMessage }}\",\n \"size\": \"1024x1024\",\n \"quality\": \"standard\",\n \"n\": 1,\n \"seed\": {{ Math.floor(Math.random() * 999) + 1 }}\n}", "sendBody": true, "sendHeaders": true, "specifyBody": "json", "headerParameters": {"parameters": [{"name": "Authorization", "value": "=Bearer YOUR-API-KEY-HERE"}, {"name": "Content-Type", "value": "application/json"}]}}, "typeVersion": 4.2, "alwaysOutputData": false}, {"id": "92820069-3e65-4385-8b79-9b04dd1d3b03", "name": "Switch1", "type": "n8n-nodes-base.switch", "position": [100, 600], "parameters": {"rules": {"values": [{"conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"operator": {"type": "string", "operation": "equals"}, "leftValue": "={{ $json.error.message }}", "rightValue": "400 - \"{\\\"error\\\":true,\\\"msg\\\":\\\"Prompt string is invalid\\\"}\""}]}}, {"conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "ef851d57-0618-4fe7-8469-a30971a05ee5", "operator": {"type": "string", "operation": "notEquals"}, "leftValue": "{{ $json.error.message }}", "rightValue": "400 - \"{\\\"error\\\":true,\\\"msg\\\":\\\"Prompt string is invalid\\\"}\""}]}}]}, "options": {}}, "typeVersion": 3.2}]
{"Code": {"main": [[{"node": "HTTP Request3", "type": "main", "index": 0}]]}, "Code1": {"main": [[{"node": "Telegram2", "type": "main", "index": 0}]]}, "Switch": {"main": [[{"node": "Code1", "type": "main", "index": 0}], [{"node": "TYPING - ACTION", "type": "main", "index": 0}], [{"node": "TYPING - ACTION", "type": "main", "index": 0}]]}, "Switch1": {"main": [[{"node": "Telegram6", "type": "main", "index": 0}], [{"node": "Telegram3", "type": "main", "index": 0}]]}, "Switch2": {"main": [[{"node": "No response", "type": "main", "index": 0}], [{"node": "Prompt too short", "type": "main", "index": 0}]]}, "Telegram1": {"main": [[{"node": "Telegram4", "type": "main", "index": 0}]]}, "Telegram2": {"main": [[{"node": "NeurochainAI - Flux", "type": "main", "index": 0}]]}, "Telegram3": {"main": [[{"node": "Telegram5", "type": "main", "index": 0}]]}, "Telegram6": {"main": [[{"node": "Telegram7", "type": "main", "index": 0}]]}, "HTTP Request3": {"main": [[{"node": "Telegram1", "type": "main", "index": 0}]]}, "TYPING - ACTION": {"main": [[{"node": "NeurochainAI - REST API", "type": "main", "index": 0}]]}, "Telegram Trigger": {"main": [[{"node": "Switch", "type": "main", "index": 0}]]}, "NeurochainAI - Flux": {"main": [[{"node": "Code", "type": "main", "index": 0}], [{"node": "Switch1", "type": "main", "index": 0}]]}, "NeurochainAI - REST API": {"main": [[{"node": "AI Response", "type": "main", "index": 0}], [{"node": "Switch2", "type": "main", "index": 0}]]}}
Agent:Conversational
[{"parameters": {"options": {"temperature": 0}}, "id": "b8fb087e-fb91-4b67-b1fe-7c8f94db59bc", "name": "OpenAI Chat Model1", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "typeVersion": 1, "position": [1000, 580], "credentials": {"openAiApi": {"id": "Zak03cqeLUOsgkFI", "name": "OpenAi account"}}, "notes": "IGNORED_PROPERTIES=messages"}, {"parameters": {}, "id": "0ccb184e-0fd7-4da4-a25c-2b95e0793e8b", "name": "Calculator1", "type": "@n8n/n8n-nodes-langchain.toolCalculator", "typeVersion": 1, "position": [1160, 580]}, {"parameters": {}, "id": "e0db9899-2439-4662-a212-738d48cd08d8", "name": "When clicking \"Test workflow\"", "type": "n8n-nodes-base.manualTrigger", "typeVersion": 1, "position": [800, 420]}, {"parameters": {"promptType": "define", "text": "What is the result of 30 + (10002200 / 100)? Only respond with a number.", "options": {"returnIntermediateSteps": true}}, "id": "5f23aaf0-0649-4e26-926d-9bdf59e89aa7", "name": "AI Agent1", "type": "@n8n/n8n-nodes-langchain.agent", "typeVersion": 1.4, "position": [980, 420]}]
{"OpenAI Chat Model1": {"ai_languageModel": [[{"node": "AI Agent1", "type": "ai_languageModel", "index": 0}]]}, "Calculator1": {"ai_tool": [[{"node": "AI Agent1", "type": "ai_tool", "index": 0}]]}, "When clicking \"Test workflow\"": {"main": [[{"node": "AI Agent1", "type": "main", "index": 0}]]}}
MQTT:sendMessage
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "850eb506-8c40-4257-92f9-13b39588d01a"}, {"parameters": {"topic": "TestTopic", "sendInputData": false, "message": "=MQTT-message{{Date.now()}}", "options": {"qos": 0}}, "name": "MQTT qos:1", "type": "n8n-nodes-base.mqtt", "typeVersion": 1, "position": [450, 160], "credentials": {"mqtt": {"id": "131", "name": "MQTT creds"}}, "id": "af2b9c5f-2b44-43d6-852f-436ebfc72c3c"}, {"parameters": {"topic": "TestTopic", "sendInputData": false, "message": "=MQTT-message{{Date.now()}}", "options": {"qos": 1}}, "name": "MQTT1 qos:0", "type": "n8n-nodes-base.mqtt", "typeVersion": 1, "position": [450, 310], "credentials": {"mqtt": {"id": "131", "name": "MQTT creds"}}, "id": "37d6e4f3-b06b-4bb3-8f68-ca54de4e41a9"}, {"parameters": {"topic": "TestTopic", "options": {"qos": 2}}, "name": "MQTT2 qos:2", "type": "n8n-nodes-base.mqtt", "typeVersion": 1, "position": [600, 450], "credentials": {"mqtt": {"id": "131", "name": "MQTT creds"}}, "id": "6e4693bb-23e5-4622-aa4f-2e93ce916f86"}, {"parameters": {"functionCode": "items = [\n {\n json:{\n \"message\":`MQTT-item-message${Date.now()}`\n }\n }\n]\nreturn items;"}, "name": "Function", "type": "n8n-nodes-base.function", "typeVersion": 1, "position": [450, 450], "id": "37ef3107-c80c-4bad-a5d6-3d9a349ca76a"}]
{"Start": {"main": [[{"node": "MQTT qos:1", "type": "main", "index": 0}, {"node": "MQTT1 qos:0", "type": "main", "index": 0}, {"node": "Function", "type": "main", "index": 0}]]}, "Function": {"main": [[{"node": "MQTT2 qos:2", "type": "main", "index": 0}]]}}
Hacker News to Video Template - AlexK1919
[{"id": "c777c41b-842d-4504-a1a0-ccbb034a0fdd", "name": "When clicking \u2018Test workflow\u2019", "type": "n8n-nodes-base.manualTrigger", "position": [-320, 300], "parameters": {}, "typeVersion": 1}, {"id": "74fafd7c-55a4-46ec-b4a8-33d46f2b5b54", "name": "Hacker News", "type": "n8n-nodes-base.hackerNews", "position": [-20, 300], "parameters": {"resource": "all", "additionalFields": {}}, "typeVersion": 1}, {"id": "9cd87fd2-6a38-463a-a22e-e0c34910818f", "name": "Loop Over Items", "type": "n8n-nodes-base.splitInBatches", "position": [440, 300], "parameters": {"options": {}}, "typeVersion": 3}, {"id": "611b24cd-558b-4025-a0a8-ea355ba61988", "name": "OpenAI Chat Model3", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [720, 580], "parameters": {"options": {}}, "typeVersion": 1}, {"id": "f814682c-cf6f-49a8-8ea0-48fbc64a3ebe", "name": "HTTP Request1", "type": "@n8n/n8n-nodes-langchain.toolHttpRequest", "position": [900, 580], "parameters": {"url": "={{ $json.url }}", "toolDescription": "grab the article for the ai agent to use"}, "typeVersion": 1.1}, {"id": "2a4bcf69-23f0-440d-a3b0-c8261e153c62", "name": "Structured Output Parser", "type": "@n8n/n8n-nodes-langchain.outputParserStructured", "position": [1080, 580], "parameters": {"schemaType": "manual", "inputSchema": "{\n\t\"type\": \"object\",\n\t\"properties\": {\n\t\t\"summary\": {\n\t\t\t\"type\": \"string\"\n\t\t},\n\t\t\"related\": {\n\t\t\t\"type\": \"string\"\n\t\t},\n \"image urls\": {\n\t\t\t\"type\": \"string\"\n }\n\t}\n}"}, "typeVersion": 1.2}, {"id": "83c3b8f0-8d67-48a2-a5ce-b777ea1d7b32", "name": "Upload to Minio", "type": "n8n-nodes-base.s3", "position": [4240, 1080], "parameters": {"operation": "upload", "bucketName": "=", "additionalFields": {"grantRead": true, "parentFolderKey": "="}}, "typeVersion": 1}, {"id": "05b972ff-ccab-415b-8787-aafabb3b7292", "name": "News1", "type": "n8n-nodes-base.set", "position": [2180, 320], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "ec8013d5-84b5-43c8-abcb-6986ef15939d", "name": "property_name", "type": "string", "value": "={{ $json.message.content['Article Title'] }}"}, {"id": "4d91c4fc-12a2-4fe2-a58e-02284314e1de", "name": "property_text", "type": "string", "value": "={{ $json.message.content['Article Blurb'] }}"}, {"id": "cad2b795-8b71-415f-a100-700d9ec62bbd", "name": "property_image_url", "type": "string", "value": "={{ $('If Topic').item.json.output['image urls'] }}"}]}}, "typeVersion": 3.4}, {"id": "d175d366-e672-4452-b78e-a06336ef242b", "name": "Leo - Improve Prompt", "type": "n8n-nodes-base.httpRequest", "position": [2720, 100], "parameters": {"url": "https://cloud.leonardo.ai/api/rest/v1/prompt/improve", "method": "POST", "options": {"response": {"response": {"fullResponse": true}}}, "jsonBody": "={\n \"prompt\": \"{{ $('Article Prep').item.json.message.content['Image Prompt 1'] }}\"\n}", "sendBody": true, "sendHeaders": true, "specifyBody": "json", "authentication": "genericCredentialType", "genericAuthType": "httpCustomAuth", "headerParameters": {"parameters": [{"name": "accept", "value": "application/json"}]}}, "typeVersion": 4.2}, {"id": "d8da7879-1a67-4da1-86db-f70e50b4e9da", "name": "Leo - Get imageId", "type": "n8n-nodes-base.httpRequest", "position": [3320, 100], "parameters": {"url": "=https://cloud.leonardo.ai/api/rest/v1/generations/{{ $json.body.sdGenerationJob.generationId }}", "options": {"response": {"response": {"fullResponse": true}}}, "sendHeaders": true, "authentication": "genericCredentialType", "genericAuthType": "httpCustomAuth", "headerParameters": {"parameters": [{"name": "content-type", "value": "application/json"}]}}, "typeVersion": 4.2}, {"id": "faf80246-3b1a-49c6-a277-0152428e46e1", "name": "Runway - Create Video", "type": "n8n-nodes-base.httpRequest", "position": [2520, 300], "parameters": {"url": "https://api.dev.runwayml.com/v1/image_to_video", "method": "POST", "options": {}, "sendBody": true, "sendHeaders": true, "authentication": "genericCredentialType", "bodyParameters": {"parameters": [{"name": "promptImage", "value": "={{ $json.body.generations_by_pk.generated_images[0].url }}"}, {"name": "promptText", "value": "string"}, {"name": "model", "value": "gen3a_turbo"}]}, "genericAuthType": "httpCustomAuth", "headerParameters": {"parameters": [{"name": "X-Runway-Version", "value": "2024-11-06"}]}}, "typeVersion": 4.2}, {"id": "e91c1f01-7870-4063-9557-24a6ba1d3db3", "name": "Runway - Get Video", "type": "n8n-nodes-base.httpRequest", "position": [2920, 300], "parameters": {"url": "=https://api.dev.runwayml.com/v1/tasks/{{ $json.id }}", "options": {}, "sendHeaders": true, "authentication": "genericCredentialType", "genericAuthType": "httpCustomAuth", "headerParameters": {"parameters": [{"name": "X-Runway-Version", "value": "2024-11-06"}]}}, "typeVersion": 4.2}, {"id": "41ee2665-e1aa-4d48-ade6-e37af568f211", "name": "Wait2", "type": "n8n-nodes-base.wait", "position": [2720, 300], "webhookId": "ddca5833-a40b-404a-9140-686cd4fa26cb", "parameters": {"unit": "minutes", "amount": 3}, "typeVersion": 1.1}, {"id": "091e9e07-89ba-4fe3-9fc5-278fc333dbff", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [-160, -40], "parameters": {"color": 5, "width": 341, "height": 951, "content": "# Choose your data source \n## This can be swapped for any other data source of your choosing."}, "typeVersion": 1}, {"id": "9660a593-9966-4ebe-bfd7-f884dc185d56", "name": "If Topic", "type": "n8n-nodes-base.if", "position": [1100, 320], "parameters": {"options": {}, "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "56219de5-244d-4b7f-a511-f3061572cf93", "operator": {"name": "filter.operator.equals", "type": "string", "operation": "equals"}, "leftValue": "={{ $json.output.related }}", "rightValue": "yes"}]}}, "typeVersion": 2.2}, {"id": "e47140ac-20cc-417b-a6cd-30f780dc8289", "name": "Get Image", "type": "n8n-nodes-base.httpRequest", "position": [1500, 320], "parameters": {"url": "={{ $('Article Analysis').first().json.output['image urls'] }}", "options": {"response": {"response": {"fullResponse": true}}}}, "typeVersion": 4.2}, {"id": "26f80f71-2c3a-46fe-a960-21cdbc18ce34", "name": "Prompt Settings1", "type": "n8n-nodes-base.set", "position": [2520, 100], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "56c8f20d-d9d9-4be7-ac2a-38df6ffdd722", "name": "model", "type": "string", "value": "6b645e3a-d64f-4341-a6d8-7a3690fbf042"}]}, "includeOtherFields": true}, "typeVersion": 3.4}, {"id": "ce697f6f-f8fc-4ba7-b776-17bbc2e870b7", "name": "Leo - Generate Image", "type": "n8n-nodes-base.httpRequest", "position": [2920, 100], "parameters": {"url": "https://cloud.leonardo.ai/api/rest/v1/generations", "method": "POST", "options": {"response": {"response": {"fullResponse": true}}}, "jsonBody": "={\n \"alchemy\": true,\n \"width\": 1024,\n \"height\": 768,\n \"modelId\": \"6b645e3a-d64f-4341-a6d8-7a3690fbf042\",\n \"num_images\": 1,\n \"presetStyle\": \"MONOCHROME\",\n \"prompt\": \"{{ $json.body.promptGeneration.prompt }}; Use the rule of thirds, leading lines, & balance. DO NOT INCLUDE ANY WORDS OR LABELS.\",\n \"guidance_scale\": 7,\n \"highResolution\": true,\n \"promptMagic\": false,\n \"promptMagicStrength\": 0.5,\n \"promptMagicVersion\": \"v3\",\n \"public\": false,\n \"ultra\": false,\n \"photoReal\": false,\n \"negative_prompt\": \"\"\n} ", "sendBody": true, "sendHeaders": true, "specifyBody": "json", "authentication": "genericCredentialType", "genericAuthType": "httpCustomAuth", "headerParameters": {"parameters": [{"name": "accept", "value": "application/json"}]}}, "typeVersion": 4.2}, {"id": "e2067fe5-3fae-4f97-97c0-879967efd9b8", "name": "Wait1", "type": "n8n-nodes-base.wait", "position": [3120, 100], "webhookId": "256c3814-6a52-4eb1-969a-30f9f3b8e04e", "parameters": {"amount": 30}, "typeVersion": 1.1}, {"id": "f0ba57a5-1d27-4c75-a422-4bc0e2cead9d", "name": "Limit", "type": "n8n-nodes-base.limit", "position": [240, 300], "parameters": {"keep": "lastItems", "maxItems": 50}, "typeVersion": 1}, {"id": "e01152aa-961b-4e33-a1e3-186d47d81c55", "name": "Image Analysis", "type": "@n8n/n8n-nodes-langchain.openAi", "position": [1300, 320], "parameters": {"modelId": {"__rl": true, "mode": "list", "value": "gpt-4o-mini", "cachedResultName": "GPT-4O-MINI"}, "options": {"detail": "auto"}, "resource": "image", "imageUrls": "={{ $json.output['image urls'] }}", "operation": "analyze"}, "credentials": {"openAiApi": {"id": "ysxujEYFiY5ozRTS", "name": "AlexK OpenAi Key"}}, "typeVersion": 1.6}, {"id": "ab346129-c3d5-4f51-af5e-5d63cd154981", "name": "Wait3", "type": "n8n-nodes-base.wait", "disabled": true, "position": [3080, 1020], "webhookId": "6e4a0b8d-6c31-4a98-8ec3-2509aa2087e8", "parameters": {"unit": "minutes"}, "typeVersion": 1.1}, {"id": "872c35a3-bdd5-4eec-9bac-0959f3ff78e7", "name": "Article Analysis", "type": "@n8n/n8n-nodes-langchain.agent", "onError": "continueErrorOutput", "position": [740, 300], "parameters": {"text": "=Can you tell me if the article at {{ $json.url }} is related to automation or ai? \n\nthen, create a 250 word summary of the article\n\nAlso, list any image url's related to the article content from the url. Limit to 1 image url.", "options": {"systemMessage": "You are a helpful assistant in summarizing and identifying articles related to automation and ai. \nOutput the results as:\nsummary: \nrelated: yes or no\nimage urls: "}, "promptType": "define", "hasOutputParser": true}, "typeVersion": 1.7}, {"id": "31c3a90e-10ee-4217-9b08-ff57bf17ea10", "name": "Dropbox", "type": "n8n-nodes-base.dropbox", "position": [3640, 1080], "parameters": {}, "typeVersion": 1}, {"id": "22ccd0a0-f7f6-40ca-bd09-40ed4a7fcde1", "name": "Google Drive", "type": "n8n-nodes-base.googleDrive", "position": [3840, 1080], "parameters": {"fileId": {"__rl": true, "mode": "list", "value": ""}, "options": {}, "operation": "update"}, "credentials": {"googleDriveOAuth2Api": {"id": "m8K1mbAUn7yuiEwl", "name": "AlexK1919 Google Drive account"}}, "typeVersion": 3}, {"id": "ea75931d-c1ee-4139-9bdc-7901056ba016", "name": "Microsoft OneDrive", "type": "n8n-nodes-base.microsoftOneDrive", "position": [4040, 1080], "parameters": {}, "typeVersion": 1}, {"id": "38888521-3087-4e0a-81d6-cf4b9a5dd3dd", "name": "YouTube", "type": "n8n-nodes-base.youTube", "position": [3640, 1500], "parameters": {"options": {}, "resource": "video", "operation": "upload"}, "typeVersion": 1}, {"id": "55f3decc-f952-4d2a-804d-2aec44fb2755", "name": "X", "type": "n8n-nodes-base.twitter", "position": [3840, 1500], "parameters": {"additionalFields": {}}, "typeVersion": 2}, {"id": "54c8b762-444d-4790-97a9-a2f84518492f", "name": "Instagram", "type": "n8n-nodes-base.httpRequest", "position": [4240, 1500], "parameters": {"options": {}}, "typeVersion": 4.2}, {"id": "90040f15-95c0-4ebb-818f-dde508eb0689", "name": "LinkedIn", "type": "n8n-nodes-base.linkedIn", "position": [4040, 1500], "parameters": {"additionalFields": {}}, "typeVersion": 1}, {"id": "691eb779-5fae-4f65-89eb-b1b8e5488809", "name": "Leo - Improve Prompt2", "type": "n8n-nodes-base.httpRequest", "position": [2720, 500], "parameters": {"url": "https://cloud.leonardo.ai/api/rest/v1/prompt/improve", "method": "POST", "options": {"response": {"response": {"fullResponse": true}}}, "jsonBody": "={\n \"prompt\": \"{{ $('Article Prep').item.json.message.content['Image Prompt 2'] }}\"\n}", "sendBody": true, "sendHeaders": true, "specifyBody": "json", "authentication": "genericCredentialType", "genericAuthType": "httpCustomAuth", "headerParameters": {"parameters": [{"name": "accept", "value": "application/json"}]}}, "credentials": {"httpCustomAuth": {"id": "hIzUsjbtHLmIe6uM", "name": "RunwayML Custom Auth"}}, "typeVersion": 4.2}, {"id": "076a745a-055b-459c-8af9-fa7b6740dc6f", "name": "Wait4", "type": "n8n-nodes-base.wait", "position": [2720, 700], "webhookId": "89b31515-b403-4644-a2c1-970e5e774008", "parameters": {"unit": "minutes", "amount": 3}, "typeVersion": 1.1}, {"id": "adc2c993-3f89-40df-96fc-eb3ff5eafb1c", "name": "Wait6", "type": "n8n-nodes-base.wait", "position": [3120, 500], "webhookId": "2efb873f-bcbd-41d9-99da-b2b57ef5ad93", "parameters": {"amount": 30}, "typeVersion": 1.1}, {"id": "156f5735-bc20-46a9-871c-143b0772ca45", "name": "Leo - Generate Image2", "type": "n8n-nodes-base.httpRequest", "position": [2920, 500], "parameters": {"url": "https://cloud.leonardo.ai/api/rest/v1/generations", "method": "POST", "options": {"response": {"response": {"fullResponse": true}}}, "jsonBody": "={\n \"alchemy\": true,\n \"width\": 1024,\n \"height\": 768,\n \"modelId\": \"6b645e3a-d64f-4341-a6d8-7a3690fbf042\",\n \"num_images\": 1,\n \"presetStyle\": \"MONOCHROME\",\n \"prompt\": \"{{ $json.body.promptGeneration.prompt }}; Use the rule of thirds, leading lines, & balance. DO NOT INCLUDE ANY WORDS OR LABELS.\",\n \"guidance_scale\": 7,\n \"highResolution\": true,\n \"promptMagic\": false,\n \"promptMagicStrength\": 0.5,\n \"promptMagicVersion\": \"v3\",\n \"public\": false,\n \"ultra\": false,\n \"photoReal\": false,\n \"negative_prompt\": \"\"\n} ", "sendBody": true, "sendHeaders": true, "specifyBody": "json", "authentication": "genericCredentialType", "genericAuthType": "httpCustomAuth", "headerParameters": {"parameters": [{"name": "accept", "value": "application/json"}]}}, "typeVersion": 4.2}, {"id": "4f270fa8-4da2-44f0-927f-3509fd9f8f7d", "name": "Leo - Get imageId2", "type": "n8n-nodes-base.httpRequest", "position": [3320, 500], "parameters": {"url": "=https://cloud.leonardo.ai/api/rest/v1/generations/{{ $json.body.sdGenerationJob.generationId }}", "options": {"response": {"response": {"fullResponse": true}}}, "sendHeaders": true, "authentication": "genericCredentialType", "genericAuthType": "httpCustomAuth", "headerParameters": {"parameters": [{"name": "content-type", "value": "application/json"}]}}, "typeVersion": 4.2}, {"id": "49c0e7ba-bf9c-4819-b479-61aa099ab9ab", "name": "Runway - Create Video2", "type": "n8n-nodes-base.httpRequest", "position": [2520, 700], "parameters": {"url": "https://api.dev.runwayml.com/v1/image_to_video", "method": "POST", "options": {}, "sendBody": true, "sendHeaders": true, "authentication": "genericCredentialType", "bodyParameters": {"parameters": [{"name": "promptImage", "value": "={{ $json.body.generations_by_pk.generated_images[0].url }}"}, {"name": "promptText", "value": "string"}, {"name": "model", "value": "gen3a_turbo"}]}, "genericAuthType": "httpCustomAuth", "headerParameters": {"parameters": [{"name": "X-Runway-Version", "value": "2024-11-06"}]}}, "credentials": {"httpCustomAuth": {"id": "hIzUsjbtHLmIe6uM", "name": "RunwayML Custom Auth"}}, "typeVersion": 4.2}, {"id": "d03eb190-5fc0-4b7e-ad65-88ece3ab833d", "name": "Runway - Get Video2", "type": "n8n-nodes-base.httpRequest", "position": [2920, 700], "parameters": {"url": "=https://api.dev.runwayml.com/v1/tasks/{{ $json.id }}", "options": {}, "sendHeaders": true, "authentication": "genericCredentialType", "genericAuthType": "httpCustomAuth", "headerParameters": {"parameters": [{"name": "X-Runway-Version", "value": "2024-11-06"}]}}, "typeVersion": 4.2}, {"id": "0072563d-b87d-47c5-80fd-ed3c051b3287", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [3580, 940], "parameters": {"color": 6, "width": 882, "height": 372, "content": "# Upload Assets\nYou can extend this workflow further by uploading the generated assets to your storage option of choice."}, "typeVersion": 1}, {"id": "a0b2377e-57ea-47e9-83c9-3e58372610e5", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [3580, 1360], "parameters": {"color": 6, "width": 882, "height": 372, "content": "# Post to Social Media\nYou can extend this workflow further by posting the generated assets to social media."}, "typeVersion": 1}, {"id": "708fe6a0-4899-462b-9a08-fadea7c7e195", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [2420, -40], "parameters": {"color": 4, "width": 1114, "height": 943, "content": "# Generate Images and Videos"}, "typeVersion": 1}, {"id": "5bbb6552-ec3a-42ea-a911-993f67a6c8dc", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [2420, 940], "parameters": {"color": 5, "width": 1114, "height": 372, "content": "# Stitch it all together"}, "typeVersion": 1}, {"id": "25f4cc09-fbff-4c10-b706-30df5840b794", "name": "Cre - Generate Video1", "type": "n8n-nodes-base.httpRequest", "position": [2880, 1020], "parameters": {"url": "https://api.creatomate.com/v1/renders", "method": "POST", "options": {"response": {"response": {"fullResponse": true}}}, "jsonBody": "={\n \"max_width\": 480,\n \"template_id\": \"enterTemplateID\",\n \"modifications\": {\n \"Scenes.elements\": [\n {\n \"name\": \"Intro Comp\",\n \"type\": \"composition\",\n \"track\": 1,\n \"elements\": [\n {\n \"name\": \"Image-1\",\n \"type\": \"image\",\n \"source\": \"{{ $('Leo - Get imageId').item.json.body.generations_by_pk.generated_images[0].url }}\"\n },\n {\n \"name\": \"Subtitles-1\",\n \"type\": \"text\",\n \"transcript_source\": \"Voiceover-1\",\n \"width\": \"86.66%\",\n \"height\": \"37.71%\",\n \"x_alignment\": \"50%\",\n \"y_alignment\": \"50%\",\n \"fill_color\": \"#ffffff\",\n \"stroke_color\": \"#333333\",\n \"stroke_width\": \"1.05 vmin\",\n \"font_family\": \"Inter\",\n \"font_weight\": \"700\",\n \"font_size\": \"8 vmin\",\n \"background_color\": \"rgba(255,255,255,0.2)\",\n \"background_x_padding\": \"26%\",\n \"background_y_padding\": \"7%\",\n \"background_border_radius\": \"28%\",\n \"transcript_effect\": \"highlight\",\n \"transcript_color\": \"#ff5900\"\n },\n {\n \"name\": \"Voiceover-1\",\n \"type\": \"audio\",\n \"source\": \"{{ $('News1').item.json.property_name }}\",\n \"provider\": \"openai model=tts-1 voice=onyx\"\n }\n ]\n },\n {\n \"name\": \"Auto Scene Comp\",\n \"type\": \"composition\",\n \"track\": 1,\n \"elements\": [\n {\n \"name\": \"Video-2\",\n \"type\": \"video\",\n \"source\": \"{{ $('Runway - Get Video').first().json.output[0] }}\",\n \"loop\": true\n },\n {\n \"name\": \"Subtitles-2\",\n \"type\": \"text\",\n \"transcript_source\": \"Voiceover-2\",\n \"y\": \"78.2173%\",\n \"width\": \"86.66%\",\n \"height\": \"37.71%\",\n \"x_alignment\": \"50%\",\n \"y_alignment\": \"50%\",\n \"fill_color\": \"#ffffff\",\n \"stroke_color\": \"#333333\",\n \"stroke_width\": \"1.05 vmin\",\n \"font_family\": \"Inter\",\n \"font_weight\": \"700\",\n \"font_size\": \"8 vmin\",\n \"background_color\": \"rgba(255,255,255,0.2)\",\n \"background_x_padding\": \"26%\",\n \"background_y_padding\": \"7%\",\n \"background_border_radius\": \"28%\",\n \"transcript_effect\": \"highlight\",\n \"transcript_color\": \"#ff5900\"\n },\n {\n \"name\": \"Voiceover-2\",\n \"type\": \"audio\",\n \"source\": \"{{ $('Article Prep').item.json.message.content['Summary Blurb 1'] }}\",\n \"provider\": \"openai model=tts-1 voice=onyx\"\n }\n ]\n },\n {\n \"name\": \"Auto Scene Comp\",\n \"type\": \"composition\",\n \"track\": 1,\n \"elements\": [\n {\n \"name\": \"Video-3\",\n \"type\": \"video\",\n \"source\": \"{{ $('Runway - Get Video2').first().json.output[0] }}\",\n \"loop\": true\n },\n {\n \"name\": \"Subtitles-3\",\n \"type\": \"text\",\n \"transcript_source\": \"Voiceover-3\",\n \"y\": \"78.2173%\",\n \"width\": \"86.66%\",\n \"height\": \"37.71%\",\n \"x_alignment\": \"50%\",\n \"y_alignment\": \"50%\",\n \"fill_color\": \"#ffffff\",\n \"stroke_color\": \"#333333\",\n \"stroke_width\": \"1.05 vmin\",\n \"font_family\": \"Inter\",\n \"font_weight\": \"700\",\n \"font_size\": \"8 vmin\",\n \"background_color\": \"rgba(255,89,0,0.5)\",\n \"background_x_padding\": \"26%\",\n \"background_y_padding\": \"7%\",\n \"background_border_radius\": \"28%\",\n \"transcript_effect\": \"highlight\",\n \"transcript_color\": \"#ff0040\"\n },\n {\n \"name\": \"Voiceover-3\",\n \"type\": \"audio\",\n \"source\": \"{{ $('Article Prep').item.json.message.content['Summary Blurb 2'] }}\",\n \"provider\": \"openai model=tts-1 voice=onyx\"\n }\n ]\n }\n ]\n }\n}", "sendBody": true, "specifyBody": "json", "authentication": "genericCredentialType", "genericAuthType": "httpCustomAuth"}, "credentials": {"httpCustomAuth": {"id": "hIzUsjbtHLmIe6uM", "name": "RunwayML Custom Auth"}}, "typeVersion": 4.2}, {"id": "7093de7b-a4e3-4363-8038-1002f7b20fbc", "name": "Cre - Get Video", "type": "n8n-nodes-base.httpRequest", "position": [3280, 1020], "parameters": {"url": "=https://api.creatomate.com/v1/renders/{{ $json.body.body[0].id }}", "options": {"response": {"response": {"fullResponse": true}}}, "authentication": "genericCredentialType", "genericAuthType": "httpCustomAuth"}, "credentials": {"httpCustomAuth": {"id": "hIzUsjbtHLmIe6uM", "name": "RunwayML Custom Auth"}}, "typeVersion": 4.2}, {"id": "a57b719f-b299-431e-9c85-fa333e38b6a7", "name": "Sticky Note6", "type": "n8n-nodes-base.stickyNote", "position": [660, -40], "parameters": {"color": 3, "width": 1033, "height": 951, "content": "# Article Analysis - Is it the right topic?"}, "typeVersion": 1}, {"id": "60b879a0-8b7f-40f1-ae70-ac94e4675b38", "name": "Sticky Note7", "type": "n8n-nodes-base.stickyNote", "position": [1740, -40], "parameters": {"color": 3, "width": 630, "height": 947, "content": "# Prepare the article for content generation"}, "typeVersion": 1}, {"id": "afaf8437-ee52-434b-a267-8dbaff0e1922", "name": "Article Prep", "type": "@n8n/n8n-nodes-langchain.openAi", "position": [1820, 320], "parameters": {"modelId": {"__rl": true, "mode": "list", "value": "gpt-4o-mini", "cachedResultName": "GPT-4O-MINI"}, "options": {}, "messages": {"values": [{"content": "=prepare the following summary for a newsletter where the article will be 1 of several presented in the newsletter:\n\n{{ $('Article Analysis').first().json.output.summary }}\n\nMake sure the Article Blurb lenght is less than 15 words.\n\nThen, create 2 Summary Blurbs, making sure each is less than 15 words.\n\nAlso create 2 image prompts that is less than 15 words long for each Summary Blurb"}, {"role": "system", "content": "Output in markdown format\nArticle Title\nArticle Blurb\nSummary Blurb 1\nSummary Blurb 2\nArticle Image\nImage Prompt 1\nImage Prompt 2"}]}, "jsonOutput": true}, "credentials": {"openAiApi": {"id": "ysxujEYFiY5ozRTS", "name": "AlexK OpenAi Key"}}, "typeVersion": 1.6}, {"id": "e7c95d56-86e1-4456-a6d3-9c8b9fc3a53c", "name": "Sticky Note5", "type": "n8n-nodes-base.stickyNote", "position": [-620, -40], "parameters": {"color": 6, "width": 252, "height": 946, "content": "# AlexK1919 \n![Alex Kim](https://media.licdn.com/dms/image/v2/D5603AQFOYMkqCPl6Sw/profile-displayphoto-shrink_400_400/profile-displayphoto-shrink_400_400/0/1718309808352?e=1736985600&v=beta&t=pQKm7lQfUU1ytuC2Gq1PRxNY-XmROFWbo-BjzUPxWOs)\n\n#### I\u2019m Alex Kim, an AI-Native Workflow Automation Architect Building Solutions to Optimize your Personal and Professional Life.\n\n### Workflow Overview Video\nhttps://youtu.be/XaKybLDUlLk\n\n### About Me\nhttps://beacons.ai/alexk1919\n\n### Product Used \n[Leonardo.ai](https://leonardo.ai)\n[RunwayML](https://runwayml.com/)\n[Creatomate](https://creatomate.com/)\n"}, "typeVersion": 1}, {"id": "32e2803e-bf7c-4da4-a4ae-c9b6fa5ae226", "name": "Sticky Note8", "type": "n8n-nodes-base.stickyNote", "position": [3280, 1180], "parameters": {"color": 7, "width": 180, "height": 100, "content": "Don't forget to connect this last node to the loop to process additional items"}, "typeVersion": 1}]
{"X": {"main": [[{"node": "LinkedIn", "type": "main", "index": 0}]]}, "Limit": {"main": [[{"node": "Loop Over Items", "type": "main", "index": 0}]]}, "News1": {"main": [[{"node": "Prompt Settings1", "type": "main", "index": 0}]]}, "Wait1": {"main": [[{"node": "Leo - Get imageId", "type": "main", "index": 0}]]}, "Wait2": {"main": [[{"node": "Runway - Get Video", "type": "main", "index": 0}]]}, "Wait3": {"main": [[{"node": "Cre - Get Video", "type": "main", "index": 0}]]}, "Wait4": {"main": [[{"node": "Runway - Get Video2", "type": "main", "index": 0}]]}, "Wait6": {"main": [[{"node": "Leo - Get imageId2", "type": "main", "index": 0}]]}, "Dropbox": {"main": [[{"node": "Google Drive", "type": "main", "index": 0}]]}, "YouTube": {"main": [[{"node": "X", "type": "main", "index": 0}]]}, "If Topic": {"main": [[{"node": "Image Analysis", "type": "main", "index": 0}], [{"node": "Loop Over Items", "type": "main", "index": 0}]]}, "LinkedIn": {"main": [[{"node": "Instagram", "type": "main", "index": 0}]]}, "Get Image": {"main": [[{"node": "Article Prep", "type": "main", "index": 0}]]}, "Hacker News": {"main": [[{"node": "Limit", "type": "main", "index": 0}]]}, "Article Prep": {"main": [[{"node": "News1", "type": "main", "index": 0}]]}, "Google Drive": {"main": [[{"node": "Microsoft OneDrive", "type": "main", "index": 0}]]}, "HTTP Request1": {"ai_tool": [[{"node": "Article Analysis", "type": "ai_tool", "index": 0}]]}, "Image Analysis": {"main": [[{"node": "Get Image", "type": "main", "index": 0}]]}, "Loop Over Items": {"main": [[], [{"node": "Article Analysis", "type": "main", "index": 0}]]}, "Article Analysis": {"main": [[{"node": "If Topic", "type": "main", "index": 0}], [{"node": "Loop Over Items", "type": "main", "index": 0}]]}, "Prompt Settings1": {"main": [[{"node": "Leo - Improve Prompt", "type": "main", "index": 0}]]}, "Leo - Get imageId": {"main": [[{"node": "Runway - Create Video", "type": "main", "index": 0}]]}, "Leo - Get imageId2": {"main": [[{"node": "Runway - Create Video2", "type": "main", "index": 0}]]}, "Microsoft OneDrive": {"main": [[{"node": "Upload to Minio", "type": "main", "index": 0}]]}, "OpenAI Chat Model3": {"ai_languageModel": [[{"node": "Article Analysis", "type": "ai_languageModel", "index": 0}]]}, "Runway - Get Video": {"main": [[{"node": "Leo - Improve Prompt2", "type": "main", "index": 0}]]}, "Runway - Get Video2": {"main": [[{"node": "Cre - Generate Video1", "type": "main", "index": 0}]]}, "Leo - Generate Image": {"main": [[{"node": "Wait1", "type": "main", "index": 0}]]}, "Leo - Improve Prompt": {"main": [[{"node": "Leo - Generate Image", "type": "main", "index": 0}]]}, "Cre - Generate Video1": {"main": [[{"node": "Wait3", "type": "main", "index": 0}]]}, "Leo - Generate Image2": {"main": [[{"node": "Wait6", "type": "main", "index": 0}]]}, "Leo - Improve Prompt2": {"main": [[{"node": "Leo - Generate Image2", "type": "main", "index": 0}]]}, "Runway - Create Video": {"main": [[{"node": "Wait2", "type": "main", "index": 0}]]}, "Runway - Create Video2": {"main": [[{"node": "Wait4", "type": "main", "index": 0}]]}, "Structured Output Parser": {"ai_outputParser": [[{"node": "Article Analysis", "type": "ai_outputParser", "index": 0}]]}, "When clicking \u2018Test workflow\u2019": {"main": [[{"node": "Hacker News", "type": "main", "index": 0}]]}}
OpenAI-model-examples
[{"id": "ad6dc2cd-21cc-4563-86ba-f78cc4a55543", "name": "When clicking \"Execute Workflow\"", "type": "n8n-nodes-base.manualTrigger", "position": [-640, 380], "parameters": {}, "typeVersion": 1}, {"id": "b370da23-ead4-4221-b7fe-a9d943f7fbb9", "name": "davinci-003-complete", "type": "n8n-nodes-base.openAi", "position": [1160, 60], "parameters": {"prompt": "={{ $json.text }}\n\nTl;dr:", "options": {"maxTokens": 500}}, "credentials": {"openAiApi": {"id": "63", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "5e04f355-36c0-4540-8e65-68118cb73135", "name": "ChatGPT-ex2", "type": "n8n-nodes-base.openAi", "position": [1160, 740], "parameters": {"prompt": {"messages": [{"role": "system", "content": "=You are an assistant. Always add 5 emojis to the end of your answer."}, {"content": "=Write tl;dr of the wollowing text: {{ $json.text}}"}]}, "options": {"maxTokens": 500, "temperature": 0.8}, "resource": "chat"}, "credentials": {"openAiApi": {"id": "63", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "16a7cf80-16e3-44f9-b15c-7501417fe38f", "name": "davinci-003-edit", "type": "n8n-nodes-base.openAi", "position": [1340, 60], "parameters": {"input": "={{ $json.text }}", "options": {}, "operation": "edit", "instruction": "translate to German"}, "credentials": {"openAiApi": {"id": "63", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "95254870-65c3-4714-83fb-20ba2c0ca007", "name": "ChatGPT-ex1.1", "type": "n8n-nodes-base.openAi", "position": [1160, 380], "parameters": {"prompt": {"messages": [{"content": "=Write a Tl;dr of the followint text: {{ $json.text }}"}]}, "options": {"maxTokens": 500}, "resource": "chat"}, "credentials": {"openAiApi": {"id": "63", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "be9c4820-18b0-46fd-a5a0-51a5dc3ebed5", "name": "ChatGPT-ex1.2", "type": "n8n-nodes-base.openAi", "position": [1340, 380], "parameters": {"prompt": {"messages": [{"content": "=Translate to German the following text: {{ $json.message.content }}"}]}, "options": {"maxTokens": 500}, "resource": "chat"}, "credentials": {"openAiApi": {"id": "63", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "c52c875b-5270-44ac-bfca-ce25124e3d04", "name": "Text-example", "type": "n8n-nodes-base.code", "position": [540, 380], "parameters": {"jsCode": "return [\n {\n \"text\": \"Science Underground with your host, Anissa Ramirez. In this episode, how to stop your bathroom mirror from fogging up with a little dash of science. I'm Anissa Ramirez and this is Science Underground. We've all been there. You come out of the shower and you go to the mirror and you can't see yourself because the mirror is fogged up. You can't see anything until you first clear off the surface. Every morning it's the same thing. Shower, fog, shower, fog, shower, fog. There's gotta be a better way. Well, there is. Before you take the next shower, wipe a bit of shaving cream on the surface of the mirror and keep it there for about 30 seconds. Then wipe it off. The next time you take a shower, that part of the mirror that was covered with shaving cream will be amazingly fog free. And the shaving cream will keep the water from fogging up for a few weeks. So what's going on? Well, the fog on your mirror is made out of little itty bitty water droplets. If you were to look at the surface of the mirror under the microscope, you will see that the surface looks like a newly waxed car. The water forms beads, preventing you from seeing yourself in the mirror. When you add shaving cream to the surface of the mirror, the water droplets are no longer beads. They are a thin, smoothed out layer of water. Just like the surface of an old car that hasn't been waxed. Scientists would say that the shaving cream has changed the surface tension of the mirror. So there you have it. There's the answer. The secret to fogless mirrors is shaving cream. A little dab of science will do you. I'm Anissa Ramirez, and this was Science Underground.\"\n }\n];"}, "typeVersion": 1}, {"id": "45d3bad7-0e9a-426b-b4e9-b3568181d9dc", "name": "Code-ex3.1", "type": "n8n-nodes-base.code", "position": [1160, 1100], "parameters": {"jsCode": "var intext = $input.first().json;\n\nvar messages = [\n {\"role\": \"system\", \"content\": \"You are a helpful assistant. Write a Tl;dr of each user message\"},\n {\"role\": \"user\", \"content\": intext.text}\n];\n\nreturn {\"messages\":messages};"}, "typeVersion": 1}, {"id": "4db3de05-51a7-46ea-a818-508bdcb04582", "name": "ChatGPT-ex3.1", "type": "n8n-nodes-base.httpRequest", "position": [1340, 1100], "parameters": {"url": "https://api.openai.com/v1/chat/completions", "method": "POST", "options": {}, "sendBody": true, "authentication": "predefinedCredentialType", "bodyParameters": {"parameters": [{"name": "model", "value": "gpt-3.5-turbo"}, {"name": "temperature", "value": "={{ parseFloat(0.8) }}"}, {"name": "n", "value": "={{ Number(1) }}"}, {"name": "max_tokens", "value": "={{ Number(500) }}"}, {"name": "messages", "value": "={{ $json.messages }}"}]}, "nodeCredentialType": "openAiApi"}, "credentials": {"openAiApi": {"id": "63", "name": "OpenAi account"}}, "typeVersion": 3}, {"id": "709fcd7c-deb3-469d-b16b-62d4d36d100d", "name": "ChatGPT-ex3.2", "type": "n8n-nodes-base.openAi", "position": [1880, 1100], "parameters": {"prompt": {"messages": [{"role": "system", "content": "=You are now a DALLE-2 prompt generation tool that will generate a suitable prompt. Write a promt to create a cover image relevant to the user input. The image should be in a comic style of the 60-s."}, {"content": "={{ $json.choices[0].message.content }}"}]}, "options": {"maxTokens": 500, "temperature": 0.8}, "resource": "chat"}, "credentials": {"openAiApi": {"id": "63", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "6b32cc45-5ba2-4605-b690-3929ec9acecf", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [900, -60], "parameters": {"width": 746.6347949130579, "height": 295.50954755505853, "content": "## The old way of using text completion and text edit\n### Davinci model is 10 times more expensive then ChatGPT, consider switching to the new API:\nhttps://openai.com/blog/introducing-chatgpt-and-whisper-apis\n"}, "typeVersion": 1}, {"id": "3cc74d77-7b02-40fd-83d8-f540d5ff34ab", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [-160, 260], "parameters": {"width": 428.4578974150008, "height": 316.6202633391793, "content": "## Whisper-1 example\n### Prepare your audio file and send it to whisper-1 transcription model"}, "typeVersion": 1}, {"id": "6ba8069a-485c-497c-8b27-4c7562fbccab", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [380, 280], "parameters": {"width": 421.9002034748082, "height": 302.4086532331564, "content": "## An example of transcribed text\n### Please pause this node when using real audio files"}, "typeVersion": 1}, {"id": "c71001e6-b80f-41dd-bcdd-10927014b374", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [900, 280], "parameters": {"width": 747.8556016477869, "height": 288.18470714667706, "content": "## ChatGPT example 1.1 and 1.2 \n### Write a Tl;dr of the text input\n### Translate it to German\n### only user content provided"}, "typeVersion": 1}, {"id": "4605be68-4c57-404f-8624-e095c8e86ff9", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [900, 620], "parameters": {"width": 742.9723747088658, "height": 288.18470714667706, "content": "## ChatGPT example 2 \n### Use system content to provide general instruction\n### Manual setup of system and user content"}, "typeVersion": 1}, {"id": "f5b72d7a-655a-4cc9-b722-b75429889d1d", "name": "Sticky Note5", "type": "n8n-nodes-base.stickyNote", "position": [900, 960], "parameters": {"width": 739.309954504675, "height": 288.18470714667706, "content": "## ChatGPT example 3.1\n### When using ChatGPT programmatically, create an array of system / user / assistant contents and append them one after another\n### Call ChatGPT API via HTTP Request node to provide all messages at once"}, "typeVersion": 1}, {"id": "a003a4db-1960-4867-8dfe-3114cf0742f3", "name": "DALLE-ex3.3", "type": "n8n-nodes-base.openAi", "position": [2060, 1100], "parameters": {"prompt": "={{ $json.message.content }}", "options": {"n": 4, "size": "512x512"}, "resource": "image"}, "credentials": {"openAiApi": {"id": "63", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "d71a01ff-4d47-4675-964c-c47820d3989b", "name": "Sticky Note6", "type": "n8n-nodes-base.stickyNote", "position": [1720, 960], "parameters": {"width": 611.1252473579985, "height": 284.52228694248623, "content": "## ChatGPT example 3.2 & DALLE-2 example 3.3\n### Use ChatGPT to create a prompt for a cover image of the Tl;dr message\n### Use OpenAI node to generate 4 images using the auto-generated prompt"}, "typeVersion": 1}, {"id": "f5a55cfe-c110-4833-9668-1f1ba895860f", "name": "ChatGPT-ex4", "type": "n8n-nodes-base.openAi", "position": [1240, 1420], "parameters": {"model": "gpt-3.5-turbo-0301", "prompt": {"messages": [{"content": "={{ $json.prompt }}"}]}, "options": {"maxTokens": 500, "temperature": 0.5}, "resource": "chat"}, "credentials": {"openAiApi": {"id": "63", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "8a9f7a20-187c-4494-8005-b10d066d04e2", "name": "Set-ex4", "type": "n8n-nodes-base.set", "position": [1060, 1420], "parameters": {"values": {"string": [{"name": "model", "value": "code-davinci-002"}, {"name": "suffix", "value": "</svg>"}, {"name": "prompt", "value": "=Create an HTML code with and SVG tag that contains random shapes of various colors. Include triangles, lines, ellipses and other shapes"}]}, "options": {}, "keepOnlySet": true}, "typeVersion": 1}, {"id": "68fcc6a2-761c-42ac-8778-313c8db7d53c", "name": "HTML-ex4", "type": "n8n-nodes-base.html", "position": [1420, 1420], "parameters": {"html": "{{$json.message.content }}"}, "typeVersion": 1}, {"id": "1f70cf3f-b6a9-4ea7-9486-c7565e6951b7", "name": "Sticky Note7", "type": "n8n-nodes-base.stickyNote", "position": [900, 1300], "parameters": {"width": 739.309954504675, "height": 288.18470714667706, "content": "## ChatGPT example 4\n### Generate HTML code that contains SVG image"}, "typeVersion": 1}, {"id": "d857acd9-ea74-44d2-ac89-66b1fac4645f", "name": "Sticky Note8", "type": "n8n-nodes-base.stickyNote", "position": [900, 1640], "parameters": {"width": 739.309954504675, "height": 288.18470714667706, "content": "## ChatGPT example 5\n### Provide several outputs. Useful for quick replies (i.e. in Gmail / Outlook)"}, "typeVersion": 1}, {"id": "fe64533a-4cd4-4adc-a48a-8abf3f2d61d7", "name": "ChatGPT-ex", "type": "n8n-nodes-base.openAi", "position": [1160, 1760], "parameters": {"model": "gpt-3.5-turbo-0301", "prompt": {"messages": [{"role": "system", "content": "Act as an e-mail client. Provide a five to eight word answers to a given user messages."}, {"content": "Hi There! My name is Jack.\n\nI'm sending you an overview of my pricelist attached.\nCould you please reply to me within 3 days?\n\nBest regards and have a nice day,\nJack"}]}, "options": {"n": 3, "maxTokens": 15, "temperature": 0.8}, "resource": "chat"}, "credentials": {"openAiApi": {"id": "63", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "6c9f8a70-99ae-4310-8e6a-26cc6f75b3a2", "name": "LoadMP3", "type": "n8n-nodes-base.readBinaryFiles", "disabled": true, "position": [-80, 380], "parameters": {"fileSelector": "/home/node/.n8n/OpenAI-article/Using Science to Stop Your Mirror From Fogging Up.mp3"}, "typeVersion": 1}, {"id": "0edc1996-6484-4e62-a47b-5666dfbb3546", "name": "Whisper-transcribe", "type": "n8n-nodes-base.httpRequest", "disabled": true, "position": [100, 380], "parameters": {"url": "https://api.openai.com/v1/audio/transcriptions", "method": "POST", "options": {}, "sendBody": true, "contentType": "multipart-form-data", "authentication": "predefinedCredentialType", "bodyParameters": {"parameters": [{"name": "model", "value": "whisper-1"}, {"name": "file", "parameterType": "formBinaryData", "inputDataFieldName": "data"}]}, "nodeCredentialType": "openAiApi"}, "credentials": {"openAiApi": {"id": "63", "name": "OpenAi account"}}, "typeVersion": 3}, {"id": "c12ba294-bdcd-4ece-8370-fa6a83a8ef0b", "name": "Sticky Note9", "type": "n8n-nodes-base.stickyNote", "position": [-840, 260], "parameters": {"width": 596.9600747621192, "height": 320.63203364295396, "content": "## Do not run the whole workflow, it's rather slow\n### Better execute the last node of each branch or simply disconnect branches that are not needed"}, "typeVersion": 1}]
{"LoadMP3": {"main": [[{"node": "Whisper-transcribe", "type": "main", "index": 0}]]}, "Set-ex4": {"main": [[{"node": "ChatGPT-ex4", "type": "main", "index": 0}]]}, "Code-ex3.1": {"main": [[{"node": "ChatGPT-ex3.1", "type": "main", "index": 0}]]}, "ChatGPT-ex4": {"main": [[{"node": "HTML-ex4", "type": "main", "index": 0}]]}, "Text-example": {"main": [[{"node": "davinci-003-complete", "type": "main", "index": 0}, {"node": "ChatGPT-ex1.1", "type": "main", "index": 0}, {"node": "ChatGPT-ex2", "type": "main", "index": 0}, {"node": "Code-ex3.1", "type": "main", "index": 0}]]}, "ChatGPT-ex1.1": {"main": [[{"node": "ChatGPT-ex1.2", "type": "main", "index": 0}]]}, "ChatGPT-ex3.1": {"main": [[{"node": "ChatGPT-ex3.2", "type": "main", "index": 0}]]}, "ChatGPT-ex3.2": {"main": [[{"node": "DALLE-ex3.3", "type": "main", "index": 0}]]}, "Whisper-transcribe": {"main": [[{"node": "Text-example", "type": "main", "index": 0}]]}, "davinci-003-complete": {"main": [[{"node": "davinci-003-edit", "type": "main", "index": 0}]]}, "When clicking \"Execute Workflow\"": {"main": [[{"node": "LoadMP3", "type": "main", "index": 0}, {"node": "Set-ex4", "type": "main", "index": 0}, {"node": "ChatGPT-ex", "type": "main", "index": 0}]]}}
Hubspot:Contact:upsert getall search getRecentlyCreatedUpdated get delete:Company:getall searchByDomain getRecentlyCreated update getRecentlyModified delete
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "d8cbfb90-51ba-45b9-a701-1d278992b7d5"}, {"parameters": {"resource": "contact", "email": "nodeqa@n8n.io", "additionalFields": {}}, "name": "Hubspot", "type": "n8n-nodes-base.hubspot", "typeVersion": 1, "position": [410, 260], "credentials": {"hubspotApi": {"id": "11", "name": "hubsport api key"}}, "notes": "IGNORED_PROPERTIES=associated-company", "id": "6b417cab-bf37-4b57-8fdf-24f011106618"}, {"parameters": {"resource": "contact", "operation": "getRecentlyCreatedUpdated", "limit": 1, "filters": {}}, "name": "Hubspot1", "type": "n8n-nodes-base.hubspot", "typeVersion": 1, "position": [1320, 260], "credentials": {"hubspotApi": {"id": "11", "name": "hubsport api key"}}, "id": "0be3e59d-9094-4422-a834-bcc945725a75"}, {"parameters": {"resource": "contact", "operation": "getAll", "limit": 1, "additionalFields": {}}, "name": "Hubspot2", "type": "n8n-nodes-base.hubspot", "typeVersion": 1, "position": [710, 260], "credentials": {"hubspotApi": {"id": "11", "name": "hubsport api key"}}, "id": "5180a058-b5ff-481b-90aa-421f8609b091"}, {"parameters": {"resource": "contact", "operation": "search", "limit": 1, "filterGroupsUi": {"filterGroupsValues": []}, "additionalFields": {}}, "name": "Hubspot3", "type": "n8n-nodes-base.hubspot", "typeVersion": 1, "position": [1000, 260], "credentials": {"hubspotApi": {"id": "11", "name": "hubsport api key"}}, "notes": "CAP_RESULTS_LENGTH=1", "id": "2e18e4b1-d379-4fa4-b9ad-2da493c43a22"}, {"parameters": {"resource": "contact", "operation": "delete", "contactId": "={{$json[\"vid\"]}}"}, "name": "Hubspot4", "type": "n8n-nodes-base.hubspot", "typeVersion": 1, "position": [1880, 260], "credentials": {"hubspotApi": {"id": "11", "name": "hubsport api key"}}, "id": "573f1fdf-4d4e-44e4-a086-b1389dab7ff8"}, {"parameters": {"resource": "contact", "operation": "get", "contactId": "={{$json[\"vid\"]}}", "additionalFields": {}}, "name": "Hubspot5", "type": "n8n-nodes-base.hubspot", "typeVersion": 1, "position": [1600, 260], "credentials": {"hubspotApi": {"id": "11", "name": "hubsport api key"}}, "notes": "IGNORED_PROPERTIES=associated-company", "id": "ae17da34-808d-4e19-81f1-42546ec64dbc"}, {"parameters": {"functionCode": "function sleep(milliseconds) {\n return new Promise(\n resolve => setTimeout(resolve, milliseconds)\n );\n}\n\nawait sleep(1500);\n\nreturn [items[0]];"}, "name": "Function", "type": "n8n-nodes-base.function", "typeVersion": 1, "position": [1140, 260], "notesInFlow": true, "notes": "Limit Contacts to single one", "id": "702edf3d-4e2e-4091-875f-b477c842802c"}, {"parameters": {"resource": "company", "name": "n8n", "additionalFields": {"companyDomainName": "n8n.io"}}, "name": "Hubspot6", "type": "n8n-nodes-base.hubspot", "typeVersion": 1, "position": [410, 430], "credentials": {"hubspotApi": {"id": "11", "name": "hubsport api key"}}, "id": "30467fe0-8ba4-4b71-942e-0cfa7adde3c1"}, {"parameters": {"resource": "company", "operation": "getAll", "limit": 1, "options": {}}, "name": "Hubspot7", "type": "n8n-nodes-base.hubspot", "typeVersion": 1, "position": [570, 430], "credentials": {"hubspotApi": {"id": "11", "name": "hubsport api key"}}, "id": "2d35a462-2a30-4297-a7df-1aca9be285c3"}, {"parameters": {"resource": "company", "operation": "getRecentlyCreated", "limit": 1}, "name": "Hubspot8", "type": "n8n-nodes-base.hubspot", "typeVersion": 1, "position": [910, 430], "credentials": {"hubspotApi": {"id": "11", "name": "hubsport api key"}}, "id": "98a71897-123f-4c6e-a0c7-ba79e5947823"}, {"parameters": {"resource": "company", "operation": "searchByDomain", "domain": "n8n.io", "limit": 1, "options": {}}, "name": "Hubspot9", "type": "n8n-nodes-base.hubspot", "typeVersion": 1, "position": [740, 430], "alwaysOutputData": true, "credentials": {"hubspotApi": {"id": "11", "name": "hubsport api key"}}, "id": "46d6962d-f16a-4d89-92d6-bce6506f6e58"}, {"parameters": {"resource": "company", "operation": "update", "companyId": "={{$node[\"Hubspot6\"].json[\"companyId\"]}}", "updateFields": {"city": "berlin"}}, "name": "Hubspot10", "type": "n8n-nodes-base.hubspot", "typeVersion": 1, "position": [1060, 430], "credentials": {"hubspotApi": {"id": "11", "name": "hubsport api key"}}, "id": "b69304b8-5093-4988-8304-89d3ee8e2c2e"}, {"parameters": {"resource": "company", "operation": "getRecentlyModified", "limit": 1, "filters": {}}, "name": "Hubspot11", "type": "n8n-nodes-base.hubspot", "typeVersion": 1, "position": [1220, 430], "credentials": {"hubspotApi": {"id": "11", "name": "hubsport api key"}}, "id": "c0f52b10-af2e-41d2-a902-6892f14742e6"}, {"parameters": {"resource": "company", "operation": "delete", "companyId": "={{$node[\"Hubspot6\"].json[\"companyId\"]}}"}, "name": "Hubspot12", "type": "n8n-nodes-base.hubspot", "typeVersion": 1, "position": [1390, 430], "credentials": {"hubspotApi": {"id": "11", "name": "hubsport api key"}}, "id": "cc00b5ca-2611-472d-89da-4649e12afa89"}, {"parameters": {"functionCode": "function sleep(milliseconds) {\n return new Promise(\n resolve => setTimeout(resolve, milliseconds)\n );\n}\n\nawait sleep(500);\n\n// Output data\nreturn items;"}, "name": "Sleep 0.5 second", "type": "n8n-nodes-base.function", "position": [550, 260], "typeVersion": 1, "notes": "IGNORED_PROPERTIES=associated-company", "id": "d8a86813-0d02-4b5d-89f9-41818194c326"}, {"parameters": {"functionCode": "function sleep(milliseconds) {\n return new Promise(\n resolve => setTimeout(resolve, milliseconds)\n );\n}\n\nawait sleep(500);\n\n// Output data\nreturn items;"}, "name": "Sleep 0.5 second1", "type": "n8n-nodes-base.function", "position": [850, 260], "typeVersion": 1, "id": "9276f38e-185a-4844-8764-ef4e91b0bd68"}, {"parameters": {"functionCode": "function sleep(milliseconds) {\n return new Promise(\n resolve => setTimeout(resolve, milliseconds)\n );\n}\n\nawait sleep(500);\n\n// Output data\nreturn items;"}, "name": "Sleep 0.5 second2", "type": "n8n-nodes-base.function", "position": [1480, 260], "typeVersion": 1, "id": "ea72ad5a-b5b1-40f3-8f5f-9ac4fb5c37c4"}, {"parameters": {"functionCode": "function sleep(milliseconds) {\n return new Promise(\n resolve => setTimeout(resolve, milliseconds)\n );\n}\n\nawait sleep(500);\n\n// Output data\nreturn items;"}, "name": "Sleep 0.5 second3", "type": "n8n-nodes-base.function", "position": [1730, 260], "typeVersion": 1, "notes": "IGNORED_PROPERTIES=associated-company", "id": "0a60605e-e573-4386-9fe5-2198a3c838d8"}]
{"Hubspot": {"main": [[{"node": "Sleep 0.5 second", "type": "main", "index": 0}]]}, "Hubspot1": {"main": [[{"node": "Sleep 0.5 second2", "type": "main", "index": 0}]]}, "Hubspot2": {"main": [[{"node": "Sleep 0.5 second1", "type": "main", "index": 0}]]}, "Hubspot3": {"main": [[{"node": "Function", "type": "main", "index": 0}]]}, "Start": {"main": [[{"node": "Hubspot6", "type": "main", "index": 0}, {"node": "Hubspot", "type": "main", "index": 0}]]}, "Hubspot5": {"main": [[{"node": "Sleep 0.5 second3", "type": "main", "index": 0}]]}, "Function": {"main": [[{"node": "Hubspot1", "type": "main", "index": 0}]]}, "Hubspot6": {"main": [[{"node": "Hubspot7", "type": "main", "index": 0}]]}, "Hubspot7": {"main": [[{"node": "Hubspot9", "type": "main", "index": 0}]]}, "Hubspot8": {"main": [[{"node": "Hubspot10", "type": "main", "index": 0}]]}, "Hubspot9": {"main": [[{"node": "Hubspot8", "type": "main", "index": 0}]]}, "Hubspot10": {"main": [[{"node": "Hubspot11", "type": "main", "index": 0}]]}, "Hubspot11": {"main": [[{"node": "Hubspot12", "type": "main", "index": 0}]]}, "Sleep 0.5 second": {"main": [[{"node": "Hubspot2", "type": "main", "index": 0}]]}, "Sleep 0.5 second1": {"main": [[{"node": "Hubspot3", "type": "main", "index": 0}]]}, "Sleep 0.5 second2": {"main": [[{"node": "Hubspot5", "type": "main", "index": 0}]]}, "Sleep 0.5 second3": {"main": [[{"node": "Hubspot4", "type": "main", "index": 0}]]}}
Keap:Company:create getAll:Contact:upsert get getAll delete:ContactNote:create get update getAll delete:ContactTag:create getAll delete
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "9489a524-46de-44e4-b4f9-e5ff8202cc3e"}, {"parameters": {"companyName": "=Company_{{(new Date).toISOString()}}", "additionalFields": {}}, "name": "Keap", "type": "n8n-nodes-base.keap", "typeVersion": 1, "position": [600, 200], "credentials": {"keapOAuth2Api": {"id": "178", "name": "Keap OAuth2 API creds"}}, "id": "690b0194-0a2a-41a3-a6bd-b67ce0345f42"}, {"parameters": {"operation": "getAll", "limit": 1, "options": {}}, "name": "Keap1", "type": "n8n-nodes-base.keap", "typeVersion": 1, "position": [750, 200], "credentials": {"keapOAuth2Api": {"id": "178", "name": "Keap OAuth2 API creds"}}, "id": "07a5aca1-73a9-4812-9a35-0e62d814c540"}, {"parameters": {"resource": "contact", "additionalFields": {"companyId": "={{$node[\"Keap\"].json[\"id\"]}}"}, "addressesUi": {"addressesValues": []}, "emailsUi": {"emailsValues": [{"field": "EMAIL1", "email": "=fakeemail{{Date.now()}}@test.com"}]}}, "name": "Keap2", "type": "n8n-nodes-base.keap", "typeVersion": 1, "position": [750, 350], "credentials": {"keapOAuth2Api": {"id": "178", "name": "Keap OAuth2 API creds"}}, "id": "44871399-7e52-4d49-9090-32a07fc55440"}, {"parameters": {"resource": "contact", "operation": "get", "contactId": "={{$node[\"Keap2\"].json[\"id\"]}}", "options": {}}, "name": "Keap3", "type": "n8n-nodes-base.keap", "typeVersion": 1, "position": [900, 350], "credentials": {"keapOAuth2Api": {"id": "178", "name": "Keap OAuth2 API creds"}}, "id": "17a7232c-8cc9-448c-a2c0-bd1084fdd771"}, {"parameters": {"resource": "contact", "operation": "getAll", "limit": 1, "options": {}}, "name": "Keap4", "type": "n8n-nodes-base.keap", "typeVersion": 1, "position": [1040, 350], "credentials": {"keapOAuth2Api": {"id": "178", "name": "Keap OAuth2 API creds"}}, "id": "7007df2b-c66a-4a7b-b690-9d0124e73357"}, {"parameters": {"resource": "contact", "operation": "delete", "contactId": "={{$node[\"Keap2\"].json[\"id\"]}}"}, "name": "Keap5", "type": "n8n-nodes-base.keap", "typeVersion": 1, "position": [1200, 350], "credentials": {"keapOAuth2Api": {"id": "178", "name": "Keap OAuth2 API creds"}}, "id": "f61df6f5-ab1c-4344-8ab5-8f09ceddbe8b"}, {"parameters": {"resource": "contactNote", "userId": 1, "contactId": "={{$node[\"Keap2\"].json[\"id\"]}}", "additionalFields": {"body": "", "title": "=Note{Date.now()}}"}}, "name": "Keap6", "type": "n8n-nodes-base.keap", "typeVersion": 1, "position": [900, 510], "credentials": {"keapOAuth2Api": {"id": "178", "name": "Keap OAuth2 API creds"}}, "id": "1af7e3bf-9135-4ffe-a875-b6ae453a44b1"}, {"parameters": {"resource": "contactNote", "operation": "get", "noteId": "={{$node[\"Keap6\"].json[\"id\"]}}"}, "name": "Keap7", "type": "n8n-nodes-base.keap", "typeVersion": 1, "position": [1050, 510], "credentials": {"keapOAuth2Api": {"id": "178", "name": "Keap OAuth2 API creds"}}, "id": "d8252291-bbf9-4ee1-a9d4-093ae967ef12"}, {"parameters": {"resource": "contactNote", "operation": "update", "noteId": "={{$node[\"Keap6\"].json[\"id\"]}}", "additionalFields": {"title": "Updated Title"}}, "name": "Keap8", "type": "n8n-nodes-base.keap", "typeVersion": 1, "position": [1200, 510], "credentials": {"keapOAuth2Api": {"id": "178", "name": "Keap OAuth2 API creds"}}, "id": "54756d28-a79f-4427-8d5d-5c2d80ac5b17"}, {"parameters": {"resource": "contactNote", "operation": "getAll", "limit": 1, "filters": {}}, "name": "Keap9", "type": "n8n-nodes-base.keap", "typeVersion": 1, "position": [1360, 510], "credentials": {"keapOAuth2Api": {"id": "178", "name": "Keap OAuth2 API creds"}}, "id": "81bdce10-1de6-4d11-8624-1a0516931e49"}, {"parameters": {"resource": "contactNote", "operation": "delete", "noteId": "={{$node[\"Keap6\"].json[\"id\"]}}"}, "name": "Keap10", "type": "n8n-nodes-base.keap", "typeVersion": 1, "position": [1500, 510], "credentials": {"keapOAuth2Api": {"id": "178", "name": "Keap OAuth2 API creds"}}, "id": "a8cb848a-36d8-4fb6-b845-37674c6c7733"}, {"parameters": {"resource": "contactTag", "contactId": "={{$node[\"Keap2\"].json[\"id\"]}}", "tagIds": [93]}, "name": "Keap11", "type": "n8n-nodes-base.keap", "typeVersion": 1, "position": [900, 660], "credentials": {"keapOAuth2Api": {"id": "178", "name": "Keap OAuth2 API creds"}}, "id": "c81d1109-4fbb-4dde-afe4-386710f9f624"}, {"parameters": {"resource": "contactTag", "operation": "getAll", "contactId": "={{$node[\"Keap2\"].json[\"id\"]}}", "limit": 1}, "name": "Keap12", "type": "n8n-nodes-base.keap", "typeVersion": 1, "position": [1050, 660], "credentials": {"keapOAuth2Api": {"id": "178", "name": "Keap OAuth2 API creds"}}, "id": "b0c03850-0004-4680-9da0-9ea9ded1a525"}, {"parameters": {"resource": "contactTag", "operation": "delete", "contactId": "={{$node[\"Keap2\"].json[\"id\"]}}", "tagIds": "93,"}, "name": "Keap13", "type": "n8n-nodes-base.keap", "typeVersion": 1, "position": [1190, 660], "credentials": {"keapOAuth2Api": {"id": "178", "name": "Keap OAuth2 API creds"}}, "id": "311e758c-48f7-4738-862d-b34299ac6d08"}]
{"Keap": {"main": [[{"node": "Keap1", "type": "main", "index": 0}, {"node": "Keap2", "type": "main", "index": 0}]]}, "Keap2": {"main": [[{"node": "Keap6", "type": "main", "index": 0}, {"node": "Keap11", "type": "main", "index": 0}]]}, "Keap3": {"main": [[{"node": "Keap4", "type": "main", "index": 0}]]}, "Keap4": {"main": [[{"node": "Keap5", "type": "main", "index": 0}]]}, "Keap6": {"main": [[{"node": "Keap7", "type": "main", "index": 0}]]}, "Keap7": {"main": [[{"node": "Keap8", "type": "main", "index": 0}]]}, "Keap8": {"main": [[{"node": "Keap9", "type": "main", "index": 0}]]}, "Keap9": {"main": [[{"node": "Keap10", "type": "main", "index": 0}]]}, "Keap10": {"main": [[{"node": "Keap3", "type": "main", "index": 0}]]}, "Keap11": {"main": [[{"node": "Keap12", "type": "main", "index": 0}]]}, "Keap12": {"main": [[{"node": "Keap13", "type": "main", "index": 0}]]}, "Start": {"main": [[{"node": "Keap", "type": "main", "index": 0}]]}}
AI-Powered Information Monitoring with OpenAI, Google Sheets, Jina AI and Slack
[{"id": "704de862-43e5-4322-ae35-45b505e68bb6", "name": "OpenAI Chat Model", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [4220, 380], "parameters": {"options": {}}, "credentials": {"openAiApi": {"id": "", "name": "OpenAi Connection"}}, "typeVersion": 1.1}, {"id": "eaae54b0-0500-47a7-ad8f-097e0882d21c", "name": "Basic LLM Chain", "type": "@n8n/n8n-nodes-langchain.chainLlm", "position": [4180, -120], "parameters": {"text": "={{ $json.data }}", "messages": {"messageValues": [{"message": "=You are an AI assistant responsible for summarizing articles **in English** and formatting them into Slack-compatible messages. \nYour job is to create a clear and concise summary following the guidelines below and format it in Slack-specific Markdown format. \n\n---\n\n## 1. Title with Link \n\n- Format the article title as a **clickable link** using Slack's Markdown syntax: \n `<URL|*Title of the article*>`. \n- The title should be clear and engaging to encourage readers to click. \n\n---\n\n## 2. Section Headings \n\n- Use **bold text** to introduce different sections of the summary by wrapping the text with `*` symbols. \n- Ensure headings are descriptive and guide the reader through the content effectively. \n\n---\n\n## 3. Key Points \n\n- Present key insights using **bullet points**, using the `\u2022` symbol for listing important information. \n- Each point should be concise, informative, and directly related to the article's topic. \n\n---\n\n## 4. Content Summary \n\n- Provide a brief but comprehensive overview of the article's content. \n- Use plain text and line breaks to separate paragraphs for improved readability. \n- Focus on the most important aspects without unnecessary details. \n\n---\n\n## 5. Context and Relevance \n\n- Explain why the article is important and how it relates to the reader's interests. \n- Highlight its relevance to ongoing trends or industry developments. \n\n---\n\n## Message Structure \n\nThe output should follow this structured format: \n\n1. **Title with link** \u2013 Present the article as a clickable link formatted in Slack Markdown. \n2. **Summary sections** \u2013 Organized under clear headings to enhance readability. \n3. **Key insights** \u2013 Presented as bullet points for quick scanning. \n4. **Contextual analysis** \u2013 A brief explanation of the article's relevance and importance. \n\n---\n\n## Slack Markdown Formatting Guide \n\nEnsure the message follows Slack's Markdown syntax for proper display: \n\n- **Bold text:** Use `*bold text*`. \n- **Italic text:** Use `_italic text_`. \n- **Bullet points:** Use `\u2022` or `-` for lists. \n- **Links:** Format as `<URL|*text*>` to create clickable links. \n- **Line breaks:** Use a blank line to separate paragraphs for readability. \n\n---\n\n## Example of Slack-formatted Output \n\n\ud83d\udd14 *New article from n8n Blog* \n\n<https://blog.n8n.io/self-hosted-ai/|*Introducing the Self-hosted AI Starter Kit: Run AI locally for privacy-first solutions*> \n\n*Summary of the article* \nn8n has launched the Self-hosted AI Starter Kit, a Docker Compose template designed to simplify the deployment of local AI tools. This initiative addresses the growing need for on-premise AI solutions that enhance data privacy and reduce reliance on external APIs. The starter kit includes tools like Ollama, Qdrant, and PostgreSQL, providing a foundation for building self-hosted AI workflows. While it's tailored for proof-of-concept projects, users can customize it to fit specific requirements. \n\n*Key Points* \n\u2022 The Self-hosted AI Starter Kit facilitates quick setup of local AI environments using Docker Compose. \n\u2022 It includes preconfigured AI workflow templates and essential tools such as Ollama, Qdrant, and PostgreSQL. \n\u2022 Running AI on-premise offers benefits like improved data privacy and cost savings by minimizing dependence on external API calls. \n\u2022 The kit is designed for easy deployment on local machines or personal cloud instances like Digital Ocean and runpod.io. \n\u2022 n8n emphasizes the flexibility of their platform, allowing integration with over 400 services, including Google, Slack, Twilio, and JIRA, to streamline AI application development. \n\n*Context and Relevance* \nThis article introduces a practical solution for organizations and developers seeking to implement AI workflows locally. By providing a ready-to-use starter kit, n8n addresses common challenges associated with setting up and maintaining on-premise AI systems, promoting greater control over data and potential cost efficiencies.\n \n---\n\nEnsure that the message is formatted according to Slack's requirements to improve readability and engagement. \n"}]}, "promptType": "define"}, "typeVersion": 1.5}, {"id": "a3a10ccd-26f9-4b05-a79f-8754f619c153", "name": "Schedule Trigger", "type": "n8n-nodes-base.scheduleTrigger", "position": [-840, 120], "parameters": {"rule": {"interval": [{"field": "minutes", "minutesInterval": 15}]}}, "typeVersion": 1.2}, {"id": "54ed8957-39be-4ad4-bea7-f56308d75a91", "name": "RSS Read", "type": "n8n-nodes-base.rssFeedRead", "onError": "continueRegularOutput", "position": [800, 120], "parameters": {"url": "={{ $json.rss_feed_url }}", "options": {"ignoreSSL": false}}, "executeOnce": false, "typeVersion": 1.1}, {"id": "1ec53a9a-ca21-4da2-ab94-55b863a27aff", "name": "Relevance Classification for Topic Monitoring", "type": "@n8n/n8n-nodes-langchain.textClassifier", "position": [2380, -20], "parameters": {"options": {"fallback": "discard"}, "inputText": "={{ $json.title }}\n{{ $json.contentSnippet }}", "categories": {"categories": [{"category": "relevant", "description": "Articles related to artificial intelligence (AI), data science, machine learning, algorithms, big data, or innovations in these fields."}, {"category": "not_relevant", "description": "Articles not directly related to artificial intelligence (AI), data science, machine learning, algorithms, big data, or innovations in these fields."}]}}, "typeVersion": 1}, {"id": "840431b1-cf2e-45e2-a79c-cab90f46a452", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [2240, -480], "parameters": {"color": 7, "width": 600, "height": 960, "content": "## LLM Call 1 - Article Topic Relevance Classification \n\nThis **LLM call** is used to **classify** whether the articles published on the website are **relevant** to the **topics and interests** you want to monitor. \nIt analyzes the **title** and the **content snippet** retrieved from the **RSS Read** node. \n\nIn this template, the monitored articles are related to **data and AI.** \nThe classification is done into **two categories**, which you should modify in the `Description` field under the **Categories** section of the node:\n\n### Relevant \n`Description`: Articles related to **[The topics you want to monitor]**. \n\n### Not Relevant \n`Description`: Articles that are not directly related to **[The topics you want to monitor]**.\n\nBy default, this template monitors topics related to artificial intelligence (AI), data science, machine learning, algorithms, big data, and innovations in these fields.\n"}, "typeVersion": 1}, {"id": "7dbc2246-9e1a-4c2e-a051-703e10e5fa0e", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [4020, -660], "parameters": {"color": 7, "width": 600, "height": 680, "content": "## LLM Call 2 - Summarize and Format in Slack Markdown \n\nThis node **uses OpenAI's GPT-4o-mini model** to **summarize the article content**, which is provided as **Markdown text** from Jina AI, and formats it in **Slack Markdown** to enhance readability within Slack. \n\n### Customize to fit your needs \n\nHere are two examples of how you can modify the **System Prompt** of this node to better suit your requirements: \n\n- **Language customization:** \n You can modify the **System Prompt** to instruct the LLM to generate the summary in a specific language (e.g., French or Italian). \n However, consider the option of adding a separate LLM node **dedicated to translation** if the model cannot handle **summarization, formatting, and translation** simultaneously while maintaining high output quality.\n\n- **Changing the summary structure:** \n You can adjust the prompt to modify how the summary is structured to better match your preferred format and style.\n"}, "typeVersion": 1}, {"id": "b472f924-81d9-4b99-8620-d95b286800c5", "name": "Google Sheets - Get RSS Feed url followed", "type": "n8n-nodes-base.googleSheets", "position": [260, 120], "parameters": {"options": {}, "sheetName": {"__rl": true, "mode": "list", "value": "gid=0", "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1F2FzWt9FMkA5V5i9d_hBJRahLDvxs3DQBOLkLYowXbY/edit#gid=0", "cachedResultName": "rss_feed"}, "documentId": {"__rl": true, "mode": "list", "value": "1F2FzWt9FMkA5V5i9d_hBJRahLDvxs3DQBOLkLYowXbY", "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1F2FzWt9FMkA5V5i9d_hBJRahLDvxs3DQBOLkLYowXbY/edit?usp=drivesdk", "cachedResultName": "Template - AI-Powered Information Monitoring"}, "authentication": "serviceAccount"}, "credentials": {"googleApi": {"id": "", "name": "Google Sheets account"}}, "executeOnce": true, "typeVersion": 4.5}, {"id": "c2a571f0-614f-41cf-b0b0-db4c714a8ab8", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [80, -480], "parameters": {"color": 7, "width": 460, "height": 960, "content": "## Google Sheets - Get RSS Feed URLs Followed \nThis node **retrieves rows** from the Google Sheet that contains the **RSS feed URLs** you follow. \nIt is configured to run only once per execution, meaning that even if the previous node outputs many items, this node will execute only once. \n\nYou can **add more URLs** to your sheet, but keep in mind that following **more RSS feeds** will increase the **cost of LLM API usage** (e.g., OpenAI). \n\nYou can access the **Google Sheet template** to copy and use in this workflow [here](https://docs.google.com/spreadsheets/d/1F2FzWt9FMkA5V5i9d_hBJRahLDvxs3DQBOLkLYowXbY/). \n(*This is the same template used in the previous node.*)\n\nIn this node, make sure to select the **\"rss_feed\"** sheet from your **copied version of the Google Sheet template**. \nThis sheet contains the list of RSS feed URLs that the workflow will process."}, "typeVersion": 1}, {"id": "90e34a2f-f326-4c83-ae26-d8f38d983c21", "name": "Sticky Note6", "type": "n8n-nodes-base.stickyNote", "position": [620, -480], "parameters": {"color": 7, "width": 460, "height": 960, "content": "## RSS Read \nThis node **reads** the RSS feed. \nThe RSS URL is **retrieved** from the data you have entered in **Google Sheets**, so make sure the URL provided is indeed a **valid RSS feed**. \n\n### What is an RSS feed? \nAn **RSS feed** is a **web feed** that allows users to **automatically receive updates** from websites, such as **news sites** or **blogs**, in a **standardized format**.\n"}, "typeVersion": 1}, {"id": "06c22fcc-6fb6-4646-8cd2-3e2c48a56fbc", "name": "Sticky Note5", "type": "n8n-nodes-base.stickyNote", "position": [2940, -480], "parameters": {"color": 7, "width": 960, "height": 500, "content": "## Jina AI - Read URL\n\nThis node **uses the Jina AI API** to **retrieve the content** of articles that were classified as **\"relevant\"** in the previous step. \nSince this process **involves web scraping**, ensure that it complies with the **scraping regulations** in your country. \n\n### What is Jina AI? \n**Jina AI** is an API that allows you to **extract webpage content** and convert it into a format that is **ready for LLM processing**, such as **Markdown**. \n\nYou can create an account [here](https://jina.ai/) and receive **1,000,000 free tokens** for testing. \nHowever, the service can also be used **without an API key** (without an account), though with **reduced RPM (requests per minute)**. \nFor this workflow, the default RPM limits should generally be sufficient.\n"}, "typeVersion": 1}, {"id": "3f8a0ce3-d7b3-400b-bc03-1a233f441429", "name": "Slack1", "type": "n8n-nodes-base.slack", "position": [4940, -120], "webhookId": "", "parameters": {"text": "={{ $json.text }}", "select": "channel", "channelId": {"__rl": true, "mode": "list", "value": "C0898R9G7JP", "cachedResultName": "topic-monitoring"}, "otherOptions": {}, "authentication": "oAuth2"}, "credentials": {"slackOAuth2Api": {"id": "", "name": "slack-topic-monitoring"}}, "typeVersion": 2.3}, {"id": "6920300f-fd0e-41dc-adf6-ed5a3a267b3f", "name": "Sticky Note8", "type": "n8n-nodes-base.stickyNote", "position": [-460, -480], "parameters": {"color": 7, "width": 460, "height": 960, "content": "## Google Sheets - Get Article Monitored Database \nThis node **retrieves rows** from the Google Sheet that contains articles **already monitored and summarized** by the workflow. \nDepending on the RSS feed you monitor, **URLs may remain in the feed for a long time**, and you don't want to monitor the same URL **twice**. \nYou can find the **Google Sheet template** that you can copy and use in this workflow [here](https://docs.google.com/spreadsheets/d/1F2FzWt9FMkA5V5i9d_hBJRahLDvxs3DQBOLkLYowXbY/edit?gid=1966921272#gid=1966921272).\n\nIn this node, make sure to select the **\"article_database\"** sheet from your **copied version of the Google Sheet template**. \nThis sheet is used to store and manage the articles processed by the workflow.\n\n\n---\n\n## Set Field - existing_url \n\nThis node sets the **\"existing_url\"** field with the value from **\"article_url\"** in the Google Sheets database. \nDuring the **first execution** of the workflow, this field will be **empty**, as no articles are present in Google Sheets yet. \nAn error may occur in this case; however, the workflow will **continue running** without interruption.\n"}, "typeVersion": 1}, {"id": "204aab36-1081-4d6e-b3a3-2fc03b6a1a10", "name": "Sticky Note9", "type": "n8n-nodes-base.stickyNote", "position": [1180, -480], "parameters": {"color": 7, "width": 980, "height": 960, "content": "## Code Node to Filter Existing URLs\n\nThis code node filters URLs that have **not yet been summarized by AI.** \nIt outputs:\n\n- A **list of URLs** following the RSS Read schema if new URLs are found.\n- An item called **\"message\"** with the value **\"No new articles found\"** if no new articles are available in your RSS feed.\n\n---\n\n## IF Node\n\nThe condition for this node is: `{{ $json.message }}` *not equal to* **\"No new articles found\"**.\n\n- **False** \u2192 The workflow executes the \"No Operation, do nothing\" node.\n- **True** \u2192 The workflow proceeds to process the new articles for your web development industry monitoring.\n"}, "typeVersion": 1}, {"id": "ef83c5f9-12a7-4924-9356-d1307fc8f279", "name": "Sticky Note10", "type": "n8n-nodes-base.stickyNote", "position": [2940, 60], "parameters": {"color": 7, "width": 960, "height": 580, "content": "## Set Fields - Not Relevant Articles \n\nThis node prepares the data to be added to the Google Sheet by defining the following fields: \n\n- **`article_url`** \u2013 The article's URL.\n- **`summarized`** \u2013 Always set to `\"NO (not relevant)\"`, as it belongs to the **\"not_relevant\"** path. \n- **`website`** \u2013 The website where the article URL was published. \n- **`fetched_at`** \u2013 The timestamp when the URL was processed by the workflow. \n > *(Note: This timestamp reflects when the scenario was triggered, as obtained from the **Schedule Trigger** node, not the exact fetch time.)* \n- **`publish_date`** \u2013 The date the article was published. \n\n---\n\n## Google Sheets - Add Not Relevant Articles\n\nThis node adds the prepared data to the **\"article_database\"** sheet in your copied Google Sheet template. \nEnsure that you select the **\"article_database\"** sheet when configuring this node. \n"}, "typeVersion": 1}, {"id": "10af053d-23f6-416b-9fe2-874dfc2ec7aa", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [4020, 80], "parameters": {"color": 5, "width": 600, "height": 440, "content": "## OpenAI Chat Model \n\nThis node specifies the **AI model** to be used for processing. \nThe default model is **GPT-4o-mini**, which has been **tested** and proven to perform well for this task. \n\n**GPT-4o-mini** is a **cost-efficient** model, offering a good balance between **performance and affordability**, making it suitable for regular usage without incurring high costs.\n"}, "typeVersion": 1}, {"id": "67e6b0f9-32fc-4dcf-ae1b-effe11b31cd1", "name": "Sticky Note11", "type": "n8n-nodes-base.stickyNote", "position": [4680, -640], "parameters": {"color": 7, "width": 600, "height": 680, "content": "## Slack - Send Article Summary \n\nThis node **posts the message** to the designated Slack channel, containing the **output generated by the LLM.** \n\nFor better organization and accessibility, it is recommended to use a **dedicated Slack channel** specifically for topic monitoring. \nThis ensures that team members can easily access relevant summaries without cluttering other discussions. \n\n\n### Why not use Slack Tool Calling? \n\nAfter extensive testing, the output from the previous node has proven to be **highly effective**, making it unnecessary to use **tool calling** or an **AI agent.** \ud83d\ude00 \nKeeping things simple **streamlines the workflow** and reduces complexity.\n"}, "typeVersion": 1}, {"id": "afe7643d-618b-4798-851e-b8b9d024e792", "name": "Sticky Note12", "type": "n8n-nodes-base.stickyNote", "position": [4700, 80], "parameters": {"color": 7, "width": 1260, "height": 560, "content": "## Set Fields - Relevant Articles \n\nThis node prepares the data to be added to the Google Sheet by defining the following fields: \n\n- **`article_url`** \u2013 The article's URL. \n- **`summarized`** \u2013 Always set to `\"YES\"`, as it follows the **\"relevant\"** path. \n- **`summary`** \u2013 The article summary that was posted to Slack. \n- **`website`** \u2013 The source website where the article was published. \n- **`fetched_at`** \u2013 The timestamp indicating when the URL was processed by the workflow. \n > *(Note: This timestamp reflects when the data was added to Google Sheets, not the actual fetch time.)* \n- **`publish_date`** \u2013 The date the article was published. \n\n---\n\n## Google Sheets - Add Relevant Articles\n\nThis node adds the prepared data to the **\"article_database\"** sheet in your copied Google Sheet template. \nMake sure to select the **\"article_database\"** sheet when configuring this node. \n"}, "typeVersion": 1}, {"id": "e87619df-48e3-4ef8-83c7-1695746e2b92", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [-1000, -280], "parameters": {"color": 7, "width": 460, "height": 600, "content": "## Scheduler \nThis **trigger** is a **scheduler** that defines **how often the workflow is executed**. \nBy default, the **template is set to every 1 hour**, meaning the workflow will check **every hour** if **new articles** have been added to the **RSS feed** you follow.\n"}, "typeVersion": 1}, {"id": "e2bcd684-abd9-4f47-bf4c-12eac379432d", "name": "Sticky Note7", "type": "n8n-nodes-base.stickyNote", "position": [-1900, -720], "parameters": {"color": 6, "width": 780, "height": 1300, "content": "# Workflow Overview\n\n## Check Legal Regulations:\nThis workflow involves scraping, so ensure you comply with the legal regulations in your country before getting started. Better safe than sorry!\n\n## \ud83d\udccc Purpose \nThis workflow enables **automated and AI-driven topic monitoring**, delivering **concise article summaries** directly to a **Slack channel** in a structured and easy-to-read format. \nIt allows users to stay informed on specific topics of interest effortlessly, without manually checking multiple sources, ensuring a **time-efficient and focused** monitoring experience. \n\n**To get started, copy the Google Sheets template required for this workflow from [here](https://docs.google.com/spreadsheets/d/1F2FzWt9FMkA5V5i9d_hBJRahLDvxs3DQBOLkLYowXbY).** \n\n\n## \ud83c\udfaf Target Audience \nThis workflow is designed for: \n- **Industry professionals** looking to track key developments in their field. \n- **Research teams** who need up-to-date insights on specific topics. \n- **Companies** aiming to keep their teams informed with relevant content. \n\n## \u2699\ufe0f How It Works \n1. **Trigger:** A **Scheduler** initiates the workflow at regular intervals (default: every hour). \n2. **Data Retrieval:** \n - RSS feeds are fetched using the **RSS Read** node. \n - Previously monitored articles are checked in **Google Sheets** to avoid duplicates. \n3. **Content Processing:** \n - The article relevance is assessed using **OpenAI (GPT-4o-mini)**. \n - Relevant articles are scraped using **Jina AI** to extract content. \n - Summaries are generated and formatted for Slack. \n4. **Output:** \n - Summaries are posted to the specified Slack channel. \n - Article metadata is stored in **Google Sheets** for tracking. \n\n## \ud83d\udee0\ufe0f Key APIs and Nodes Used \n- **Scheduler Node:** Triggers the workflow periodically. \n- **RSS Read:** Fetches the latest articles from defined RSS feeds. \n- **Google Sheets:** Stores monitored articles and manages feed URLs. \n- **OpenAI API (GPT-4o-mini):** Classifies article relevance and generates summaries. \n- **Jina AI API:** Extracts the full content of relevant articles. \n- **Slack API:** Posts formatted messages to Slack channels. \n\n---\n\nThis workflow provides an **efficient and intelligent way** to stay informed about your topics of interest, directly within Slack.\n"}, "typeVersion": 1}, {"id": "d72f505d-2bbf-41db-b404-8a61b8c21452", "name": "Google Sheets - Get article monitored database", "type": "n8n-nodes-base.googleSheets", "position": [-400, 120], "parameters": {"options": {}, "sheetName": {"__rl": true, "mode": "list", "value": 1966921272, "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1F2FzWt9FMkA5V5i9d_hBJRahLDvxs3DQBOLkLYowXbY/edit#gid=1966921272", "cachedResultName": "article_database"}, "documentId": {"__rl": true, "mode": "list", "value": "1F2FzWt9FMkA5V5i9d_hBJRahLDvxs3DQBOLkLYowXbY", "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1F2FzWt9FMkA5V5i9d_hBJRahLDvxs3DQBOLkLYowXbY/edit?usp=drivesdk", "cachedResultName": "Template - AI-Powered Information Monitoring"}, "authentication": "serviceAccount"}, "credentials": {"googleApi": {"id": "", "name": "Google Sheets account"}}, "executeOnce": true, "typeVersion": 4.5, "alwaysOutputData": true}, {"id": "08eae799-2682-4d49-81fa-2127a65d887b", "name": "Code", "type": "n8n-nodes-base.code", "position": [1280, 120], "parameters": {"jsCode": "// Retrieve data from RSS feed and Google Sheets\nconst rssItems = items; // Contains RSS articles\nconst sheetItems = $items(\"Set field - existing_url\", 0);\n\n// Extract the links of articles present in Google Sheets\nconst existingUrls = sheetItems.map(entry => entry.json.existing_url);\n\n// Filter RSS articles to keep only those not present in Google Sheets\nconst newArticles = rssItems.filter(rssItem => {\n return !existingUrls.includes(rssItem.json.link);\n});\n\n// If new articles are found, return them\nif (newArticles.length > 0) {\n return newArticles;\n}\n\n// If no new articles, return an informational message\nreturn [{ json: { message: \"No new articles found.\" } }];\n\n"}, "typeVersion": 2}, {"id": "9f2d2c87-460b-4872-9538-519d26524475", "name": "No Operation, do nothing", "type": "n8n-nodes-base.noOp", "position": [1960, 240], "parameters": {}, "typeVersion": 1}, {"id": "e9ebbce6-a3b4-4f89-9908-3d9b2dd42f44", "name": "If", "type": "n8n-nodes-base.if", "position": [1640, 120], "parameters": {"options": {}, "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "bad6fc33-2e1e-4169-9893-d284c6c68288", "operator": {"type": "string", "operation": "notEquals"}, "leftValue": "={{ $json.message }}", "rightValue": "No new articles found."}]}}, "typeVersion": 2.2}, {"id": "6e2c820d-27da-4d3b-844c-581fb266e04a", "name": "Jina AI - Read URL", "type": "n8n-nodes-base.httpRequest", "position": [3240, -120], "parameters": {"url": "=https://r.jina.ai/{{ $json.link }}", "options": {}}, "retryOnFail": true, "typeVersion": 4.2, "waitBetweenTries": 5000}, {"id": "3f942518-f75b-4d03-9cd1-b275ad3b91cd", "name": "Set field - existing_url", "type": "n8n-nodes-base.set", "onError": "continueRegularOutput", "position": [-180, 120], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "07799638-55d7-42a9-b1f7-fea762cfa2f1", "name": "existing_url", "type": "string", "value": "={{ $json.article_url.extractUrl() }}"}]}}, "typeVersion": 3.4, "alwaysOutputData": true}, {"id": "baef0ff9-8bf5-4ecf-9300-0adbad0d1a07", "name": "OpenAI Chat Model1", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [2400, 300], "parameters": {"options": {}}, "credentials": {"openAiApi": {"id": "", "name": "OpenAi Connection"}}, "typeVersion": 1.1}, {"id": "ccbfe5fc-2e87-4fff-b23d-0c4c6ebd3648", "name": "Set fields - Not relevant articles", "type": "n8n-nodes-base.set", "position": [3060, 480], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "3fbf5256-f06b-450a-adf7-65591a19c7dd", "name": "article_url", "type": "string", "value": "={{ $json.link }}"}, {"id": "02f506cf-28fe-46ef-b97e-7ec938805151", "name": "summarized", "type": "string", "value": "NO (not relevant)"}, {"id": "552efef4-63cb-448b-bb0c-30ae9666f310", "name": "website", "type": "string", "value": "={{ $('Google Sheets - Get RSS Feed url followed').item.json.website }}"}, {"id": "096acb35-4e9e-48fd-8e61-8ceb525591fa", "name": "fetched_at", "type": "string", "value": "={{$now}}"}, {"id": "427243d1-01c4-458a-9626-75366e4264cd", "name": "publish_date", "type": "string", "value": "={{ $('Relevance Classification for Topic Monitoring').item.json.pubDate.toDateTime().format('yyyy-MM-dd') }}"}]}}, "typeVersion": 3.4}, {"id": "0dbcc872-9afa-4e2c-be24-82d3a2457dd0", "name": "Google Sheets - Add relevant articles", "type": "n8n-nodes-base.googleSheets", "position": [3480, 480], "parameters": {"columns": {"value": {}, "schema": [{"id": "article_url", "type": "string", "display": true, "required": false, "displayName": "article_url", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "summarized", "type": "string", "display": true, "required": false, "displayName": "summarized", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "summary", "type": "string", "display": true, "required": false, "displayName": "summary", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "website", "type": "string", "display": true, "required": false, "displayName": "website", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "fetched_at", "type": "string", "display": true, "required": false, "displayName": "fetched_at", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "publish_date", "type": "string", "display": true, "required": false, "displayName": "publish_date", "defaultMatch": false, "canBeUsedToMatch": true}], "mappingMode": "autoMapInputData", "matchingColumns": [], "attemptToConvertTypes": false, "convertFieldsToString": false}, "options": {}, "operation": "append", "sheetName": {"__rl": true, "mode": "list", "value": 1966921272, "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1F2FzWt9FMkA5V5i9d_hBJRahLDvxs3DQBOLkLYowXbY/edit#gid=1966921272", "cachedResultName": "article_database"}, "documentId": {"__rl": true, "mode": "list", "value": "1F2FzWt9FMkA5V5i9d_hBJRahLDvxs3DQBOLkLYowXbY", "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1F2FzWt9FMkA5V5i9d_hBJRahLDvxs3DQBOLkLYowXbY/edit?usp=drivesdk", "cachedResultName": "Template - AI-Powered Information Monitoring"}, "authentication": "serviceAccount"}, "credentials": {"googleApi": {"id": "", "name": "Google Sheets account"}}, "typeVersion": 4.5}, {"id": "0c7024b6-dfac-4e97-9d42-198fff6bcc47", "name": "Google Sheets - Add relevant article", "type": "n8n-nodes-base.googleSheets", "position": [5660, 520], "parameters": {"columns": {"value": {}, "schema": [{"id": "article_url", "type": "string", "display": true, "required": false, "displayName": "article_url", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "summarized", "type": "string", "display": true, "required": false, "displayName": "summarized", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "summary", "type": "string", "display": true, "required": false, "displayName": "summary", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "website", "type": "string", "display": true, "required": false, "displayName": "website", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "fetched_at", "type": "string", "display": true, "required": false, "displayName": "fetched_at", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "publish_date", "type": "string", "display": true, "required": false, "displayName": "publish_date", "defaultMatch": false, "canBeUsedToMatch": true}], "mappingMode": "autoMapInputData", "matchingColumns": [], "attemptToConvertTypes": false, "convertFieldsToString": false}, "options": {}, "operation": "append", "sheetName": {"__rl": true, "mode": "list", "value": 1966921272, "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1F2FzWt9FMkA5V5i9d_hBJRahLDvxs3DQBOLkLYowXbY/edit#gid=1966921272", "cachedResultName": "article_database"}, "documentId": {"__rl": true, "mode": "list", "value": "1F2FzWt9FMkA5V5i9d_hBJRahLDvxs3DQBOLkLYowXbY", "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1F2FzWt9FMkA5V5i9d_hBJRahLDvxs3DQBOLkLYowXbY/edit?usp=drivesdk", "cachedResultName": "Template - AI-Powered Information Monitoring"}, "authentication": "serviceAccount"}, "credentials": {"googleApi": {"id": "", "name": "Google Sheets account"}}, "typeVersion": 4.5}, {"id": "e1266606-eaee-4077-be7e-6f08ae9bae39", "name": "Set Fields - Relevant Articles", "type": "n8n-nodes-base.set", "position": [4900, 520], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "3fbf5256-f06b-450a-adf7-65591a19c7dd", "name": "article_url", "type": "string", "value": "={{ $('Relevance Classification for Topic Monitoring').item.json.link }}"}, {"id": "02f506cf-28fe-46ef-b97e-7ec938805151", "name": "summarized", "type": "string", "value": "YES"}, {"id": "e23059bd-8bb2-439a-85bd-f9e191930d1e", "name": "summary", "type": "string", "value": "={{ $json.text }}"}, {"id": "552efef4-63cb-448b-bb0c-30ae9666f310", "name": "website", "type": "string", "value": "={{ $('Google Sheets - Get RSS Feed url followed').item.json.website }}"}, {"id": "096acb35-4e9e-48fd-8e61-8ceb525591fa", "name": "fetched_at", "type": "string", "value": "={{$now}}"}, {"id": "427243d1-01c4-458a-9626-75366e4264cd", "name": "publish_date", "type": "string", "value": "={{ $('Relevance Classification for Topic Monitoring').item.json.pubDate.toDateTime().format('yyyy-MM-dd') }}"}]}}, "typeVersion": 3.4}]
{"If": {"main": [[{"node": "Relevance Classification for Topic Monitoring", "type": "main", "index": 0}], [{"node": "No Operation, do nothing", "type": "main", "index": 0}]]}, "Code": {"main": [[{"node": "If", "type": "main", "index": 0}]]}, "RSS Read": {"main": [[{"node": "Code", "type": "main", "index": 0}]]}, "Basic LLM Chain": {"main": [[{"node": "Slack1", "type": "main", "index": 0}, {"node": "Set Fields - Relevant Articles", "type": "main", "index": 0}]]}, "Schedule Trigger": {"main": [[{"node": "Google Sheets - Get article monitored database", "type": "main", "index": 0}]]}, "OpenAI Chat Model": {"ai_languageModel": [[{"node": "Basic LLM Chain", "type": "ai_languageModel", "index": 0}]]}, "Jina AI - Read URL": {"main": [[{"node": "Basic LLM Chain", "type": "main", "index": 0}]]}, "OpenAI Chat Model1": {"ai_languageModel": [[{"node": "Relevance Classification for Topic Monitoring", "type": "ai_languageModel", "index": 0}]]}, "Set field - existing_url": {"main": [[{"node": "Google Sheets - Get RSS Feed url followed", "type": "main", "index": 0}]]}, "Set Fields - Relevant Articles": {"main": [[{"node": "Google Sheets - Add relevant article", "type": "main", "index": 0}]]}, "Set fields - Not relevant articles": {"main": [[{"node": "Google Sheets - Add relevant articles", "type": "main", "index": 0}]]}, "Google Sheets - Add relevant article": {"main": [[]]}, "Google Sheets - Get RSS Feed url followed": {"main": [[{"node": "RSS Read", "type": "main", "index": 0}]]}, "Relevance Classification for Topic Monitoring": {"main": [[{"node": "Jina AI - Read URL", "type": "main", "index": 0}], [{"node": "Set fields - Not relevant articles", "type": "main", "index": 0}]]}, "Google Sheets - Get article monitored database": {"main": [[{"node": "Set field - existing_url", "type": "main", "index": 0}]]}}
Disqus:Forum:get getCategories getThreads getPosts
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "9468a1d9-c07c-4001-804d-f308db6f79a3"}, {"parameters": {"id": "disqus-demo-page", "additionalFields": {}}, "name": "Disqus", "type": "n8n-nodes-base.disqus", "typeVersion": 1, "position": [500, 300], "credentials": {"disqusApi": {"id": "5", "name": "Disqus token"}}, "id": "8c4e3006-b4d8-4015-9eeb-5cb77b7a46aa"}, {"parameters": {"operation": "getCategories", "id": "disqus-demo-page", "limit": 1, "additionalFields": {"order": "asc"}}, "name": "Disqus1", "type": "n8n-nodes-base.disqus", "typeVersion": 1, "position": [650, 300], "credentials": {"disqusApi": {"id": "5", "name": "Disqus token"}}, "id": "f1db25d5-8f78-4f29-a4f3-d27a3571370e"}, {"parameters": {"operation": "getThreads", "id": "disqus-demo-page", "limit": 1, "additionalFields": {"order": "desc"}}, "name": "Disqus2", "type": "n8n-nodes-base.disqus", "typeVersion": 1, "position": [800, 300], "credentials": {"disqusApi": {"id": "5", "name": "Disqus token"}}, "id": "4fcd6985-5dc8-4425-b852-25824964082a"}, {"parameters": {"operation": "getPosts", "id": "disqus-demo-page", "limit": 1, "additionalFields": {"order": "desc"}}, "name": "Disqus3", "type": "n8n-nodes-base.disqus", "typeVersion": 1, "position": [950, 300], "credentials": {"disqusApi": {"id": "5", "name": "Disqus token"}}, "id": "0dfe850e-186a-4072-b722-f35e15deeb16"}]
{"Disqus2": {"main": [[{"node": "Disqus3", "type": "main", "index": 0}]]}, "Disqus1": {"main": [[{"node": "Disqus2", "type": "main", "index": 0}]]}, "Disqus": {"main": [[{"node": "Disqus1", "type": "main", "index": 0}]]}, "Start": {"main": [[{"node": "Disqus", "type": "main", "index": 0}]]}}
Harvest:Expense:create update get getAll delete:Estimate:create update get getAll delete
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 220], "id": "2bb0bfe5-a448-40ae-a4be-0689032e87e9"}, {"parameters": {"authentication": "oAuth2", "resource": "client", "accountId": 1416330, "operation": "create", "name": "=Client{{Date.now()}}", "additionalFields": {}}, "name": "Harvest", "type": "n8n-nodes-base.harvest", "typeVersion": 1, "position": [450, 300], "credentials": {"harvestOAuth2Api": {"id": "64", "name": "Harvest OAuth2 creds"}}, "id": "31ef3552-d142-4338-89a9-830f488aaee2"}, {"parameters": {"authentication": "oAuth2", "resource": "client", "accountId": 1416330, "operation": "delete", "id": "={{$node[\"Harvest\"].json[\"id\"]}}"}, "name": "Harvest1", "type": "n8n-nodes-base.harvest", "typeVersion": 1, "position": [1340, 300], "credentials": {"harvestOAuth2Api": {"id": "64", "name": "Harvest OAuth2 creds"}}, "id": "ea99bdb4-a747-4ab0-ac0a-9be4ae96549c"}, {"parameters": {"authentication": "oAuth2", "resource": "estimate", "accountId": 1416330, "operation": "create", "clientId": "={{$node[\"Harvest\"].json[\"id\"]}}", "additionalFields": {"subject": "=Estimate{{Date.now()}}"}}, "name": "Harvest2", "type": "n8n-nodes-base.harvest", "typeVersion": 1, "position": [600, 400], "credentials": {"harvestOAuth2Api": {"id": "64", "name": "Harvest OAuth2 creds"}}, "id": "e1f7a876-0103-4b73-8669-81ef0994da09"}, {"parameters": {"authentication": "oAuth2", "resource": "estimate", "accountId": 1416330, "operation": "update", "id": "={{$node[\"Harvest2\"].json[\"id\"]}}", "updateFields": {"subject": "=UpdateSubject{{Date.now()}}"}}, "name": "Harvest3", "type": "n8n-nodes-base.harvest", "typeVersion": 1, "position": [750, 400], "credentials": {"harvestOAuth2Api": {"id": "64", "name": "Harvest OAuth2 creds"}}, "id": "7989bc34-0e2d-4add-af9c-3fd7f69d3219"}, {"parameters": {"authentication": "oAuth2", "resource": "estimate", "accountId": 1416330, "operation": "get", "id": "={{$node[\"Harvest2\"].json[\"id\"]}}"}, "name": "Harvest4", "type": "n8n-nodes-base.harvest", "typeVersion": 1, "position": [900, 400], "credentials": {"harvestOAuth2Api": {"id": "64", "name": "Harvest OAuth2 creds"}}, "id": "20378436-76b0-430d-94cf-e034f3534ad8"}, {"parameters": {"authentication": "oAuth2", "resource": "estimate", "accountId": 1416330, "limit": 1, "filters": {}}, "name": "Harvest5", "type": "n8n-nodes-base.harvest", "typeVersion": 1, "position": [1050, 400], "credentials": {"harvestOAuth2Api": {"id": "64", "name": "Harvest OAuth2 creds"}}, "id": "7bbdbf6e-2741-463f-8b1d-31c17d53972f"}, {"parameters": {"authentication": "oAuth2", "resource": "estimate", "accountId": 1416330, "operation": "delete", "id": "={{$node[\"Harvest2\"].json[\"id\"]}}"}, "name": "Harvest6", "type": "n8n-nodes-base.harvest", "typeVersion": 1, "position": [1200, 400], "credentials": {"harvestOAuth2Api": {"id": "64", "name": "Harvest OAuth2 creds"}}, "id": "c3c439b0-e7bf-4896-b948-77037cea12fa"}, {"parameters": {"authentication": "oAuth2", "resource": "expense", "accountId": 1416330, "operation": "create", "projectId": "27925524", "expenseCategoryId": "7737171", "spentDate": "2021-02-26T10:51:40.112Z", "additionalFields": {"total_cost": "101"}}, "name": "Harvest7", "type": "n8n-nodes-base.harvest", "typeVersion": 1, "position": [460, 150], "credentials": {"harvestOAuth2Api": {"id": "64", "name": "Harvest OAuth2 creds"}}, "id": "09619bf1-f1f8-425a-b24f-cdbaa294bda2"}, {"parameters": {"authentication": "oAuth2", "resource": "expense", "accountId": 1416330, "operation": "update", "id": "={{$node[\"Harvest7\"].json[\"id\"]}}", "updateFields": {"total_cost": "201"}}, "name": "Harvest8", "type": "n8n-nodes-base.harvest", "typeVersion": 1, "position": [600, 150], "credentials": {"harvestOAuth2Api": {"id": "64", "name": "Harvest OAuth2 creds"}}, "id": "ff10db35-ec3d-4684-85fa-682272052a4e"}, {"parameters": {"authentication": "oAuth2", "resource": "expense", "accountId": 1416330, "operation": "get", "id": "={{$node[\"Harvest7\"].json[\"id\"]}}"}, "name": "Harvest9", "type": "n8n-nodes-base.harvest", "typeVersion": 1, "position": [750, 150], "credentials": {"harvestOAuth2Api": {"id": "64", "name": "Harvest OAuth2 creds"}}, "id": "7788ca40-e46d-4332-ac73-1e4f8a6adddd"}, {"parameters": {"authentication": "oAuth2", "resource": "expense", "accountId": 1416330, "limit": 1, "filters": {}}, "name": "Harvest10", "type": "n8n-nodes-base.harvest", "typeVersion": 1, "position": [900, 150], "credentials": {"harvestOAuth2Api": {"id": "64", "name": "Harvest OAuth2 creds"}}, "id": "e7595ae1-7392-4f84-b18c-3097d47ddff4"}, {"parameters": {"authentication": "oAuth2", "resource": "expense", "accountId": 1416330, "operation": "delete", "id": "={{$node[\"Harvest7\"].json[\"id\"]}}"}, "name": "Harvest11", "type": "n8n-nodes-base.harvest", "typeVersion": 1, "position": [1050, 150], "credentials": {"harvestOAuth2Api": {"id": "64", "name": "Harvest OAuth2 creds"}}, "id": "eb9f74f8-d780-4c55-9ffd-e3540adfe808"}]
{"Start": {"main": [[{"node": "Harvest", "type": "main", "index": 0}, {"node": "Harvest7", "type": "main", "index": 0}]]}, "Harvest": {"main": [[{"node": "Harvest2", "type": "main", "index": 0}]]}, "Harvest2": {"main": [[{"node": "Harvest3", "type": "main", "index": 0}]]}, "Harvest3": {"main": [[{"node": "Harvest4", "type": "main", "index": 0}]]}, "Harvest4": {"main": [[{"node": "Harvest5", "type": "main", "index": 0}]]}, "Harvest5": {"main": [[{"node": "Harvest6", "type": "main", "index": 0}]]}, "Harvest6": {"main": [[{"node": "Harvest1", "type": "main", "index": 0}]]}, "Harvest7": {"main": [[{"node": "Harvest8", "type": "main", "index": 0}]]}, "Harvest8": {"main": [[{"node": "Harvest9", "type": "main", "index": 0}]]}, "Harvest9": {"main": [[{"node": "Harvest10", "type": "main", "index": 0}]]}, "Harvest10": {"main": [[{"node": "Harvest11", "type": "main", "index": 0}]]}}
Shopify:Product:create update get getAll delete:Order:create update get getAll delete
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "d841866b-3ccd-4f04-97ae-799cc649c163"}, {"parameters": {"resource": "product", "title": "=Product{{Date.now()}}", "additionalFields": {}}, "name": "Shopify", "type": "n8n-nodes-base.shopify", "typeVersion": 1, "position": [450, 300], "credentials": {"shopifyApi": {"id": "109", "name": "Shopify API creds"}}, "id": "84e29b73-0cc6-4793-a48b-8972fc733c16"}, {"parameters": {"resource": "product", "operation": "update", "productId": "={{$node[\"Shopify\"].json[\"id\"]}}", "updateFields": {"title": "=Updated{{$node[\"Shopify\"].json[\"title\"]}}"}}, "name": "Shopify1", "type": "n8n-nodes-base.shopify", "typeVersion": 1, "position": [1350, 300], "credentials": {"shopifyApi": {"id": "109", "name": "Shopify API creds"}}, "id": "4013bda3-f9d6-423a-a936-df538232f5e0"}, {"parameters": {"resource": "product", "operation": "get", "productId": "={{$node[\"Shopify\"].json[\"id\"]}}", "additionalFields": {}}, "name": "Shopify2", "type": "n8n-nodes-base.shopify", "typeVersion": 1, "position": [1500, 300], "credentials": {"shopifyApi": {"id": "109", "name": "Shopify API creds"}}, "id": "bbc9b837-505c-4551-9fb1-4a9da938d9f9"}, {"parameters": {"resource": "product", "operation": "getAll", "limit": 1, "additionalFields": {}}, "name": "Shopify3", "type": "n8n-nodes-base.shopify", "typeVersion": 1, "position": [1650, 300], "credentials": {"shopifyApi": {"id": "109", "name": "Shopify API creds"}}, "id": "e0fffb77-cbd1-47df-8f86-ef2ef89fd6c7"}, {"parameters": {"resource": "product", "operation": "delete", "productId": "={{$node[\"Shopify\"].json[\"id\"]}}"}, "name": "Shopify4", "type": "n8n-nodes-base.shopify", "typeVersion": 1, "position": [1800, 300], "credentials": {"shopifyApi": {"id": "109", "name": "Shopify API creds"}}, "id": "61f48867-0cc6-4128-8b2b-ce4cbf60e524"}, {"parameters": {"additionalFields": {"email": "=fake{{Date.now()}}@gmail.com", "tags": "test,", "test": ""}, "limeItemsUi": {"lineItemValues": [{"productId": "={{$node[\"Shopify\"].json[\"id\"]}}", "title": "=Line{{Date.now()}}", "grams": "15", "price": "101"}]}}, "name": "Shopify5", "type": "n8n-nodes-base.shopify", "typeVersion": 1, "position": [600, 450], "credentials": {"shopifyApi": {"id": "109", "name": "Shopify API creds"}}, "id": "c1a9b348-cd93-46be-88e4-ccc2a2698fdb"}, {"parameters": {"operation": "update", "orderId": "={{$node[\"Shopify5\"].json[\"id\"]}}", "updateFields": {"email": "=updated{{$node[\"Shopify5\"].json[\"email\"]}}"}}, "name": "Shopify6", "type": "n8n-nodes-base.shopify", "typeVersion": 1, "position": [750, 450], "credentials": {"shopifyApi": {"id": "109", "name": "Shopify API creds"}}, "id": "e9fd5c83-7ed5-430e-b976-402027f53177"}, {"parameters": {"operation": "get", "orderId": "={{$node[\"Shopify5\"].json[\"id\"]}}", "options": {}}, "name": "Shopify7", "type": "n8n-nodes-base.shopify", "typeVersion": 1, "position": [900, 450], "credentials": {"shopifyApi": {"id": "109", "name": "Shopify API creds"}}, "id": "9ff0060c-8878-4893-84ae-a24deba7166d"}, {"parameters": {"operation": "getAll", "limit": 1, "options": {}}, "name": "Shopify8", "type": "n8n-nodes-base.shopify", "typeVersion": 1, "position": [1050, 450], "credentials": {"shopifyApi": {"id": "109", "name": "Shopify API creds"}}, "id": "5003db2b-06c5-42ca-899a-3f2e49aa0518"}, {"parameters": {"operation": "delete", "orderId": "={{$node[\"Shopify5\"].json[\"id\"]}}"}, "name": "Shopify9", "type": "n8n-nodes-base.shopify", "typeVersion": 1, "position": [1200, 450], "credentials": {"shopifyApi": {"id": "109", "name": "Shopify API creds"}}, "id": "c6677e77-ca3d-4d7f-b8e9-87d19786a845"}]
{"Shopify": {"main": [[{"node": "Shopify5", "type": "main", "index": 0}]]}, "Start": {"main": [[{"node": "Shopify", "type": "main", "index": 0}]]}, "Shopify1": {"main": [[{"node": "Shopify2", "type": "main", "index": 0}]]}, "Shopify2": {"main": [[{"node": "Shopify3", "type": "main", "index": 0}]]}, "Shopify3": {"main": [[{"node": "Shopify4", "type": "main", "index": 0}]]}, "Shopify5": {"main": [[{"node": "Shopify6", "type": "main", "index": 0}]]}, "Shopify6": {"main": [[{"node": "Shopify7", "type": "main", "index": 0}]]}, "Shopify7": {"main": [[{"node": "Shopify8", "type": "main", "index": 0}]]}, "Shopify8": {"main": [[{"node": "Shopify9", "type": "main", "index": 0}]]}, "Shopify9": {"main": [[{"node": "Shopify1", "type": "main", "index": 0}]]}}
Spotify:Artist:get getAlbums getRelatedArtists getTopTracks:Album:get getNewReleases getTracks:Track:get getAudioFeatures:Playlist:create getUserPlaylists get add getTracks delete:Player:recentylPlayed currentlyPlaying:Library:getLikedTracks
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "4509b9ad-036c-4042-9094-565f3831b616"}, {"parameters": {"resource": "artist", "id": "0dwFxqYkvZLSA6U6XfQcDV"}, "name": "Spotify", "type": "n8n-nodes-base.spotify", "typeVersion": 1, "position": [440, 300], "credentials": {"spotifyOAuth2Api": {"id": "223", "name": "Spotify OAuth2 creds"}}, "id": "1d211521-bf07-43d1-a537-76a43689659f"}, {"parameters": {"resource": "artist", "operation": "getAlbums", "id": "0dwFxqYkvZLSA6U6XfQcDV", "limit": 1}, "name": "Spotify1", "type": "n8n-nodes-base.spotify", "typeVersion": 1, "position": [600, 300], "credentials": {"spotifyOAuth2Api": {"id": "223", "name": "Spotify OAuth2 creds"}}, "id": "5335e14c-1580-43cf-ab02-e0a6ff3a8682"}, {"parameters": {"resource": "artist", "operation": "getRelatedArtists", "id": "0dwFxqYkvZLSA6U6XfQcDV"}, "name": "Spotify2", "type": "n8n-nodes-base.spotify", "typeVersion": 1, "position": [600, 150], "credentials": {"spotifyOAuth2Api": {"id": "223", "name": "Spotify OAuth2 creds"}}, "notes": "CAP_RESULTS_LENGTH=1", "id": "87c2549e-56ae-4bce-94aa-f6a28da0a87c"}, {"parameters": {"resource": "artist", "operation": "getTopTracks", "id": "0dwFxqYkvZLSA6U6XfQcDV"}, "name": "Spotify3", "type": "n8n-nodes-base.spotify", "typeVersion": 1, "position": [600, 460], "credentials": {"spotifyOAuth2Api": {"id": "223", "name": "Spotify OAuth2 creds"}}, "notes": "CAP_RESULTS_LENGTH=1", "id": "69240ec6-ad37-46b3-80d2-b1656c2f1334"}, {"parameters": {"resource": "album", "id": "={{$node[\"Spotify1\"].json[\"id\"]}}"}, "name": "Spotify4", "type": "n8n-nodes-base.spotify", "typeVersion": 1, "position": [810, 300], "credentials": {"spotifyOAuth2Api": {"id": "223", "name": "Spotify OAuth2 creds"}}, "id": "00066fda-fa7f-4070-a687-fe253bfdd1cb"}, {"parameters": {"resource": "album", "operation": "getTracks", "id": "={{$node[\"Spotify1\"].json[\"id\"]}}", "limit": 1}, "name": "Spotify5", "type": "n8n-nodes-base.spotify", "typeVersion": 1, "position": [1100, 300], "credentials": {"spotifyOAuth2Api": {"id": "223", "name": "Spotify OAuth2 creds"}}, "id": "a2a42efb-f876-4612-acfd-2325108cea84"}, {"parameters": {"resource": "track", "operation": "get", "id": "={{$node[\"Spotify5\"].json[\"id\"]}}"}, "name": "Spotify6", "type": "n8n-nodes-base.spotify", "typeVersion": 1, "position": [1250, 300], "credentials": {"spotifyOAuth2Api": {"id": "223", "name": "Spotify OAuth2 creds"}}, "id": "be6c985b-88be-424f-b7c3-76126a347140"}, {"parameters": {"resource": "track", "operation": "getAudioFeatures", "id": "={{$node[\"Spotify5\"].json[\"id\"]}}"}, "name": "Spotify7", "type": "n8n-nodes-base.spotify", "typeVersion": 1, "position": [1400, 300], "credentials": {"spotifyOAuth2Api": {"id": "223", "name": "Spotify OAuth2 creds"}}, "id": "6c05d655-43c2-456d-a9d0-a80ac251c1f6"}, {"parameters": {"resource": "playlist", "operation": "getUserPlaylists", "limit": 1}, "name": "Spotify8", "type": "n8n-nodes-base.spotify", "typeVersion": 1, "position": [450, 610], "credentials": {"spotifyOAuth2Api": {"id": "223", "name": "Spotify OAuth2 creds"}}, "id": "36defd84-29a1-4f39-896e-4885daaec151"}, {"parameters": {"resource": "playlist", "operation": "get", "id": "={{$node[\"Spotify8\"].json[\"id\"]}}"}, "name": "Spotify9", "type": "n8n-nodes-base.spotify", "typeVersion": 1, "position": [600, 610], "credentials": {"spotifyOAuth2Api": {"id": "223", "name": "Spotify OAuth2 creds"}}, "id": "61c3c3dd-c263-4f2d-bd2d-c30ee5cd24ed"}, {"parameters": {"resource": "playlist", "id": "={{$node[\"Spotify8\"].json[\"id\"]}}", "trackID": "spotify:track:2ea6bt302Bq8Hiulp8Bn2C", "additionalFields": {}}, "name": "Spotify10", "type": "n8n-nodes-base.spotify", "typeVersion": 1, "position": [750, 610], "credentials": {"spotifyOAuth2Api": {"id": "223", "name": "Spotify OAuth2 creds"}}, "id": "1aba2540-e5c6-4e19-9afb-1ce402ee9e63"}, {"parameters": {"resource": "playlist", "operation": "getTracks", "id": "={{$node[\"Spotify8\"].json[\"id\"]}}", "limit": 1}, "name": "Spotify11", "type": "n8n-nodes-base.spotify", "typeVersion": 1, "position": [900, 610], "credentials": {"spotifyOAuth2Api": {"id": "223", "name": "Spotify OAuth2 creds"}}, "id": "b73d97e3-8689-4d5a-b63a-798b841f97df"}, {"parameters": {"resource": "playlist", "operation": "delete", "id": "={{$node[\"Spotify8\"].json[\"id\"]}}", "trackID": "spotify:track:2ea6bt302Bq8Hiulp8Bn2C"}, "name": "Spotify12", "type": "n8n-nodes-base.spotify", "typeVersion": 1, "position": [1050, 610], "credentials": {"spotifyOAuth2Api": {"id": "223", "name": "Spotify OAuth2 creds"}}, "id": "0a06cad9-d378-4206-8974-4a32f47c3ca2"}, {"parameters": {"operation": "recentlyPlayed", "limit": 1}, "name": "Spotify14", "type": "n8n-nodes-base.spotify", "typeVersion": 1, "position": [450, 0], "credentials": {"spotifyOAuth2Api": {"id": "223", "name": "Spotify OAuth2 creds"}}, "id": "e053e2f6-6166-4642-aae0-45c9e1fd7e8a"}, {"parameters": {"operation": "currentlyPlaying"}, "name": "Spotify15", "type": "n8n-nodes-base.spotify", "typeVersion": 1, "position": [600, 0], "credentials": {"spotifyOAuth2Api": {"id": "223", "name": "Spotify OAuth2 creds"}}, "id": "3f6ce69d-fe20-4ae8-9e0f-2fd6819829b8"}, {"parameters": {"resource": "album", "operation": "getNewReleases", "limit": 1, "filters": {"country": "DE"}}, "name": "Spotify13", "type": "n8n-nodes-base.spotify", "typeVersion": 1, "position": [950, 300], "credentials": {"spotifyOAuth2Api": {"id": "223", "name": "Spotify OAuth2 creds"}}, "id": "56209a90-208b-427e-91a6-2afeed0a2637"}, {"parameters": {"resource": "playlist", "operation": "create", "name": "=Playlist{{Date.now()}}", "additionalFields": {"public": true}}, "name": "Spotify16", "type": "n8n-nodes-base.spotify", "typeVersion": 1, "position": [1200, 610], "credentials": {"spotifyOAuth2Api": {"id": "223", "name": "Spotify OAuth2 creds"}}, "id": "59830b10-56b4-49b0-b2fd-c21829acb8f6"}, {"parameters": {"resource": "library", "limit": 1}, "name": "Spotify17", "type": "n8n-nodes-base.spotify", "typeVersion": 1, "position": [450, 450], "credentials": {"spotifyOAuth2Api": {"id": "223", "name": "Spotify OAuth2 creds"}}, "id": "8ffb18bc-7e7a-403c-bcb1-60732c28f358"}]
{"Start": {"main": [[{"node": "Spotify", "type": "main", "index": 0}, {"node": "Spotify8", "type": "main", "index": 0}, {"node": "Spotify14", "type": "main", "index": 0}, {"node": "Spotify17", "type": "main", "index": 0}]]}, "Spotify": {"main": [[{"node": "Spotify1", "type": "main", "index": 0}, {"node": "Spotify3", "type": "main", "index": 0}, {"node": "Spotify2", "type": "main", "index": 0}]]}, "Spotify1": {"main": [[{"node": "Spotify4", "type": "main", "index": 0}]]}, "Spotify4": {"main": [[{"node": "Spotify13", "type": "main", "index": 0}]]}, "Spotify5": {"main": [[{"node": "Spotify6", "type": "main", "index": 0}]]}, "Spotify6": {"main": [[{"node": "Spotify7", "type": "main", "index": 0}]]}, "Spotify8": {"main": [[{"node": "Spotify9", "type": "main", "index": 0}]]}, "Spotify9": {"main": [[{"node": "Spotify10", "type": "main", "index": 0}]]}, "Spotify10": {"main": [[{"node": "Spotify11", "type": "main", "index": 0}]]}, "Spotify11": {"main": [[{"node": "Spotify12", "type": "main", "index": 0}]]}, "Spotify14": {"main": [[{"node": "Spotify15", "type": "main", "index": 0}]]}, "Spotify13": {"main": [[{"node": "Spotify5", "type": "main", "index": 0}]]}, "Spotify12": {"main": [[{"node": "Spotify16", "type": "main", "index": 0}]]}}
SummarizationChain:Advanced:Map
[{"parameters": {}, "id": "0d9a3d32-b54b-4353-8886-50390461f967", "name": "When clicking \"Test workflow\"", "type": "n8n-nodes-base.manualTrigger", "typeVersion": 1, "position": [660, 380]}, {"parameters": {"jsCode": "return {\n text: `The dancing plague of 1518, or dance epidemic of 1518 (French: \u00c9pid\u00e9mie dansante de 1518), was a case of dancing mania that occurred in Strasbourg, Alsace (modern-day France), in the Holy Roman Empire from July 1518 to September 1518. Somewhere between 50 and 400 people took to dancing for weeks. There are many theories behind the phenomenon, the most popular being stress-induced mass hysteria, suggested by John Waller. Other theories include ergot and religious explanations. There is controversy concerning the number of deaths.\n\nHistory\nEvents\nThe outbreak began in July 1518 when a woman called Frau Troffea began to dance fervently and uncontrollably in a street in Strasbourg. Troffea kept up the constant dancing for a week. Soon, three dozen others joined in. By August, the \"dancing plague\" had claimed 400 victims. Dancers were beginning to collapse. It is said some even died from a stroke or heart attack. No one knew what caused this reaction, which meant no one understood how to remedy it. By early September, the outbreak began to subside, when the dancers were sent to a mountain shrine to pray for absolution.\n\nHistorical documents, including \"physician notes, cathedral sermons, local and regional chronicles, and even notes issued by the Strasbourg city council\" are clear that the victims danced; it is not known why. Historical sources agree that there was an outbreak of dancing after a single woman started dancing, and the dancing did not seem to die down. It lasted for such a long time that it even attracted the attention of the authorities; until the council gave up authority to the physicians, who prescribed the afflicted to \"dance themselves free of it.\" There are claims that guild halls were refurbished to accommodate the dancing, as well as musicians and strong people to help keep those dealing with the dancing mania to stay upright. This backfired, and the council was forced to ban public dancing as people danced in fear it was a punishment from Saint Vitus; and to be \"free of sin\" many joined in on the dancing epidemic. The council went as far as to ban music, as well. Those who danced were then ordered to go to the shrine of Saint Vitus, wore red shoes that were sprinkled with holy water and had painted crosses on the tops and soles. They also had to hold small crosses in their hands; and incense and Latin incantations were part of this \"ritual.\" Apparently \"forgiven by Vitus,\" word was spread of a successful ritual and the Dancing Plague had ended.\n\nEvents similar to this are said to have occurred throughout the medieval age including 11th century in K\u00f6lbigk, Saxony, where it was believed to be the result of divine judgment . In 15th century Apulia, Italy, a woman was bitten by a tarantula, the venom making her dance convulsively. The only way to cure the bite was to \"shimmy\" and to have the right sort of music available, which was an accepted remedy by scholars like Athanasius Kircher.\n\nContemporaneous explanations included demonic possession and overheated blood.\n\nVeracity of deaths\nControversy exists over whether people ultimately danced to their deaths. Some sources claim that for a period the plague killed around fifteen people per day, but the sources of the city of Strasbourg at the time of the events did not mention the number of deaths, or even if there were fatalities. There do not appear to be any sources related to the events that make note of any fatalities. Ned Pennant-Rea also claims that the final death toll is not known, but if the claims of fifteen people dying per day were true then the toll could be \"into the hundreds.\"\n\nThe main source for the claim is John Waller, who has written several journal articles on the subject and the book A Time to Dance, a Time to Die: The Extraordinary Story of the Dancing Plague of 1518. The sources cited by Waller that mention deaths were all from later accounts of the events. There is also uncertainty around the identity of the initial dancer (either an unnamed woman or \"Frau Troffea\") and the number of dancers involved (somewhere between 50 and 400). Of the six chronicle accounts, four support Lady Troffea as the first dancer.\n\nModern theories\nFood poisoning\nSome believe the dancing could have been brought on by food poisoning caused by the toxic and psychoactive chemical products of ergot fungi (ergotism), which grows commonly on grains (such as rye) used for baking bread. Ergotamine is the main psychoactive product of ergot fungi; it is structurally related to the drug lysergic acid diethylamide (LSD-25) and is the substance from which LSD-25 was originally synthesized. The same fungus has also been implicated in other major historical anomalies, including the Salem witch trials.\n\nIn The Lancet, John Waller argues that \"this theory does not seem tenable, since it is unlikely that those poisoned by ergot could have danced for days at a time. Nor would so many people have reacted to its psychotropic chemicals in the same way. The ergotism theory also fails to explain why almost every outbreak occurred somewhere along the Rhine and Moselle rivers, areas linked by water but with quite different climates and crops\".\n\nStress-induced mass hysteria\nThis could have been an example of fully developed cases of psychogenic movement disorder happening in mass hysteria or mass psychogenic illness, which involves many individuals suddenly exhibiting the same bizarre behavior. The behavior spreads rapidly and broadly in an epidemic pattern. This kind of comportment could have been caused by elevated levels of psychological stress, caused by the ruthless years (even by the rough standards of the early modern period) the people of Alsace were suffering.\n\nWaller speculates that the dancing was \"stress-induced psychosis\" on a mass level, since the region where the people danced was riddled with starvation and disease, and the inhabitants tended to be superstitious. Seven other cases of dancing plague were reported in the same region during the medieval era.\n\nThis psychogenic illness could have created a chorea (from the Greek khoreia meaning \"to dance\"), a situation comprising random and intricate unintentional movements that flit from body part to body part. Diverse choreas (St. Vitus' dance, St. John's dance, and tarantism) were labeled in the Middle Ages referring to the independent epidemics of \"dancing mania\" that happened in central Europe, particularly at the time of the plague.\n\nPop culture and media\nThe event inspired Jonathan Glazer's 2020 short film Strasbourg 1518.\n\nIt was also the inspiration behind the 2022 choral song \"Choreomania\" by Florence and the Machine. It was the third track on the album Dance Fever, which took its title from the song.\n\nThe book series \"A Collection of Utter Speculation\" released a title \"The Dancing Plague: A Collection of Utter Speculation\" in 2022. It is a fictional account about the events that happened in Strasbourg.\n\nThe 2023 novel, The Dance Tree, by Kiran Millwood Hargrave is a fictionalized version of the summer of 1518 in Strasbourg.\n\nThe event is featured as part of the first season of Watcher Entertainment's \"Puppet History\" in the episode \"The Dancing Plague\".`\n}"}, "id": "a5c7a7c0-442c-4ffd-bbf2-1ee98bab0a23", "name": "Set Article", "type": "n8n-nodes-base.code", "typeVersion": 2, "position": [1080, 380]}, {"parameters": {"model": "gpt-3.5-turbo-0125", "options": {"temperature": 0}}, "id": "3b01b603-8e9e-4f91-bd86-04820f2234dc", "name": "OpenAI Chat Model1", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "typeVersion": 1, "position": [1480, 520], "credentials": {"openAiApi": {"id": "Zak03cqeLUOsgkFI", "name": "OpenAi account"}}}, {"parameters": {"chunkSize": 300, "chunkOverlap": 50}, "id": "b4c73920-090e-4668-9fa7-7ea124373409", "name": "Token Splitter", "type": "@n8n/n8n-nodes-langchain.textSplitterTokenSplitter", "typeVersion": 1, "position": [1620, 520]}, {"parameters": {"assignments": {"assignments": [{"id": "6fa592a3-1cfe-42d7-8d45-a7ec80871e52", "name": "baseline_summary", "value": "The dancing plague of 1518 in Strasbourg, Alsace involved between 50 and 400 people dancing uncontrollably for weeks. The cause is unknown, with theories including stress-induced mass hysteria and ergot poisoning. The outbreak ended when the dancers prayed for absolution at a shrine. There is controversy over the number of deaths, with some sources claiming up to fifteen deaths per day, but historical documents do not confirm any fatalities. Similar events have been reported throughout history, inspiring various works of pop culture.", "type": "string"}]}, "options": {}}, "id": "ca8694fd-7788-41f1-8aa7-11c9c1682358", "name": "Set Baseline", "type": "n8n-nodes-base.set", "typeVersion": 3.3, "position": [880, 380]}, {"parameters": {"model": "gpt-3.5-turbo-0125", "options": {"temperature": 0}}, "id": "57a4de1c-f385-439b-8809-8a1172bab713", "name": "OpenAI Chat Model8", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "typeVersion": 1, "position": [1800, 520], "credentials": {"openAiApi": {"id": "Zak03cqeLUOsgkFI", "name": "OpenAi account"}}}, {"parameters": {"chunkingMode": "advanced", "options": {}}, "id": "5ad67153-eef9-4d4a-94af-4974d33c2076", "name": "Summary - Advanced", "type": "@n8n/n8n-nodes-langchain.chainSummarization", "typeVersion": 2, "position": [1460, 380]}, {"parameters": {"code": {"execute": {"code": "const { loadEvaluator } = require(\"langchain/evaluation\");\n\nconst llm = await this.getInputConnectionData('ai_languageModel', 0);\nconst inputData = this.getInputData();\nconst inputSummary = inputData[0].json.response.text;\nconst baselineSummary = $('Set Baseline').item.json.baseline_summary\n\nconst evaluator = await loadEvaluator(\"labeled_criteria\", { criteria: 'helpfulness', llm });\n\nconst result = await evaluator.evaluateStrings({\n input: \"Summarize Wikipedia article about the dancing plague of 1518\",\n prediction: inputSummary,\n reference: baselineSummary,\n});\n\n\nreturn [ {json: { ...result } } ];"}}, "inputs": {"input": [{"type": "main", "maxConnections": 1, "required": true}, {"type": "ai_languageModel", "maxConnections": 1, "required": true}]}, "outputs": {"output": [{"type": "main"}]}}, "id": "cdad3056-57aa-4d84-98b2-5077793b883f", "name": "Evaluate to Baseline3", "type": "@n8n/n8n-nodes-langchain.code", "typeVersion": 1, "position": [1780, 380]}]
{"When clicking \"Test workflow\"": {"main": [[{"node": "Set Baseline", "type": "main", "index": 0}]]}, "Set Article": {"main": [[{"node": "Summary - Advanced", "type": "main", "index": 0}]]}, "OpenAI Chat Model1": {"ai_languageModel": [[{"node": "Summary - Advanced", "type": "ai_languageModel", "index": 0}]]}, "Token Splitter": {"ai_textSplitter": [[{"node": "Summary - Advanced", "type": "ai_textSplitter", "index": 0}]]}, "Set Baseline": {"main": [[{"node": "Set Article", "type": "main", "index": 0}]]}, "OpenAI Chat Model8": {"ai_languageModel": [[{"node": "Evaluate to Baseline3", "type": "ai_languageModel", "index": 0}]]}, "Summary - Advanced": {"main": [[{"node": "Evaluate to Baseline3", "type": "main", "index": 0}]]}}
AI web researcher for sales
[{"id": "71b06728-7f59-49e3-9365-3281189a6659", "name": "When clicking \"Test workflow\"", "type": "n8n-nodes-base.manualTrigger", "position": [920, 340], "parameters": {}, "typeVersion": 1}, {"id": "b37019e3-c7ab-4119-986d-c27d082a036e", "name": "Input", "type": "n8n-nodes-base.set", "position": [1340, 340], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "fcc97354-b9f6-4459-a004-46e87902c77c", "name": "company_input", "type": "string", "value": "={{ $json.input }}"}, {"id": "e5415c49-5204-45b1-a0e9-814157127b12", "name": "row_number", "type": "number", "value": "={{ $json.row_number }}"}]}}, "typeVersion": 3.3}, {"id": "7d5d53ac-6d3c-4b24-97c7-deb6b76749e5", "name": "OpenAI Chat Model", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [2020, 660], "parameters": {"model": "gpt-4o", "options": {"temperature": 0.3}}, "credentials": {"openAiApi": {"id": "FMTQypGcsAwaRQdC", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "24e2f3b0-8b90-49a9-bde6-0fb0c2baf52a", "name": "Get website content", "type": "@n8n/n8n-nodes-langchain.toolWorkflow", "position": [2580, 680], "parameters": {"name": "get_website_content", "source": "parameter", "description": "This tool will return the text from the given URL. ", "workflowJson": "{\n \"meta\": {\n \"templateCredsSetupCompleted\": true,\n \"instanceId\": \"2b1cc1a8b0a2fb9caab11ab2d5eb3712f9973066051b2e898cf4041a1f2a7757\"\n },\n \"nodes\": [\n {\n \"parameters\": {},\n \"id\": \"475eaf3c-7e11-457e-8b72-4d3e683e2f80\",\n \"name\": \"Execute Workflow Trigger\",\n \"type\": \"n8n-nodes-base.executeWorkflowTrigger\",\n \"typeVersion\": 1,\n \"position\": [\n 260,\n 340\n ]\n },\n {\n \"parameters\": {\n \"url\": \"={{ $json.query.url }}\",\n \"options\": {}\n },\n \"id\": \"321fbc74-d749-4f9b-954e-7cad37601ddf\",\n \"name\": \"Visit Website\",\n \"type\": \"n8n-nodes-base.httpRequest\",\n \"typeVersion\": 4.2,\n \"position\": [\n 440,\n 340\n ]\n },\n {\n \"parameters\": {\n \"operation\": \"extractHtmlContent\",\n \"extractionValues\": {\n \"values\": [\n {\n \"key\": \"body\",\n \"cssSelector\": \"html\",\n \"skipSelectors\": \"head\"\n }\n ]\n },\n \"options\": {\n \"cleanUpText\": true\n }\n },\n \"id\": \"6e51732a-4999-4805-838b-f692e9965197\",\n \"name\": \"HTML\",\n \"type\": \"n8n-nodes-base.html\",\n \"typeVersion\": 1.2,\n \"position\": [\n 620,\n 340\n ]\n }\n ],\n \"connections\": {\n \"Execute Workflow Trigger\": {\n \"main\": [\n [\n {\n \"node\": \"Visit Website\",\n \"type\": \"main\",\n \"index\": 0\n }\n ]\n ]\n },\n \"Visit Website\": {\n \"main\": [\n [\n {\n \"node\": \"HTML\",\n \"type\": \"main\",\n \"index\": 0\n }\n ]\n ]\n }\n },\n \"pinData\": {\n \"Execute Workflow Trigger\": [\n {\n \"query\": {\n \"url\": \"https://www.lemlist.com\"\n }\n }\n ]\n }\n}", "jsonSchemaExample": "{\n\t\"url\": \"https://www.lemlist.com\"\n}", "specifyInputSchema": true, "responsePropertyName": "body"}, "typeVersion": 1.1}, {"id": "ff7ab74c-dfc6-43ce-8c57-6edf935b4915", "name": "SerpAPI - Search Google", "type": "@n8n/n8n-nodes-langchain.toolSerpApi", "position": [2300, 660], "parameters": {"options": {}}, "credentials": {"serpApi": {"id": "ECK6FimAloRJOZMG", "name": "SerpAPI account"}}, "typeVersion": 1}, {"id": "4fe311f2-4983-4380-b4ed-a827a406fce5", "name": "Structured Output Parser", "type": "@n8n/n8n-nodes-langchain.outputParserStructured", "position": [2880, 660], "parameters": {"schemaType": "manual", "inputSchema": "{\n\t\"type\": \"object\",\n\t\"properties\": {\n\t\t\"case_study_link\": {\n\t\t\t\"type\":[\"string\", \"null\"]\n\t\t},\n \t\t\"domain\": {\n\t\t\t\"type\": [\"string\", \"null\"]\n\t\t},\n \"linkedinUrl\": {\n\t\t\t\"type\": [\"string\", \"null\"]\n\t\t},\n \t\"market\": {\n\t\t\t\"type\": [\"string\", \"null\"]\n\t\t},\n\t\t\"cheapest_plan\": {\n\t\t\t\"type\": [\"number\", \"null\"]\n\t\t},\n\t\"has_enterprise_plan\": {\n\t\t\t\"type\": [\"boolean\", \"null\"]\n\t\t},\n\t\"has_API\": {\n\t\t\t\"type\": [\"boolean\", \"null\"]\n\t\t},\n\t\"has_free_trial\": {\n\t\t\t\"type\": [\"boolean\", \"null\"]\n\t\t},\n\t\"integrations\": {\n\t\t\t\"type\": [\"array\",\"null\"],\n \"items\": {\n\t\t\t\t\"type\": \"string\"\n\t\t\t}\n\t\t}\n\t}\n}"}, "typeVersion": 1.2}, {"id": "89ed0723-4dbe-428d-b1a9-ebdf515e42bb", "name": "Loop Over Items", "type": "n8n-nodes-base.splitInBatches", "position": [1600, 340], "parameters": {"options": {}}, "typeVersion": 3}, {"id": "34ea3862-e8e5-4bf2-a9aa-2ad084376bb5", "name": "AI Researcher Output Data", "type": "n8n-nodes-base.set", "position": [2960, 340], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "4109ca11-1bb8-4f5c-8bec-a962f44b0746", "name": "domain", "type": "string", "value": "={{ $json.output.domain }}"}, {"id": "7f492768-375e-48fa-866b-644b2b5cbd68", "name": "linkedinUrl", "type": "string", "value": "={{ $json.output.linkedinUrl }}"}, {"id": "e30b0d07-68db-45a1-9593-fd6ce24a1d50", "name": "market", "type": "string", "value": "={{ $json.output.market }}"}, {"id": "0c03a51e-2c07-4583-85c6-d3d2ee81c5d1", "name": "cheapest_plan", "type": "number", "value": "={{ $json.output.cheapest_plan }}"}, {"id": "0c9622d0-8446-4663-9a94-964b5df851f1", "name": "has_enterprise_plan", "type": "boolean", "value": "={{ $json.output.has_enterprise_plan }}"}, {"id": "564cf6ea-457f-4762-bc19-6900b7d5743c", "name": "has_API", "type": "boolean", "value": "={{ $json.output.has_API }}"}, {"id": "7fd39897-65c3-45d6-9563-8254f55ecef0", "name": "has_free_trial", "type": "boolean", "value": "={{ $json.output.has_free_trial }}"}, {"id": "26477939-d407-4cae-92b2-9a9dc0f53a64", "name": "integrations", "type": "array", "value": "={{ $json.output.integrations }}"}, {"id": "f0cc61d1-6b6b-4142-8627-4a4c721b19a1", "name": "case_study_link", "type": "string", "value": "={{ $json.output.case_study_link }}"}]}}, "typeVersion": 3.3}, {"id": "ff1cb26d-6138-4ee1-9f28-4ecc80c1c8ae", "name": "Google Sheets - Update Row with data", "type": "n8n-nodes-base.googleSheets", "position": [3600, 700], "parameters": {"columns": {"value": {"domain": "={{ $json.domain }}", "market": "={{ $json.market }}", "row_number": "={{ $json.row_number }}", "linkedinUrl": "={{ $json.linkedinUrl }}", "integrations": "={{ $json.integrations }}", "cheapest_plan": "={{ $json.cheapest_plan }}", "has_free_trial": "={{ $json.has_free_trial }}", "enrichment_status": "done", "has_entreprise_plan": "={{ $json.has_enterprise_plan }}", "last_case_study_link": "={{ $json.case_study_link }}"}, "schema": [{"id": "input", "type": "string", "display": true, "removed": true, "required": false, "displayName": "input", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "domain", "type": "string", "display": true, "required": false, "displayName": "domain", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "linkedinUrl", "type": "string", "display": true, "required": false, "displayName": "linkedinUrl", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "has_free_trial", "type": "string", "display": true, "required": false, "displayName": "has_free_trial", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "cheapest_plan", "type": "string", "display": true, "required": false, "displayName": "cheapest_plan", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "has_entreprise_plan", "type": "string", "display": true, "required": false, "displayName": "has_entreprise_plan", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "last_case_study_link", "type": "string", "display": true, "removed": false, "required": false, "displayName": "last_case_study_link", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "market", "type": "string", "display": true, "required": false, "displayName": "market", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "integrations", "type": "string", "display": true, "required": false, "displayName": "integrations", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "enrichment_status", "type": "string", "display": true, "required": false, "displayName": "enrichment_status", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "row_number", "type": "string", "display": true, "removed": false, "readOnly": true, "required": false, "displayName": "row_number", "defaultMatch": false, "canBeUsedToMatch": true}], "mappingMode": "defineBelow", "matchingColumns": ["row_number"]}, "options": {}, "operation": "update", "sheetName": {"__rl": true, "mode": "list", "value": "gid=0", "cachedResultUrl": "https://docs.google.com/spreadsheets/d/19U7gAgkUEz6mbFcnygf1zKDdGvY6OAdUqq3bZQWgjxE/edit#gid=0", "cachedResultName": "Sheet1"}, "documentId": {"__rl": true, "mode": "list", "value": "19U7gAgkUEz6mbFcnygf1zKDdGvY6OAdUqq3bZQWgjxE", "cachedResultUrl": "https://docs.google.com/spreadsheets/d/19U7gAgkUEz6mbFcnygf1zKDdGvY6OAdUqq3bZQWgjxE/edit?usp=drivesdk", "cachedResultName": "Enrich companies using AI agents"}}, "credentials": {"googleSheetsOAuth2Api": {"id": "GC2OQl3Jvy543LT2", "name": "Google Sheets account - perso"}}, "typeVersion": 4.3}, {"id": "6611f852-b4d6-4a07-9428-db206ef57cc3", "name": "Merge data", "type": "n8n-nodes-base.merge", "position": [3240, 180], "parameters": {"mode": "combine", "options": {}, "combinationMode": "mergeByPosition"}, "typeVersion": 2.1}, {"id": "2a19516b-33a1-4987-9b5f-242a084621e0", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [380, 240], "parameters": {"width": 409.0131656322444, "height": 658.0614601225933, "content": "## Read Me\n\nThis workflow allows you to do account research with the web using AI.\n\nThe advanced AI module has 2 capabilities: \n- Research Google using SerpAPI\n- Visit and get website content using a sub-workflow\n\n\nFrom an unstructured input like a domain or a company name. \n\nIt will return the following properties: \n- domain\n- company Linkedin Url\n- cheapest plan\n- has free trial\n- has entreprise plan\n- has API\n- market (B2B or B2C)\n\n\nThe strength of n8n here is that you can adapt this workflow to research whatever information you need.\n\nYou just have to precise it in the prompt and to precise the output format in the \"Strutured Output Parser\" module.\n\n[Click here to find more detailed instructions with video guide.](https://lempire.notion.site/AI-Web-research-with-n8n-a25aae3258d0423481a08bd102f16906)\n"}, "typeVersion": 1}, {"id": "67d485c9-3289-4bb3-9523-cd24c0b1aa05", "name": "Get rows to enrich", "type": "n8n-nodes-base.googleSheets", "position": [1140, 340], "parameters": {"options": {"returnAllMatches": "returnAllMatches"}, "filtersUI": {"values": [{"lookupColumn": "enrichment_status"}]}, "sheetName": {"__rl": true, "mode": "list", "value": "gid=0", "cachedResultUrl": "https://docs.google.com/spreadsheets/d/19U7gAgkUEz6mbFcnygf1zKDdGvY6OAdUqq3bZQWgjxE/edit#gid=0", "cachedResultName": "Sheet1"}, "documentId": {"__rl": true, "mode": "list", "value": "19U7gAgkUEz6mbFcnygf1zKDdGvY6OAdUqq3bZQWgjxE", "cachedResultUrl": "https://docs.google.com/spreadsheets/d/19U7gAgkUEz6mbFcnygf1zKDdGvY6OAdUqq3bZQWgjxE/edit?usp=drivesdk", "cachedResultName": "Enrich companies using AI agents"}}, "credentials": {"googleSheetsOAuth2Api": {"id": "GC2OQl3Jvy543LT2", "name": "Google Sheets account - perso"}}, "typeVersion": 4.3}, {"id": "eb0c95e7-2211-48d1-abaf-07cd0c76d3a6", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [1540, 227.25301102878547], "parameters": {"width": 300.49399096535876, "height": 333.8263184006576, "content": "### Process rows 1 by 1\nThis module will allow us to process rows 1 by 1"}, "typeVersion": 1}, {"id": "8bf0deae-dda7-4e27-9ac7-978db14cca19", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [2740, 560], "parameters": {"width": 300.49399096535876, "height": 236.01118609685022, "content": "Precise here the format in which you need the data to be "}, "typeVersion": 1}, {"id": "dc4f1550-1e3c-4175-a2b3-10153dc2fd77", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [2180, 200.2582716310755], "parameters": {"width": 300.49399096535876, "height": 279.8787004666023, "content": "### Ask AI what are the information you are looking for about the company"}, "typeVersion": 1}, {"id": "70fc73a0-303b-46e1-822d-cebdbccf8e32", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [2220, 580], "parameters": {"height": 248.91749449109562, "content": "Get your free API key here https://serpapi.com/"}, "typeVersion": 1}, {"id": "0c1dafa9-28fe-4ef4-b80e-d4034e16f6c0", "name": "Schedule Trigger", "type": "n8n-nodes-base.scheduleTrigger", "position": [920, 580], "parameters": {"rule": {"interval": [{"field": "hours", "hoursInterval": 2}]}}, "typeVersion": 1.2}, {"id": "8b5ebee9-f519-4621-bf2a-12891794f2c5", "name": "Sticky Note5", "type": "n8n-nodes-base.stickyNote", "position": [820, 240], "parameters": {"width": 266.12865147126786, "height": 627.5654650079845, "content": "Run the workflow manually or activate it to run it every 2 hours"}, "typeVersion": 1}, {"id": "d7db2452-ba3d-4adb-bd8b-d17a92d1bce5", "name": "AI company researcher", "type": "@n8n/n8n-nodes-langchain.agent", "position": [2200, 340], "parameters": {"text": "=This is the company I want you to research info about:\n{{ $json.company_input }}\n\nReturn me:\n- the linkedin URL of the company\n- the domain of the company. in this format ([domain].[tld])\n- market: if they are B2B or B2C. Only reply by \"B2B\" or \"B2B\"\n- the lowest paid plan the company is offering. If you are not sure, reply null.\n- the latest case study URL published on the website (find case study hub using google, and return the first case study link)\n- tell me if the company offer an API\n- tell me if the company has an enterprise plan\n- tell me if the company has a free trial mentionned in their homepage. reply false if you don't find strong evidence.\n- return an array with up to 5 tools the company is integrated with", "options": {"maxIterations": 10}, "promptType": "define", "hasOutputParser": true}, "typeVersion": 1.6}, {"id": "f7896dbd-5c15-44e9-96ca-c695a66562cc", "name": "Search Google with ScrapingBee", "type": "@n8n/n8n-nodes-langchain.toolWorkflow", "position": [2300, 1140], "parameters": {"name": "search_google", "source": "parameter", "description": "Call this tool to get results from a google search.", "workflowJson": "{\n \"meta\": {\n \"templateCredsSetupCompleted\": true,\n \"instanceId\": \"2b1cc1a8b0a2fb9caab11ab2d5eb3712f9973066051b2e898cf4041a1f2a7757\"\n },\n \"nodes\": [\n {\n \"parameters\": {},\n \"id\": \"fbb17d8d-e2dc-46ae-aba4-8c27cc9d8766\",\n \"name\": \"Execute Workflow Trigger\",\n \"type\": \"n8n-nodes-base.executeWorkflowTrigger\",\n \"typeVersion\": 1,\n \"position\": [\n 20,\n 460\n ]\n },\n {\n \"parameters\": {\n \"url\": \"https://app.scrapingbee.com/api/v1/store/google\",\n \"authentication\": \"genericCredentialType\",\n \"genericAuthType\": \"httpQueryAuth\",\n \"sendQuery\": true,\n \"queryParameters\": {\n \"parameters\": [\n {\n \"name\": \"search\",\n \"value\": \"={{ $json.query.google_search_query }}\"\n },\n {\n \"name\": \"language\",\n \"value\": \"en\"\n },\n {\n \"name\": \"nb_results\",\n \"value\": \"5\"\n }\n ]\n },\n \"options\": {}\n },\n \"id\": \"b938a2bd-030e-46d7-adee-4e3c85cfc1b3\",\n \"name\": \"Search Google\",\n \"type\": \"n8n-nodes-base.httpRequest\",\n \"typeVersion\": 4.2,\n \"position\": [\n 300,\n 460\n ],\n \"credentials\": {\n \"httpQueryAuth\": {\n \"id\": \"Pb2CIMT0tN838QPy\",\n \"name\": \"ScrapingBee\"\n }\n }\n },\n {\n \"parameters\": {\n \"assignments\": {\n \"assignments\": [\n {\n \"id\": \"096fee70-444e-4948-816c-752b20786062\",\n \"name\": \"response\",\n \"value\": \"={{ $json.organic_results }}\",\n \"type\": \"array\"\n }\n ]\n },\n \"options\": {}\n },\n \"id\": \"c5db1fb6-d875-47d2-97db-287777583f22\",\n \"name\": \"Response\",\n \"type\": \"n8n-nodes-base.set\",\n \"typeVersion\": 3.3,\n \"position\": [\n 520,\n 460\n ]\n }\n ],\n \"connections\": {\n \"Execute Workflow Trigger\": {\n \"main\": [\n [\n {\n \"node\": \"Search Google\",\n \"type\": \"main\",\n \"index\": 0\n }\n ]\n ]\n },\n \"Search Google\": {\n \"main\": [\n [\n {\n \"node\": \"Response\",\n \"type\": \"main\",\n \"index\": 0\n }\n ]\n ]\n }\n },\n \"pinData\": {\n \"Execute Workflow Trigger\": [\n {\n \"query\": {\n \"google_search_query\": \"site:lemlist.com pricing\"\n }\n }\n ]\n }\n}", "jsonSchemaExample": "{\n\t\"google_search_query\": \"site:lemlist.com pricing\"\n}", "specifyInputSchema": true}, "typeVersion": 1.1}, {"id": "7a89c803-8145-49c2-aafe-ec2aff0b2fbc", "name": "Sticky Note6", "type": "n8n-nodes-base.stickyNote", "position": [2220, 940], "parameters": {"height": 340.14969579315925, "content": "Instead of SERP API module, you can also use this custom module for ScrapingBee. It is more cost-efficient.\n\nGet your free API key here https://www.scrapingbee.com/"}, "typeVersion": 1}, {"id": "79eff129-790b-46da-bef3-899eb6db3ced", "name": "Sticky Note7", "type": "n8n-nodes-base.stickyNote", "position": [1100, -20], "parameters": {"width": 194.6864335083109, "height": 525.6560478822986, "content": "In this workflow, I use Google Sheets to store the results. \n\nYou can use my template to get started faster:\n\n1. [Click on this link to get the template](https://docs.google.com/spreadsheets/d/1vR6s2nlTwu01v3GP7wvSRWS5W49FJIh20ZF7AUkmMDo/edit?usp=sharing)\n2. Make a copy of the Sheets\n3. Add the URL to this node and the node **\"Google Sheets - Update Row with data\"**\n\n\n"}, "typeVersion": 1}]
{"Input": {"main": [[{"node": "Loop Over Items", "type": "main", "index": 0}]]}, "Merge data": {"main": [[{"node": "Google Sheets - Update Row with data", "type": "main", "index": 0}]]}, "Loop Over Items": {"main": [null, [{"node": "AI company researcher", "type": "main", "index": 0}, {"node": "Merge data", "type": "main", "index": 0}]]}, "Schedule Trigger": {"main": [[{"node": "Get rows to enrich", "type": "main", "index": 0}]]}, "OpenAI Chat Model": {"ai_languageModel": [[{"node": "AI company researcher", "type": "ai_languageModel", "index": 0}]]}, "Get rows to enrich": {"main": [[{"node": "Input", "type": "main", "index": 0}]]}, "Get website content": {"ai_tool": [[{"node": "AI company researcher", "type": "ai_tool", "index": 0}]]}, "AI company researcher": {"main": [[{"node": "AI Researcher Output Data", "type": "main", "index": 0}]]}, "SerpAPI - Search Google": {"ai_tool": [[{"node": "AI company researcher", "type": "ai_tool", "index": 0}]]}, "Structured Output Parser": {"ai_outputParser": [[{"node": "AI company researcher", "type": "ai_outputParser", "index": 0}]]}, "AI Researcher Output Data": {"main": [[{"node": "Merge data", "type": "main", "index": 1}]]}, "When clicking \"Test workflow\"": {"main": [[{"node": "Get rows to enrich", "type": "main", "index": 0}]]}, "Google Sheets - Update Row with data": {"main": [[{"node": "Loop Over Items", "type": "main", "index": 0}]]}}
CV Resume PDF Parsing with Multimodal Vision AI
[{"id": "38da57b7-2161-415d-8473-783ccdc7b975", "name": "When clicking \u2018Test workflow\u2019", "type": "n8n-nodes-base.manualTrigger", "position": [-260, 840], "parameters": {}, "typeVersion": 1}, {"id": "2cd46d91-105d-4b5e-be43-3343a9da815d", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [-780, 540], "parameters": {"width": 365.05232558139534, "height": 401.24529475392126, "content": "## Try me out!\n\n### This workflow converts a Candidate Resume PDF to an image which is then \"read\" by a Vision Language Model (VLM). The VLM assesses if the candidate's CV is a fit for the desired role.\n\nThis approach can be employed to combat \"hidden prompts\" planted in resumes to bypass and/or manipulate automated ATS systems using AI.\n\n\n### Need Help?\nJoin the [Discord](https://discord.com/invite/XPKeKXeB7d) or ask in the [Forum](https://community.n8n.io/)!\n"}, "typeVersion": 1}, {"id": "40bab53a-fcbc-4acc-8d59-c20b3e1b2697", "name": "Structured Output Parser", "type": "@n8n/n8n-nodes-langchain.outputParserStructured", "position": [1200, 980], "parameters": {"jsonSchemaExample": "{\n\t\"is_qualified\": true,\n\t\"reason\": \"\"\n}"}, "typeVersion": 1.2}, {"id": "d75fb7ab-cfbc-419d-b803-deb9e99114ba", "name": "Should Proceed To Stage 2?", "type": "n8n-nodes-base.if", "position": [1360, 820], "parameters": {"options": {}, "conditions": {"options": {"leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "4dd69ba3-bf07-43b3-86b7-d94b07e9eea6", "operator": {"type": "boolean", "operation": "true", "singleValue": true}, "leftValue": "={{ $json.output.is_qualified }}", "rightValue": ""}]}}, "typeVersion": 2}, {"id": "a0f56270-67c2-4fab-b521-aa6f06b0b0fd", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [-380, 540], "parameters": {"color": 7, "width": 543.5706868577606, "height": 563.6162790697684, "content": "## 1. Download Candidate Resume\n[Read more about using Google Drive](https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.googledrive)\n\nFor this demonstration, we'll pull the candidate's resume PDF from Google Drive but you can just as easily recieve this resume from email or your ATS.\n\nIt should be noted that our PDF is a special test case which has been deliberately injected with an AI bypass; the bypass is a hidden prompt which aims to override AI instructions and auto-qualify the candidate... sneaky!\n\nDownload a copy of this resume here: https://drive.google.com/file/d/1MORAdeev6cMcTJBV2EYALAwll8gCDRav/view?usp=sharing"}, "typeVersion": 1}, {"id": "d21fe4dd-0879-4e5a-a70d-10f09b25eee2", "name": "Download Resume", "type": "n8n-nodes-base.googleDrive", "position": [-80, 840], "parameters": {"fileId": {"__rl": true, "mode": "id", "value": "1MORAdeev6cMcTJBV2EYALAwll8gCDRav"}, "options": {}, "operation": "download"}, "credentials": {"googleDriveOAuth2Api": {"id": "yOwz41gMQclOadgu", "name": "Google Drive account"}}, "typeVersion": 3}, {"id": "ea904365-d9d2-4f15-b7c3-7abfeb4c8c50", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [200, 540], "parameters": {"color": 7, "width": 605.0267171444024, "height": 595.3148729042731, "content": "## 2. Convert PDF to Image(s)\n[Read more about using Stirling PDF](https://github.com/Stirling-Tools/Stirling-PDF)\n\nAI vision models can only accept images (and sometimes videos!) as non-text inputs but not PDFs at time of writing. We'll have to convert our PDF to an image in order to use it.\n\nHere, we'll use a tool called **Stirling PDF** which can provide this functionality and can be accessed via a HTTP API. Feel free to use an alternative solution if available, otherwise follow the instructions on the Stirling PDF website to set up your own instance.\n\nAdditionally, we'll reduce the resolution of our converted image to speed up the processing done by the LLM. I find that about 75% of an A4 (30x40cm) is a good balance."}, "typeVersion": 1}, {"id": "cd00a47f-1ab9-46bf-8ea1-46ac899095e7", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [840, 540], "parameters": {"color": 7, "width": 747.8139534883712, "height": 603.1395348837208, "content": "## 3. Parse Resume with Multimodal LLM\n[Read more about using Basic LLM Chain](https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainllm/)\n\nMultimodal LLMs are LLMs which can accept binary inputs such as images, audio and/or video files. Most newer LLMs are by default multimodal and we'll use Google's Gemini here as an example. By processing each candidate's resume as an image, we avoid scenarios where text extraction fails due to layout issues or by picking up \"hidden\" or malicious prompts planted to subvert AI automated processing.\n\nThis vision model ensures the resume is read and understood as a human would. The hidden bypass is therefore rendered mute since the AI also cannot \"see\" the special prompt embedded in the document."}, "typeVersion": 1}, {"id": "d60214c6-c67e-4433-9121-4d54f782b19d", "name": "PDF-to-Image API", "type": "n8n-nodes-base.httpRequest", "position": [340, 880], "parameters": {"url": "https://stirlingpdf.io/api/v1/convert/pdf/img", "method": "POST", "options": {}, "sendBody": true, "contentType": "multipart-form-data", "bodyParameters": {"parameters": [{"name": "fileInput", "parameterType": "formBinaryData", "inputDataFieldName": "data"}, {"name": "imageFormat", "value": "jpg"}, {"name": "singleOrMultiple", "value": "single"}, {"name": "dpi", "value": "300"}]}}, "typeVersion": 4.2}, {"id": "847de537-ad8f-47f5-a1c1-d207c3fc15ef", "name": "Resize Converted Image", "type": "n8n-nodes-base.editImage", "position": [530, 880], "parameters": {"width": 75, "height": 75, "options": {}, "operation": "resize", "resizeOption": "percent"}, "typeVersion": 1}, {"id": "5fb6ac7e-b910-4dce-bba7-19b638fd817a", "name": "Google Gemini Chat Model", "type": "@n8n/n8n-nodes-langchain.lmChatGoogleGemini", "position": [1000, 980], "parameters": {"options": {}, "modelName": "models/gemini-1.5-pro-latest"}, "credentials": {"googlePalmApi": {"id": "dSxo6ns5wn658r8N", "name": "Google Gemini(PaLM) Api account"}}, "typeVersion": 1}, {"id": "2580b583-544a-47ee-b248-9cca528c9866", "name": "Candidate Resume Analyser", "type": "@n8n/n8n-nodes-langchain.chainLlm", "position": [1000, 820], "parameters": {"text": "=Evaluate the candidate's resume.", "messages": {"messageValues": [{"message": "=Assess the given Candiate Resume for the role of Plumber.\nDetermine if the candidate's skills match the role and if they qualify for an in-person interview."}, {"type": "HumanMessagePromptTemplate", "messageType": "imageBinary"}]}, "promptType": "define", "hasOutputParser": true}, "typeVersion": 1.4}, {"id": "694669c2-9cf5-43ec-8846-c0ecbc5a77ee", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [280, 840], "parameters": {"width": 225.51725256895617, "height": 418.95152406706313, "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n### Data Privacy Warning!\nFor demo purposes, we're using the public online version of Stirling PDF. It is recommended to setup your own private instance of Stirling PDF before using this workflow in production."}, "typeVersion": 1}]
{"Download Resume": {"main": [[{"node": "PDF-to-Image API", "type": "main", "index": 0}]]}, "PDF-to-Image API": {"main": [[{"node": "Resize Converted Image", "type": "main", "index": 0}]]}, "Resize Converted Image": {"main": [[{"node": "Candidate Resume Analyser", "type": "main", "index": 0}]]}, "Google Gemini Chat Model": {"ai_languageModel": [[{"node": "Candidate Resume Analyser", "type": "ai_languageModel", "index": 0}]]}, "Structured Output Parser": {"ai_outputParser": [[{"node": "Candidate Resume Analyser", "type": "ai_outputParser", "index": 0}]]}, "Candidate Resume Analyser": {"main": [[{"node": "Should Proceed To Stage 2?", "type": "main", "index": 0}]]}, "When clicking \u2018Test workflow\u2019": {"main": [[{"node": "Download Resume", "type": "main", "index": 0}]]}}
Complete Youtube
[{"id": "fd74706b-609b-4723-b4a4-067e1b064194", "name": "AI Agent", "type": "@n8n/n8n-nodes-langchain.agent", "position": [300, 60], "parameters": {"options": {"systemMessage": "=You help youtube creators find trending videos based on a specific niche.\n\nVerify if the user informed a niche before doing anything. If not, then ask him for one by giving him suggestions for him to select from.\n\nAfter you know what type of content the user might produce, use the \"youtube_search\" tool up to 3 times with different search terms based on the user's content type and niche.\n\nThe tool will answer with a list of videos from the last 2 days that had the most amount of relevancy. It returns a list of json's covering each video's id, view count, like count, comment count, description, channel title, tags and channel id. Each video is separated by \"### NEXT VIDEO FOUND: ###\".\n\nYou should then proceed to understand the data received then provide the user with insightful data of what could be trending from the past 2 days. Provide the user links to the trending videos which should be in this structure:\n\nhttps://www.youtube.com/watch?v={video_id}\n\nto reach the channel's link you should use:\n\nhttps://www.youtube.com/channel/{channel_id}\n\nFind patterns in the tags, titles and especially in the related content for the videos found.\n\nYour mission isn't to find the trending videos. It's to provide the user with valuable information of what is trending in that niche in terms of content news. Remember to provide the user with the numbers of views, likes and comments while commenting about any video. So you should not talk about any particular video, focus rather in explaining the overall senario of all that was found.\n\nExample of response:\n\n\"It seems like what is trending in digital marketing right now is talking about mental triggers, since 3 of the most trending videos in the last 2 days were about...\""}}, "typeVersion": 1.6}, {"id": "ced4b937-b590-4727-b1f2-a5e88b96091a", "name": "chat_message_received", "type": "@n8n/n8n-nodes-langchain.chatTrigger", "position": [80, 60], "webhookId": "ff9622a4-a6ec-4396-b9de-c95bd834c23c", "parameters": {"options": {}}, "typeVersion": 1.1}, {"id": "35a91359-5007-407d-a750-d6642e595690", "name": "youtube_search", "type": "@n8n/n8n-nodes-langchain.toolWorkflow", "position": [540, 180], "parameters": {"name": "youtube_search", "workflowId": {"__rl": true, "mode": "list", "value": "N9DveO781xbNf8qs", "cachedResultName": "Youtube Search Workflow"}, "description": "Call this tool to search for trending videos based on a query.", "jsonSchemaExample": "{\n\t\"search_term\": \"some_value\"\n}", "specifyInputSchema": true}, "typeVersion": 1.2}, {"id": "42f41096-531d-4587-833a-6f659ef78dd0", "name": "openai_llm", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [260, 180], "parameters": {"options": {}}, "typeVersion": 1}, {"id": "e4bda5b9-abd4-4cd6-8c95-126a01aa6e21", "name": "window_buffer_memory", "type": "@n8n/n8n-nodes-langchain.memoryBufferWindow", "position": [400, 180], "parameters": {}, "typeVersion": 1.2}, {"id": "f6d86c5a-393a-4bcf-bdaf-3b06c79fa51d", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [0, 0], "parameters": {"color": 7, "width": 693.2572054941234, "height": 354.53098948245656, "content": "Main Workflow"}, "typeVersion": 1}, {"id": "4ddbc3f0-e3d7-4ce4-a732-d731c05024d2", "name": "find_video_data1", "type": "n8n-nodes-base.httpRequest", "position": [700, 720], "parameters": {"url": "https://www.googleapis.com/youtube/v3/videos?", "options": {}, "sendQuery": true, "queryParameters": {"parameters": [{"name": "key", "value": "={{ $env[\"GOOGLE_API_KEY\"] }}"}, {"name": "id", "value": "={{ $json.id.videoId }}"}, {"name": "part", "value": "contentDetails, snippet, statistics"}]}}, "typeVersion": 4.2}, {"id": "fdb28635-801d-4ce0-8919-11446c6a7a82", "name": "get_videos1", "type": "n8n-nodes-base.youTube", "position": [280, 560], "parameters": {"limit": 3, "filters": {"q": "={{ $json.query.search_term }}", "regionCode": "US", "publishedAfter": "={{ new Date(Date.now() - 2 * 24 * 60 * 60 * 1000).toISOString() }}"}, "options": {"order": "relevance", "safeSearch": "moderate"}, "resource": "video"}, "credentials": {"youTubeOAuth2Api": {"id": "dCyrga3t1tlgQQy0", "name": "YouTube account"}}, "typeVersion": 1}, {"id": "60e9e61d-0e5e-4212-8b55-71299aeec4d5", "name": "response1", "type": "n8n-nodes-base.set", "position": [1100, 500], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "b9b9117b-ea14-482e-a13b-e68b8e6b441d", "name": "response", "type": "string", "value": "={{ $input.all() }}"}]}}, "typeVersion": 3.4}, {"id": "254a6740-8b25-4898-9795-4c3f0009471f", "name": "group_data1", "type": "n8n-nodes-base.set", "position": [1160, 700], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "47c172ad-90c8-4cf6-a9f5-50607e04cc90", "name": "id", "type": "string", "value": "={{ $json.items[0].id }}"}, {"id": "9e639efa-0714-4b06-9847-f7b4b2fbef59", "name": "viewCount", "type": "string", "value": "={{ $json.items[0].statistics.viewCount }}"}, {"id": "93328f00-91b8-425b-ad0f-a330b2f95242", "name": "likeCount", "type": "string", "value": "={{ $json.items[0].statistics.likeCount }}"}, {"id": "015b0fb2-2a98-464c-a21b-51100616f26a", "name": "commentCount", "type": "string", "value": "={{ $json.items[0].statistics.commentCount }}"}, {"id": "cf1e1ec3-a138-42b8-8747-d249afa58dd3", "name": "description", "type": "string", "value": "={{ $json.items[0].snippet.description }}"}, {"id": "c5c9a3a2-b820-4932-a38a-e21102992215", "name": "title", "type": "string", "value": "={{ $json.items[0].snippet.title }}"}, {"id": "38216ead-1f8d-4f93-b6ad-5ef709a1ad2a", "name": "channelTitle", "type": "string", "value": "={{ $json.items[0].snippet.channelTitle }}"}, {"id": "ff34194d-3d46-43a8-9127-84708987f536", "name": "tags", "type": "string", "value": "={{ $json.items[0].snippet.tags.join(', ') }}"}, {"id": "e50b0f7b-3e37-4557-8863-d68d4fa505c8", "name": "channelId", "type": "string", "value": "={{ $json.items[0].snippet.channelId }}"}]}}, "typeVersion": 3.4}, {"id": "124c19a9-cbbd-4010-be37-50523c05f64b", "name": "save_data_to_memory1", "type": "n8n-nodes-base.code", "position": [1360, 700], "parameters": {"mode": "runOnceForEachItem", "jsCode": "const workflowStaticData = $getWorkflowStaticData('global');\n\nif (typeof workflowStaticData.lastExecution !== 'object') {\n workflowStaticData.lastExecution = {\n response: \"\"\n };\n}\n\nfunction removeEmojis(text) {\n return text.replace(/[\\u{1F600}-\\u{1F64F}|\\u{1F300}-\\u{1F5FF}|\\u{1F680}-\\u{1F6FF}|\\u{2600}-\\u{26FF}|\\u{2700}-\\u{27BF}]/gu, '');\n}\n\nfunction cleanDescription(description) {\n return description\n .replace(/https?:\\/\\/\\S+/g, '')\n .replace(/www\\.\\S+/g, '')\n .replace(/ +/g, ' ')\n .trim();\n}\n\nconst currentItem = { ...$input.item };\n\nif (currentItem.description) {\n currentItem.description = cleanDescription(currentItem.description);\n}\n\nlet sanitizedItem = JSON.stringify(currentItem)\n .replace(/\\\\r/g, ' ')\n .replace(/https?:\\/\\/\\S+/g, '')\n .replace(/www\\.\\S+/g, '')\n .replace(/\\\\n/g, ' ')\n .replace(/\\n/g, ' ')\n .replace(/\\\\/g, '')\n .replace(/ +/g, ' ')\n .trim();\n\nif (workflowStaticData.lastExecution.response) {\n workflowStaticData.lastExecution.response += ' ### NEXT VIDEO FOUND: ### ';\n}\n\nworkflowStaticData.lastExecution.response += removeEmojis(sanitizedItem);\n\nreturn workflowStaticData.lastExecution;\n"}, "typeVersion": 2}, {"id": "67f92ec4-71c0-49df-a0ea-11d2e3cf0f94", "name": "retrieve_data_from_memory1", "type": "n8n-nodes-base.code", "position": [780, 500], "parameters": {"jsCode": "const workflowStaticData = $getWorkflowStaticData('global');\n\nconst lastExecution = workflowStaticData.lastExecution;\n\nreturn lastExecution;"}, "typeVersion": 2}, {"id": "685820ba-b089-4cdc-984d-52f134754b5c", "name": "loop_over_items1", "type": "n8n-nodes-base.splitInBatches", "position": [500, 560], "parameters": {"options": {}}, "typeVersion": 3}, {"id": "3d4d5a4b-d06b-41db-bb78-a64a266d5308", "name": "if_longer_than_3_", "type": "n8n-nodes-base.if", "position": [880, 720], "parameters": {"options": {}, "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "08ba3db9-6bcf-47f8-a74d-9e26f28cb08f", "operator": {"type": "boolean", "operation": "true", "singleValue": true}, "leftValue": "={{ \n (() => {\n const duration = $json.items[0].contentDetails.duration;\n\n // Helper function to convert ISO 8601 duration to seconds\n const iso8601ToSeconds = iso8601 => {\n const match = iso8601.match(/PT(?:(\\d+)H)?(?:(\\d+)M)?(?:(\\d+)S)?/);\n const hours = parseInt(match[1] || 0, 10);\n const minutes = parseInt(match[2] || 0, 10);\n const seconds = parseInt(match[3] || 0, 10);\n return hours * 3600 + minutes * 60 + seconds;\n };\n\n // Convert duration to seconds\n const durationInSeconds = iso8601ToSeconds(duration);\n\n // Check if greater than 210 seconds (3 minutes 30 seconds)\n return durationInSeconds > 210;\n })() \n}}", "rightValue": ""}]}}, "typeVersion": 2.2}, {"id": "7c6b8b82-fd6c-4f44-bccf-88c5a76f0319", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [0, 420], "parameters": {"color": 5, "width": 1607, "height": 520, "content": "This part should be abstracted to another workflow and called inside the \"youtube_search\" tool of the main AI Agent."}, "typeVersion": 1}]
{"openai_llm": {"ai_languageModel": [[{"node": "AI Agent", "type": "ai_languageModel", "index": 0}]]}, "get_videos1": {"main": [[{"node": "loop_over_items1", "type": "main", "index": 0}]]}, "group_data1": {"main": [[{"node": "save_data_to_memory1", "type": "main", "index": 0}]]}, "youtube_search": {"ai_tool": [[{"node": "AI Agent", "type": "ai_tool", "index": 0}]]}, "find_video_data1": {"main": [[{"node": "if_longer_than_3_", "type": "main", "index": 0}]]}, "loop_over_items1": {"main": [[{"node": "retrieve_data_from_memory1", "type": "main", "index": 0}], [{"node": "find_video_data1", "type": "main", "index": 0}]]}, "if_longer_than_3_": {"main": [[{"node": "group_data1", "type": "main", "index": 0}], [{"node": "loop_over_items1", "type": "main", "index": 0}]]}, "save_data_to_memory1": {"main": [[{"node": "loop_over_items1", "type": "main", "index": 0}]]}, "window_buffer_memory": {"ai_memory": [[{"node": "AI Agent", "type": "ai_memory", "index": 0}]]}, "chat_message_received": {"main": [[{"node": "AI Agent", "type": "main", "index": 0}]]}, "retrieve_data_from_memory1": {"main": [[{"node": "response1", "type": "main", "index": 0}]]}}
Slack:File:upload getAll get:Star:add getAll delete:Channgel:create update setPurpose setTopic ge t invite leave join getAll history replies member archive unarchive
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "a26bf258-8876-4142-9a6c-37ac7426e7c9"}, {"parameters": {"resource": "channel", "operation": "setPurpose", "channelId": "={{$node[\"Slack2\"].json[\"id\"]}}", "purpose": "Testing"}, "name": "Slack3", "type": "n8n-nodes-base.slack", "typeVersion": 1, "position": [730, 230], "credentials": {"slackApi": {"id": "18", "name": "Slack Token"}}, "id": "bd33c223-d19f-43ed-a4f8-6eb524340051"}, {"parameters": {"resource": "channel", "operation": "setTopic", "channelId": "={{$node[\"Slack2\"].json[\"id\"]}}", "topic": "QA"}, "name": "Slack4", "type": "n8n-nodes-base.slack", "typeVersion": 1, "position": [870, 230], "credentials": {"slackApi": {"id": "18", "name": "Slack Token"}}, "id": "e956c837-0f3e-4075-a246-ce5a5f16ef17"}, {"parameters": {"resource": "channel", "operation": "get", "channelId": "={{$node[\"Slack2\"].json[\"id\"]}}", "additionalFields": {}}, "name": "Slack5", "type": "n8n-nodes-base.slack", "typeVersion": 1, "position": [1020, 230], "credentials": {"slackApi": {"id": "18", "name": "Slack Token"}}, "id": "66010c67-ac41-4390-a85a-6e3b9de26a98"}, {"parameters": {"resource": "channel", "operation": "getAll", "limit": 1, "filters": {}}, "name": "Slack6", "type": "n8n-nodes-base.slack", "typeVersion": 1, "position": [1650, 230], "credentials": {"slackApi": {"id": "18", "name": "Slack Token"}}, "id": "ead0ce56-689b-43b0-b527-ecd4f869963c"}, {"parameters": {"resource": "channel", "operation": "history", "channelId": "={{$node[\"Slack2\"].json[\"id\"]}}", "limit": 1, "filters": {}}, "name": "Slack7", "type": "n8n-nodes-base.slack", "typeVersion": 1, "position": [1820, 230], "credentials": {"slackApi": {"id": "18", "name": "Slack Token"}}, "id": "d1dc4c44-619b-42e5-af3f-106fff4a99b5"}, {"parameters": {"resource": "channel", "operation": "rename", "channelId": "={{$node[\"Slack2\"].json[\"id\"]}}", "name": "=renamed{{$node[\"Slack2\"].json[\"name\"]}}"}, "name": "Slack9", "type": "n8n-nodes-base.slack", "typeVersion": 1, "position": [580, 230], "credentials": {"slackApi": {"id": "18", "name": "Slack Token"}}, "id": "c63a975b-66ec-4f6a-85c4-712dd8f322d7"}, {"parameters": {"resource": "file", "operation": "getAll", "limit": 1, "filters": {}}, "name": "Slack11", "type": "n8n-nodes-base.slack", "typeVersion": 1, "position": [590, 390], "credentials": {"slackApi": {"id": "18", "name": "Slack Token"}}, "id": "4d54c4d7-285e-4e61-853f-b25cc38160dd"}, {"parameters": {"resource": "file", "operation": "get", "fileId": "={{$node[\"Slack10\"].json[\"id\"]}}"}, "name": "Slack12", "type": "n8n-nodes-base.slack", "typeVersion": 1, "position": [740, 390], "alwaysOutputData": true, "credentials": {"slackApi": {"id": "18", "name": "Slack Token"}}, "id": "1cc8f403-d7a4-42a4-8e78-a2443c2aed32"}, {"parameters": {"resource": "channel", "operation": "member", "channelId": "={{$node[\"Slack2\"].json[\"id\"]}}", "limit": 1}, "name": "Slack8", "type": "n8n-nodes-base.slack", "typeVersion": 1, "position": [2120, 230], "credentials": {"slackApi": {"id": "18", "name": "Slack Token"}}, "id": "88583aee-b74b-4316-a8c2-2a9ee278275a"}, {"parameters": {"resource": "channel", "channelId": "=testchannel{{Math.random().toString(36).replace(/[^a-z]+/g, '')}}", "additionalFields": {"isPrivate": false}}, "name": "Slack2", "type": "n8n-nodes-base.slack", "typeVersion": 1, "position": [440, 230], "credentials": {"slackApi": {"id": "18", "name": "Slack Token"}}, "id": "bfc23883-4190-46c7-8b9e-8afb0b4c3435"}, {"parameters": {"resource": "file", "fileContent": "=Test file upload {{(new Date().toString())}}", "options": {"channelIds": ["C01N780JVPG"]}}, "name": "Slack10", "type": "n8n-nodes-base.slack", "typeVersion": 1, "position": [440, 390], "credentials": {"slackApi": {"id": "18", "name": "Slack Token"}}, "id": "3526fb45-6eca-495d-8535-d77cbf2b78fd"}, {"parameters": {"resource": "star", "operation": "delete", "options": {"channelId": "C01MZ82T9TR"}}, "name": "Slack23", "type": "n8n-nodes-base.slack", "typeVersion": 1, "position": [840, 560], "alwaysOutputData": true, "credentials": {"slackApi": {"id": "18", "name": "Slack Token"}}, "id": "e4cfa506-e1b9-439f-8070-8c0cc7ba191d"}, {"parameters": {"resource": "star", "operation": "getAll", "limit": 1}, "name": "Slack22", "type": "n8n-nodes-base.slack", "typeVersion": 1, "position": [690, 560], "alwaysOutputData": true, "credentials": {"slackApi": {"id": "18", "name": "Slack Token"}}, "id": "c79469c2-5987-442d-a08a-7b942f8c3fde"}, {"parameters": {"resource": "star", "options": {"channelId": "=C01MZ82T9TR"}}, "name": "Slack21", "type": "n8n-nodes-base.slack", "typeVersion": 1, "position": [550, 560], "alwaysOutputData": true, "credentials": {"slackApi": {"id": "18", "name": "Slack Token"}}, "id": "eb6f3c3e-d6cb-42f4-aa6d-462bde196f28"}, {"parameters": {"resource": "channel", "operation": "archive", "channelId": "={{$node[\"Slack2\"].json[\"id\"]}}"}, "name": "Slack", "type": "n8n-nodes-base.slack", "typeVersion": 1, "position": [2250, 230], "credentials": {"slackApi": {"id": "18", "name": "Slack Token"}}, "id": "cb863325-bb94-4669-a174-913a2d504fd9"}, {"parameters": {"resource": "channel", "operation": "invite", "channelId": "={{$node[\"Slack2\"].json[\"id\"]}}", "userIds": ["U01N08LEY9M"]}, "name": "Slack13", "type": "n8n-nodes-base.slack", "typeVersion": 1, "position": [1160, 230], "credentials": {"slackApi": {"id": "18", "name": "Slack Token"}}, "id": "d4c01071-c77a-4605-8382-e0596de883ee"}, {"parameters": {"resource": "channel", "operation": "join", "channelId": "={{$node[\"Slack2\"].json[\"id\"]}}"}, "name": "Slack16", "type": "n8n-nodes-base.slack", "typeVersion": 1, "position": [1500, 230], "credentials": {"slackApi": {"id": "18", "name": "Slack Token"}}, "id": "b757d3d8-0d72-4efe-bcc0-ba360e423775"}, {"parameters": {"resource": "channel", "operation": "replies", "channelId": "={{$node[\"Slack2\"].json[\"id\"]}}", "ts": "={{$node[\"Slack7\"].json[\"ts\"]}}", "filters": {}}, "name": "Slack18", "type": "n8n-nodes-base.slack", "typeVersion": 1, "position": [1960, 230], "credentials": {"slackApi": {"id": "18", "name": "Slack Token"}}, "id": "c8c86ba2-599e-4546-a006-1509456726b7"}, {"parameters": {"resource": "channel", "operation": "leave", "channelId": "={{$node[\"Slack2\"].json[\"id\"]}}"}, "name": "Slack17", "type": "n8n-nodes-base.slack", "typeVersion": 1, "position": [1330, 230], "credentials": {"slackApi": {"id": "18", "name": "Slack Token"}}, "id": "8d90aae7-bcc9-427d-86e4-4c18df0e6c35"}, {"parameters": {"resource": "channel", "operation": "archive", "channelId": "={{$node[\"Slack2\"].json[\"id\"]}}"}, "name": "Slack1", "type": "n8n-nodes-base.slack", "typeVersion": 1, "position": [2540, 230], "credentials": {"slackApi": {"id": "18", "name": "Slack Token"}}, "id": "0a23fea3-c8dd-41a4-afef-1701d959d8f1"}, {"parameters": {"resource": "channel", "operation": "unarchive", "channelId": "={{$node[\"Slack2\"].json[\"id\"]}}"}, "name": "Slack14", "type": "n8n-nodes-base.slack", "typeVersion": 1, "position": [2400, 230], "credentials": {"slackApi": {"id": "18", "name": "Slack Token"}}, "id": "2f208a4c-9c68-43d6-8dfd-eb1297a79b0d"}, {"parameters": {"resource": "star", "operation": "delete", "options": {"channelId": "C01MZ82T9TR"}}, "name": "Slack24", "type": "n8n-nodes-base.slack", "typeVersion": 1, "position": [400, 560], "alwaysOutputData": true, "credentials": {"slackApi": {"id": "18", "name": "Slack Token"}}, "continueOnFail": true, "notes": "IGNORED_PROPERTIES=ok,error", "id": "3d3fd370-7c82-4623-9258-e4d7e5a1e381"}]
{"Slack3": {"main": [[{"node": "Slack4", "type": "main", "index": 0}]]}, "Slack4": {"main": [[{"node": "Slack5", "type": "main", "index": 0}]]}, "Slack5": {"main": [[{"node": "Slack13", "type": "main", "index": 0}]]}, "Slack6": {"main": [[{"node": "Slack7", "type": "main", "index": 0}]]}, "Slack7": {"main": [[{"node": "Slack18", "type": "main", "index": 0}]]}, "Slack9": {"main": [[{"node": "Slack3", "type": "main", "index": 0}]]}, "Slack11": {"main": [[{"node": "Slack12", "type": "main", "index": 0}]]}, "Slack2": {"main": [[{"node": "Slack9", "type": "main", "index": 0}]]}, "Slack10": {"main": [[{"node": "Slack11", "type": "main", "index": 0}]]}, "Slack22": {"main": [[{"node": "Slack23", "type": "main", "index": 0}]]}, "Slack21": {"main": [[{"node": "Slack22", "type": "main", "index": 0}]]}, "Start": {"main": [[{"node": "Slack10", "type": "main", "index": 0}, {"node": "Slack2", "type": "main", "index": 0}, {"node": "Slack24", "type": "main", "index": 0}]]}, "Slack8": {"main": [[{"node": "Slack", "type": "main", "index": 0}]]}, "Slack13": {"main": [[{"node": "Slack17", "type": "main", "index": 0}]]}, "Slack16": {"main": [[{"node": "Slack6", "type": "main", "index": 0}]]}, "Slack18": {"main": [[{"node": "Slack8", "type": "main", "index": 0}]]}, "Slack17": {"main": [[{"node": "Slack16", "type": "main", "index": 0}]]}, "Slack": {"main": [[{"node": "Slack14", "type": "main", "index": 0}]]}, "Slack14": {"main": [[{"node": "Slack1", "type": "main", "index": 0}]]}, "Slack24": {"main": [[{"node": "Slack21", "type": "main", "index": 0}]]}}
CrateDB:insert update executeQuery
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "e0aab098-04f4-42ce-b128-c1707e6ab085"}, {"parameters": {"table": "testtable", "columns": "id,name"}, "name": "CrateDB", "type": "n8n-nodes-base.crateDb", "typeVersion": 1, "position": [650, 300], "credentials": {"crateDb": {"id": "86", "name": "CrateDB creds"}}, "id": "51925b66-eddd-4a2c-bd53-3c93d8c4d3d9"}, {"parameters": {"values": {"string": [{"name": "name", "value": "=Name{{Date.now()}}"}], "number": [{"name": "id", "value": "={{Math.round(Math.random()*100000)}}"}]}, "options": {}}, "name": "Set", "type": "n8n-nodes-base.set", "typeVersion": 1, "position": [450, 300], "id": "ca7b9956-a037-4efa-9bfa-769067d489b8"}, {"parameters": {"operation": "update", "table": "testtable", "columns": "id,name"}, "name": "CrateDB1", "type": "n8n-nodes-base.crateDb", "typeVersion": 1, "position": [1050, 300], "credentials": {"crateDb": {"id": "86", "name": "CrateDB creds"}}, "id": "7f727eb3-00c1-464d-aa3b-503138386420"}, {"parameters": {"values": {"string": [{"name": "name", "value": "=UpdatedName{{Date.now()}}"}], "number": [{"name": "id", "value": "={{$node[\"Set\"].json[\"id\"]}}"}]}, "options": {}}, "name": "Set1", "type": "n8n-nodes-base.set", "typeVersion": 1, "position": [850, 300], "id": "d8d1fb13-1756-4cff-b6f6-adbe388851f6"}, {"parameters": {"operation": "executeQuery", "query": "=DELETE FROM \"doc\".\"testtable\" WHERE id={{$node[\"Set1\"].json[\"id\"]}};"}, "name": "CrateDB2", "type": "n8n-nodes-base.crateDb", "typeVersion": 1, "position": [1250, 300], "credentials": {"crateDb": {"id": "86", "name": "CrateDB creds"}}, "id": "41bbb36e-d1b4-419a-a587-4fb9a0a4d349"}]
{"CrateDB": {"main": [[{"node": "Set1", "type": "main", "index": 0}]]}, "Start": {"main": [[{"node": "Set", "type": "main", "index": 0}]]}, "Set": {"main": [[{"node": "CrateDB", "type": "main", "index": 0}]]}, "Set1": {"main": [[{"node": "CrateDB1", "type": "main", "index": 0}]]}, "CrateDB1": {"main": [[{"node": "CrateDB2", "type": "main", "index": 0}]]}}
GoogleCalendar:Event:create getAll get update delete:Calendar:availability
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "6aeb5434-f098-403c-8a10-3b49b0ce5b28"}, {"parameters": {"resource": "calendar", "calendar": "node8qa@gmail.com", "timeMin": "2021-02-17T23:00:00.000Z", "timeMax": "2021-02-18T23:00:00.000Z", "options": {"outputFormat": "availability"}}, "name": "Google Calendar", "type": "n8n-nodes-base.googleCalendar", "typeVersion": 1, "position": [500, 210], "credentials": {"googleCalendarOAuth2Api": {"id": "23", "name": "Google calendar 0auth creds"}}, "id": "1cd92151-378b-42a0-ab14-fb21b6efc5e5"}, {"parameters": {"calendar": "node8qa@gmail.com", "start": "2021-02-18T15:50:50.000Z", "end": "2021-02-19T15:50:50.000Z", "additionalFields": {"description": "Test"}}, "name": "Google Calendar1", "type": "n8n-nodes-base.googleCalendar", "typeVersion": 1, "position": [490, 390], "credentials": {"googleCalendarOAuth2Api": {"id": "23", "name": "Google calendar 0auth creds"}}, "id": "89509d2f-ceac-4046-ac47-a0c5d5aada34"}, {"parameters": {"operation": "get", "calendar": "node8qa@gmail.com", "eventId": "={{$node[\"Google Calendar1\"].json[\"id\"]}}", "options": {}}, "name": "Google Calendar2", "type": "n8n-nodes-base.googleCalendar", "typeVersion": 1, "position": [820, 390], "alwaysOutputData": true, "credentials": {"googleCalendarOAuth2Api": {"id": "23", "name": "Google calendar 0auth creds"}}, "id": "48aa1cb4-9649-46f9-9368-fec67709b825"}, {"parameters": {"operation": "getAll", "calendar": "node8qa@gmail.com", "limit": 1, "options": {"showDeleted": true}}, "name": "Google Calendar3", "type": "n8n-nodes-base.googleCalendar", "typeVersion": 1, "position": [650, 390], "credentials": {"googleCalendarOAuth2Api": {"id": "23", "name": "Google calendar 0auth creds"}}, "id": "99926665-5d81-4452-96d8-f025a3539ae6"}, {"parameters": {"operation": "update", "calendar": "node8qa@gmail.com", "eventId": "={{$node[\"Google Calendar1\"].json[\"id\"]}}", "updateFields": {"color": "7"}}, "name": "Google Calendar4", "type": "n8n-nodes-base.googleCalendar", "typeVersion": 1, "position": [980, 390], "credentials": {"googleCalendarOAuth2Api": {"id": "23", "name": "Google calendar 0auth creds"}}, "id": "a673096e-b394-4a98-ba01-e0cdfabde6bd"}, {"parameters": {"operation": "delete", "calendar": "node8qa@gmail.com", "eventId": "={{$node[\"Google Calendar1\"].json[\"id\"]}}", "options": {}}, "name": "Google Calendar5", "type": "n8n-nodes-base.googleCalendar", "typeVersion": 1, "position": [1130, 390], "credentials": {"googleCalendarOAuth2Api": {"id": "23", "name": "Google calendar 0auth creds"}}, "id": "dd64b74a-ab43-4bed-a19c-59817cc6e4ab"}]
{"Google Calendar1": {"main": [[{"node": "Google Calendar3", "type": "main", "index": 0}]]}, "Google Calendar3": {"main": [[{"node": "Google Calendar2", "type": "main", "index": 0}]]}, "Google Calendar2": {"main": [[{"node": "Google Calendar4", "type": "main", "index": 0}]]}, "Google Calendar4": {"main": [[{"node": "Google Calendar5", "type": "main", "index": 0}]]}, "Start": {"main": [[{"node": "Google Calendar1", "type": "main", "index": 0}, {"node": "Google Calendar", "type": "main", "index": 0}]]}}
AI-Powered Children_s English Storytelling on Telegram with OpenAI
[{"id": "757a7e67-073a-4fa1-b571-2ddd147b35f6", "name": "OpenAI Chat Model", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [1000, 1240], "parameters": {"model": "gpt-3.5-turbo-16k-0613", "options": {}}, "credentials": {"openAiApi": {"id": "kDo5LhPmHS2WQE0b", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "761ed83a-2cfb-474a-b596-922e5a7e2717", "name": "Schedule Trigger", "type": "n8n-nodes-base.scheduleTrigger", "position": [660, 1060], "parameters": {"rule": {"interval": [{"field": "hours", "hoursInterval": 12}]}}, "typeVersion": 1.1}, {"id": "41faf334-30d6-4cc0-9a94-9c486ec3fa6c", "name": "OpenAI Chat Model2", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [1520, 1420], "parameters": {"options": {}}, "credentials": {"openAiApi": {"id": "kDo5LhPmHS2WQE0b", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "d9ad0a3a-2ce6-4071-8262-8176b3eecf36", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [1780, 220], "parameters": {"width": 1004.4263690337257, "height": 811.7188223885136, "content": "### Setting Up a Workflow for \"AI-Powered Children's English Storytelling on Telegram\"\n\nIn this guide, we will walk you through the process of setting up a workflow to create and share captivating children's stories using the provided configuration. Let's dive into the steps required to bring these imaginative tales to life on your Telegram channel:\n\n#### Steps to Setup the Workflow:\n1. **Import the Workflow:**\n - Copy the provided workflow JSON configuration.\n - In your n8n instance, go to Workflows and select \"Import from JSON.\"\n - Paste the configuration and import the workflow.\n\n2. **Configure Node Credentials:**\n - For nodes requiring API credentials (OpenAI and Telegram), create credentials with the appropriate API keys or tokens.\n\n3. **Set Node Parameters:**\n - Modify node parameters as needed, such as chat IDs, prompts, and intervals.\n - Change the chatId in Config node to the ID of the chat you want the story to be posted.\n\n4. **Ensure Data Flow:**\n - Check the connections between nodes to ensure a smooth flow of data and actions.\n\n5. **Execute Once:**\n - Activate the \"executeOnce\" option in nodes where necessary to trigger actions only once during setup.\n\n6. **Test the Workflow:**\n - Run the workflow to verify that each node functions correctly and data is processed as expected.\n\n7. **Enable Recurring Triggers:**\n - Confirm that the Schedule Trigger node is set to trigger the workflow at the desired interval (every 12 hours).\n\n8. **Initiate Workflow:**\n - Once everything is configured correctly, activate the workflow to start generating and sharing children's stories on Telegram.\n\nBy following these steps meticulously, you can seamlessly establish and operate the workflow designed to create captivating children's stories for your audience. Embrace the power of automation to inspire young minds and foster a love for storytelling through engaging narratives shared on Telegram.\n"}, "typeVersion": 1}, {"id": "b550e4ff-167d-4b12-8dff-0511a435cd7c", "name": "Create a Prompt for DALL-E", "type": "@n8n/n8n-nodes-langchain.chainSummarization", "position": [1500, 1280], "parameters": {"options": {"summarizationMethodAndPrompts": {"values": {"prompt": "Summarize the characters in this story based on their appearance and describe them if they are humans or animals and how they look like and what kind of are they, the prompt should be no-text in the picture, make sure the text is free from any prohibited or inappropriate content:\n\n\n\n\"{text}\"\n\n\nCONCISE SUMMARY:", "summarizationMethod": "stuff"}}}}, "typeVersion": 2}, {"id": "024a3615-9e90-4e47-81e3-21febfc2f0c9", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [380, 240], "parameters": {"width": 611.6882702103559, "height": 651.7145525871413, "content": "### Use Case for Setting Up a Workflow for Children's Stories\n\nCheck this example: [https://t.me/st0ries95](https://t.me/st0ries95)\n\n\nThe workflow for children's stories serves as a valuable tool for content creators, educators, and parents looking to engage children with imaginative and educational storytelling. Here are some key use cases for this workflow:\n\n1. **Content Creation:** The workflow streamlines the process of creating captivating children's stories by providing a structured framework and automation for story generation, audio creation, and image production.\n\n2. **Educational Resources:** Teachers can use this workflow to develop educational materials that incorporate storytelling to make learning more engaging and interactive for students.\n\n3. **Parental Engagement:** Parents can utilize the workflow to share personalized stories with their children, fostering a love for reading and creativity while bonding over shared storytelling experiences.\n\n4. **Community Building:** Organizations and community groups can leverage the workflow to create and share children's stories as a way to connect with their audience and promote literacy and creativity.\n\n5. **Inspiring Young Minds:** By automating the process of creating and sharing enchanting children's stories, this workflow aims to inspire young minds, spark imagination, and instill a passion for storytelling in children.\n\nOverall, the use case for this workflow extends to various settings where storytelling plays a significant role in engaging, educating, and entertaining children, making it a versatile tool for enhancing the storytelling experience.\n"}, "typeVersion": 1}, {"id": "11bfff09-33c6-48ab-b9e6-2e5349a87ca5", "name": "Recursive Character Text Splitter", "type": "@n8n/n8n-nodes-langchain.textSplitterRecursiveCharacterTextSplitter", "position": [1160, 1260], "parameters": {"options": {}, "chunkSize": 500, "chunkOverlap": 300}, "typeVersion": 1}, {"id": "9da21054-961e-4b7a-973e-1c180571ce92", "name": "Create a story", "type": "@n8n/n8n-nodes-langchain.chainSummarization", "position": [1080, 1060], "parameters": {"options": {"summarizationMethodAndPrompts": {"values": {"prompt": "Create a captivating short tale for kids, whisking them away to magical lands brimming with wisdom. Explore diverse themes in a fun and simple way, weaving in valuable messages. Dive into cultural adventures with lively language that sparks curiosity. Let your story inspire young minds through enchanting narratives that linger long after the last word. Begin crafting your imaginative tale now! (Approximately 900 characters)\n\n\n\"{text}\"\n\nCONCISE SUMMARY:", "summarizationMethod": "stuff"}}}, "chunkingMode": "advanced"}, "executeOnce": true, "typeVersion": 2}, {"id": "35579446-e11c-416b-b34a-b31e8461a1b3", "name": "Generate Audio for the story", "type": "@n8n/n8n-nodes-langchain.openAi", "position": [1520, 1060], "parameters": {"input": "={{ $json.response.text }}", "options": {}, "resource": "audio"}, "credentials": {"openAiApi": {"id": "kDo5LhPmHS2WQE0b", "name": "OpenAi account"}}, "executeOnce": true, "typeVersion": 1.3}, {"id": "453d149f-a2a7-4fc9-ba3b-85b42df1c29b", "name": "Generate a Picture for the story", "type": "@n8n/n8n-nodes-langchain.openAi", "position": [1840, 1280], "parameters": {"prompt": "=Produce an image ensuring that no text is generated within the visual content. {{ $json.response.text }}", "options": {}, "resource": "image"}, "credentials": {"openAiApi": {"id": "kDo5LhPmHS2WQE0b", "name": "OpenAi account"}}, "typeVersion": 1.3}, {"id": "8f324f12-b21e-4d0c-b7fa-5e2f93ba08aa", "name": "Send Story Text", "type": "n8n-nodes-base.telegram", "position": [1520, 840], "parameters": {"text": "={{ $json.response.text }}", "chatId": "={{ $('Config').item.json.chatId }}", "additionalFields": {"appendAttribution": false}}, "credentials": {"telegramApi": {"id": "k3RE6o9brmFRFE9p", "name": "Telegram account"}}, "typeVersion": 1.1}, {"id": "51a08f75-1c34-48a0-86de-b47e435ef618", "name": "Send Audio for the story", "type": "n8n-nodes-base.telegram", "position": [1720, 1060], "parameters": {"chatId": "={{ $('Config').item.json.chatId }}", "operation": "sendAudio", "binaryData": true, "additionalFields": {"caption": "End of the Story for today ....."}}, "credentials": {"telegramApi": {"id": "k3RE6o9brmFRFE9p", "name": "Telegram account"}}, "typeVersion": 1.1}, {"id": "3f890a4d-26ea-452a-8ed5-917282e8b0d8", "name": "Send Story Picture", "type": "n8n-nodes-base.telegram", "position": [2020, 1280], "parameters": {"chatId": "={{ $('Config').item.json.chatId }}", "operation": "sendPhoto", "binaryData": true, "additionalFields": {}}, "credentials": {"telegramApi": {"id": "k3RE6o9brmFRFE9p", "name": "Telegram account"}}, "typeVersion": 1.1}, {"id": "1cbec52c-b545-45df-885f-57c287f81017", "name": "Config", "type": "n8n-nodes-base.set", "position": [880, 1060], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "327667cb-b5b0-4f6f-915c-544696ed8e5a", "name": "chatId", "type": "string", "value": "-4170994782"}]}}, "typeVersion": 3.3}]
{"Config": {"main": [[{"node": "Create a story", "type": "main", "index": 0}]]}, "Create a story": {"main": [[{"node": "Generate Audio for the story", "type": "main", "index": 0}, {"node": "Create a Prompt for DALL-E", "type": "main", "index": 0}, {"node": "Send Story Text", "type": "main", "index": 0}]]}, "Schedule Trigger": {"main": [[{"node": "Config", "type": "main", "index": 0}]]}, "OpenAI Chat Model": {"ai_languageModel": [[{"node": "Create a story", "type": "ai_languageModel", "index": 0}]]}, "OpenAI Chat Model2": {"ai_languageModel": [[{"node": "Create a Prompt for DALL-E", "type": "ai_languageModel", "index": 0}]]}, "Create a Prompt for DALL-E": {"main": [[{"node": "Generate a Picture for the story", "type": "main", "index": 0}]]}, "Generate Audio for the story": {"main": [[{"node": "Send Audio for the story", "type": "main", "index": 0}]]}, "Generate a Picture for the story": {"main": [[{"node": "Send Story Picture", "type": "main", "index": 0}]]}, "Recursive Character Text Splitter": {"ai_textSplitter": [[{"node": "Create a story", "type": "ai_textSplitter", "index": 0}]]}}
CredentialOnlyNodes
[{"parameters": {}, "id": "d4c2fa93-d956-4b90-86ab-e8d7e1f89057", "name": "When clicking \"Execute Workflow\"", "type": "n8n-nodes-base.manualTrigger", "typeVersion": 1, "position": [1360, 720]}, {"parameters": {"curlImport": "", "httpVariantWarning": "", "method": "GET", "url": "https://www.virustotal.com/api/v3/popular_threat_categories", "": "", "authentication": "predefinedCredentialType", "nodeCredentialType": "virusTotalApi", "sendQuery": false, "sendHeaders": false, "sendBody": false, "options": {}, "infoMessage": ""}, "id": "11ba670f-87d9-4d4a-ae47-da3fe5bb7715", "name": "VirusTotal HTTP Request", "type": "n8n-nodes-base.httpRequest", "typeVersion": 4.1, "position": [1580, 720], "extendsCredential": "virusTotalApi", "credentials": {"virusTotalApi": {"id": "q80wx3kiggmjWdY9", "name": "VirusTotal account"}}}]
{"When clicking \"Execute Workflow\"": {"main": [[{"node": "VirusTotal HTTP Request", "type": "main", "index": 0}]]}}
OpenWeatherMap:: current-weather 5-day-forecast
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "3af2c46a-cc25-4094-8889-0539e80bbbfb"}, {"parameters": {"cityName": "berlin", "language": "en"}, "name": "OpenWeatherMap", "type": "n8n-nodes-base.openWeatherMap", "typeVersion": 1, "position": [490, 300], "credentials": {"openWeatherMapApi": {"id": "9", "name": "openweathermap token"}}, "notes": "IGNORED_PROPERTIES=rain", "id": "e12fb37d-8207-4219-a3df-20cbd5b9a4d8"}, {"parameters": {"operation": "5DayForecast", "cityName": "berlin", "language": "en"}, "name": "OpenWeatherMap1", "type": "n8n-nodes-base.openWeatherMap", "typeVersion": 1, "position": [690, 300], "credentials": {"openWeatherMapApi": {"id": "9", "name": "openweathermap token"}}, "id": "4923e536-3bc8-4659-b3bc-c15b7cf7352f"}]
{"OpenWeatherMap": {"main": [[{"node": "OpenWeatherMap1", "type": "main", "index": 0}]]}, "Start": {"main": [[{"node": "OpenWeatherMap", "type": "main", "index": 0}]]}}
Automate Blog Creation in Brand Voice with AI
[{"id": "d3159589-dbb7-4cca-91f5-09e8b2e4cba8", "name": "When clicking \u2018Test workflow\u2019", "type": "n8n-nodes-base.manualTrigger", "position": [240, 500], "parameters": {}, "typeVersion": 1}, {"id": "b4b42b3f-ef30-4fc8-829d-59f8974c4168", "name": "OpenAI Chat Model", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [2180, 700], "parameters": {"options": {}}, "credentials": {"openAiApi": {"id": "8gccIjcuf3gvaoEr", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "032c3012-ed8d-44eb-94f0-35790f4b616f", "name": "OpenAI Chat Model1", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [2980, 460], "parameters": {"options": {}}, "credentials": {"openAiApi": {"id": "8gccIjcuf3gvaoEr", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "bf922785-7e8f-4f93-bfff-813c16d93278", "name": "OpenAI Chat Model2", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [2020, 520], "parameters": {"options": {}}, "credentials": {"openAiApi": {"id": "8gccIjcuf3gvaoEr", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "d8d4b26f-270f-4b39-a4cd-a6e4361da591", "name": "Extract Voice Characteristics", "type": "@n8n/n8n-nodes-langchain.informationExtractor", "position": [2160, 540], "parameters": {"text": "=### Analyse the given content\n\n{{ $json.data.map(item => item.replace(/\\n/g, '')).join('\\n---\\n') }}", "options": {"systemPromptTemplate": "You help identify and define a company or individual's \"brand voice\". Using the given content belonging to the company or individual, extract all voice characteristics from it along with description and examples demonstrating it."}, "schemaType": "manual", "inputSchema": "{\n\t\"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \t\"properties\": {\n \"characteristic\": { \"type\": \"string\" },\n \"description\": { \"type\": \"string\" },\n \"examples\": { \"type\": \"array\", \"items\": { \"type\": \"string\" } }\n }\n\t}\n}"}, "typeVersion": 1}, {"id": "8cca272c-b912-40f1-ba08-aa7c5ff7599c", "name": "Get Blog", "type": "n8n-nodes-base.httpRequest", "position": [480, 500], "parameters": {"url": "https://blog.n8n.io", "options": {}}, "typeVersion": 4.2}, {"id": "aa1e2a02-2e2b-4e8d-aef8-f5f7a54d9562", "name": "Get Article", "type": "n8n-nodes-base.httpRequest", "position": [1120, 500], "parameters": {"url": "=https://blog.n8n.io{{ $json.article }}", "options": {}}, "typeVersion": 4.2}, {"id": "78ae3dfc-5afd-452f-a2b6-bdb9dbd728bd", "name": "Extract Article URLs", "type": "n8n-nodes-base.html", "position": [640, 500], "parameters": {"options": {}, "operation": "extractHtmlContent", "extractionValues": {"values": [{"key": "article", "attribute": "href", "cssSelector": ".item.post a.global-link", "returnArray": true, "returnValue": "attribute"}]}}, "typeVersion": 1.2}, {"id": "3b2b6fea-ed2f-43ba-b6d1-e0666b88c65b", "name": "Split Out URLs", "type": "n8n-nodes-base.splitOut", "position": [800, 500], "parameters": {"options": {}, "fieldToSplitOut": "article"}, "typeVersion": 1}, {"id": "68bb20b1-2177-4c0f-9ada-d1de69bdc2a0", "name": "Latest Articles", "type": "n8n-nodes-base.limit", "position": [960, 500], "parameters": {"maxItems": 5}, "typeVersion": 1}, {"id": "f20d7393-24c9-4a51-872e-0dce391f661c", "name": "Extract Article Content", "type": "n8n-nodes-base.html", "position": [1280, 500], "parameters": {"options": {}, "operation": "extractHtmlContent", "extractionValues": {"values": [{"key": "data", "cssSelector": ".post-section", "returnValue": "html"}]}}, "typeVersion": 1.2}, {"id": "299a04be-fe9b-47d9-b2c6-e2e4628f77e0", "name": "Combine Articles", "type": "n8n-nodes-base.aggregate", "position": [1780, 540], "parameters": {"options": {"mergeLists": true}, "fieldsToAggregate": {"fieldToAggregate": [{"fieldToAggregate": "data"}]}}, "typeVersion": 1}, {"id": "8480ece7-0dc1-4682-ba9e-ded2c138d8b8", "name": "Article Style & Brand Voice", "type": "n8n-nodes-base.merge", "position": [2560, 320], "parameters": {"mode": "combine", "options": {}, "combineBy": "combineByPosition"}, "typeVersion": 3}, {"id": "024efee2-5a2f-455c-a150-4b9bdce650b2", "name": "Save as Draft", "type": "n8n-nodes-base.wordpress", "position": [3460, 320], "parameters": {"title": "={{ $json.output.title }}", "additionalFields": {"slug": "={{ $json.output.title.toSnakeCase() }}", "format": "standard", "status": "draft", "content": "={{ $json.output.body }}"}}, "credentials": {"wordpressApi": {"id": "YMW8mGrekjfxKJUe", "name": "Wordpress account"}}, "typeVersion": 1}, {"id": "71f4ab1e-ef61-48f3-92e8-70691f7d0750", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [480, 180], "parameters": {"color": 7, "width": 606, "height": 264, "content": "## 1. Import Existing Content\n[Read more about the HTML node](https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.html/)\n\nFirst, we'll need to gather existing content for the brand voice we want to replicate. This content can be blogs, social media posts or internal documents - the idea is to use this content to \"train\" our AI to produce content from the provided examples. One call out is that the quality and consistency of the content is important to get the desired results.\n\nIn this demonstration, we'll grab the latest blog posts off a corporate blog to use as an example. Since, the blog articles are likely consistent because of the source and narrower focus of the medium, it'll serve well to showcase this workflow."}, "typeVersion": 1}, {"id": "3d3a55a5-4b4a-4ea2-a39c-82b366fb81e6", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [1440, 240], "parameters": {"color": 7, "width": 434, "height": 230, "content": "## 2. Convert HTML to Markdown\n[Learn more about the Markdown node](https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.markdown)\n\nMarkdown is a great way to optimise the article data we're sending to the LLM because it reduces the amount of tokens required but keeps all relevant writing structure information.\n\nAlso useful to get Markdown output as a response because typically it's the format authors will write in."}, "typeVersion": 1}, {"id": "08c0b683-ec06-47ce-871c-66265195ca29", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [1980, 80], "parameters": {"color": 7, "width": 446, "height": 233, "content": "## 3. Using AI to Analyse Article Structure and Writing Styles\n[Read more about the Basic LLM Chain node](https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainllm)\n\nOur approach is to first perform a high-level analysis of all available articles in order to replicate their content layout and writing styles. This will act as a guideline to help the AI to structure our future articles."}, "typeVersion": 1}, {"id": "515fe69f-061e-4dfc-94ed-4cf2fbe10b7b", "name": "Capture Existing Article Structure", "type": "@n8n/n8n-nodes-langchain.chainLlm", "position": [2020, 380], "parameters": {"text": "={{ $json.data.join('\\n---\\n') }}", "messages": {"messageValues": [{"message": "=Given the following one or more articles (which are separated by ---), describe how best one could replicate the common structure, layout, language and writing styles of all as aggregate."}]}, "promptType": "define"}, "typeVersion": 1.4}, {"id": "ba4e68fb-eccc-4efa-84be-c42a695dccdb", "name": "Markdown", "type": "n8n-nodes-base.markdown", "position": [1600, 540], "parameters": {"html": "={{ $json.data }}", "options": {}}, "typeVersion": 1}, {"id": "d459ff5b-0375-4458-a49f-59700bb57e12", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [2340, 740], "parameters": {"color": 7, "width": 446, "height": 253, "content": "## 4. Using AI to Extract Voice Characteristics and Traits\n[Read more about the Information Extractor node](https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.information-extractor/)\n\nSecond, we'll use AI to analysis the brand voice characteristics of the previous articles. This picks out the tone, style and choice of language used and identifies them into categories. These categories will be used as guidelines for the AI to keep the future article consistent in tone and voice. "}, "typeVersion": 1}, {"id": "71fe32a9-1b8a-446c-a4ff-fb98c6a68e1b", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [2720, 0], "parameters": {"color": 7, "width": 626, "height": 633, "content": "## 5. Automate On-Brand Articles Using AI\n[Read more about the Information Extractor node](https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.information-extractor)\n\nFinally with this approach, we can feed both content and voice guidelines into our final LLM - our content generation agent - to produce any number of on-brand articles, social media posts etc.\n\nWhen it comes to assessing the output, note the AI does a pretty good job at simulating format and reusing common phrases and wording for the target article. However, this could become repetitive very quickly! Whilst AI can help speed up the process, a human touch may still be required to add a some variety."}, "typeVersion": 1}, {"id": "4e6fbe4e-869e-4bef-99ba-7b18740caecf", "name": "Content Generation Agent", "type": "@n8n/n8n-nodes-langchain.informationExtractor", "position": [3000, 320], "parameters": {"text": "={{ $json.instruction }}", "options": {"systemPromptTemplate": "=You are a blog content writer who writes using the following article guidelines. Write a content piece as requested by the user. Output the body as Markdown. Do not include the date of the article because the publishing date is not determined yet.\n\n## Brand Article Style\n{{ $('Article Style & Brand Voice').item.json.text }}\n\n##n Brand Voice Characteristics\n\nHere are the brand voice characteristic and examples you must adopt in your piece. Pick only the characteristic which make sense for the user's request. Try to keep it as similar as possible but don't copy word for word.\n\n|characteristic|description|examples|\n|-|-|-|\n{{\n$('Article Style & Brand Voice').item.json.output.map(item => (\n`|${item.characteristic}|${item.description}|${item.examples.map(ex => `\"${ex}\"`).join(', ')}|`\n)).join('\\n')\n}}"}, "attributes": {"attributes": [{"name": "title", "required": true, "description": "title of article"}, {"name": "summary", "required": true, "description": "summary of article"}, {"name": "body", "required": true, "description": "body of article"}, {"name": "characteristics", "required": true, "description": "comma delimited string of characteristics chosen"}]}}, "typeVersion": 1}, {"id": "022de44c-c06c-41ac-bd50-38173dae9b37", "name": "Sticky Note6", "type": "n8n-nodes-base.stickyNote", "position": [3460, 480], "parameters": {"color": 7, "width": 406, "height": 173, "content": "## 6. Save Draft to Wordpress\n[Learn more about the Wordpress node](https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.wordpress/)\n\nTo close out the template, we'll simple save our generated article as a draft which could allow human team members to review and validate the article before publishing."}, "typeVersion": 1}, {"id": "fe54c40e-6ddd-45d6-a938-f467e4af3f57", "name": "Sticky Note5", "type": "n8n-nodes-base.stickyNote", "position": [2900, 660], "parameters": {"color": 5, "width": 440, "height": 120, "content": "### Q. Do I need to analyse Brand Voice for every article?\nA. No! I would recommend storing the results of the AI's analysis and re-use for a list of planned articles rather than generate anew every time."}, "typeVersion": 1}, {"id": "1832131e-21e8-44fc-9370-907f7b5a6eda", "name": "Sticky Note7", "type": "n8n-nodes-base.stickyNote", "position": [1000, 680], "parameters": {"color": 5, "width": 380, "height": 120, "content": "### Q. Can I use other media than blog articles?\nA. Yes! This approach can use other source materials such as PDFs, as long as they can be produces in a text format to give to the LLM."}, "typeVersion": 1}, {"id": "8e8706a3-122d-436b-9206-de7a6b2f3c39", "name": "Sticky Note8", "type": "n8n-nodes-base.stickyNote", "position": [-220, -120], "parameters": {"width": 400, "height": 800, "content": "## Try It Out!\n### This n8n template demonstrates how to use AI to generate new on-brand written content by analysing previously published content.\n\nWith such an approach, it's possible to generate a steady stream of blog article drafts quickly with high consistency with your brand and existing content.\n\n### How it works\n* In this demonstration, the n8n.io blog is used as the source of existing published content and 5 of the latest articles are imported via the HTTP node.\n* The HTML node is extract the article bodies which are then converted to markdown for our LLMs.\n* We use LLM nodes to (1) understand the article structure and writing style and (2) identify the brand voice characteristics used in the posts.\n* These are then used as guidelines in our final LLM node when generating new articles.\n* Finally, a draft is saved to Wordpress for human editors to review or use as starting point for their own articles.\n\n### How to use\n* Update Step 1 to fetch data from your desired blog or change to fetch existing content in a different way.\n* Update Step 5 to provide your new article instruction. For optimal output, theme topics relevant to your brand.\n\n\n### Need Help?\nJoin the [Discord](https://discord.com/invite/XPKeKXeB7d) or ask in the [Forum](https://community.n8n.io/)!\n\nHappy Hacking!"}, "typeVersion": 1}, {"id": "1510782d-0f88-40ca-99a8-44f984022c8e", "name": "New Article Instruction", "type": "n8n-nodes-base.set", "position": [2820, 320], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "2c7e2a28-30f9-4533-a394-a5e967ebf4ec", "name": "instruction", "type": "string", "value": "=Write a comprehensive guide on using AI for document classification and document extraction. Explain the benefits of using vision models over traditional OCR. Close out with a recommendation of using n8n as the preferred way to get started with this AI use-case."}]}}, "typeVersion": 3.4}]
{"Get Blog": {"main": [[{"node": "Extract Article URLs", "type": "main", "index": 0}]]}, "Markdown": {"main": [[{"node": "Combine Articles", "type": "main", "index": 0}]]}, "Get Article": {"main": [[{"node": "Extract Article Content", "type": "main", "index": 0}]]}, "Split Out URLs": {"main": [[{"node": "Latest Articles", "type": "main", "index": 0}]]}, "Latest Articles": {"main": [[{"node": "Get Article", "type": "main", "index": 0}]]}, "Combine Articles": {"main": [[{"node": "Capture Existing Article Structure", "type": "main", "index": 0}, {"node": "Extract Voice Characteristics", "type": "main", "index": 0}]]}, "OpenAI Chat Model": {"ai_languageModel": [[{"node": "Extract Voice Characteristics", "type": "ai_languageModel", "index": 0}]]}, "OpenAI Chat Model1": {"ai_languageModel": [[{"node": "Content Generation Agent", "type": "ai_languageModel", "index": 0}]]}, "OpenAI Chat Model2": {"ai_languageModel": [[{"node": "Capture Existing Article Structure", "type": "ai_languageModel", "index": 0}]]}, "Extract Article URLs": {"main": [[{"node": "Split Out URLs", "type": "main", "index": 0}]]}, "Extract Article Content": {"main": [[{"node": "Markdown", "type": "main", "index": 0}]]}, "New Article Instruction": {"main": [[{"node": "Content Generation Agent", "type": "main", "index": 0}]]}, "Content Generation Agent": {"main": [[{"node": "Save as Draft", "type": "main", "index": 0}]]}, "Article Style & Brand Voice": {"main": [[{"node": "New Article Instruction", "type": "main", "index": 0}]]}, "Extract Voice Characteristics": {"main": [[{"node": "Article Style & Brand Voice", "type": "main", "index": 1}]]}, "When clicking \u2018Test workflow\u2019": {"main": [[{"node": "Get Blog", "type": "main", "index": 0}]]}, "Capture Existing Article Structure": {"main": [[{"node": "Article Style & Brand Voice", "type": "main", "index": 0}]]}}
Create a Branded AI-Powered Website Chatbot
[{"id": "22c8d63b-ce3c-4aab-b3f6-4bae8c1b9ec5", "name": "Window Buffer Memory", "type": "@n8n/n8n-nodes-langchain.memoryBufferWindow", "position": [1460, 880], "parameters": {"sessionKey": "={{ $json.sessionId }}", "sessionIdType": "customKey", "contextWindowLength": 20}, "typeVersion": 1.2}, {"id": "45403d5c-6e85-424f-b40b-c6214b57457b", "name": "Respond to Webhook", "type": "n8n-nodes-base.respondToWebhook", "position": [1880, 580], "parameters": {"options": {}}, "typeVersion": 1.1}, {"id": "1111262a-1743-4bae-abf1-f69d2e1a580c", "name": "OpenAI Chat Model", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [1360, 760], "parameters": {"model": "gpt-4o-2024-08-06", "options": {"temperature": 0.4}}, "credentials": {"openAiApi": {"id": "XWFTuTtx9oWglhNn", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "df891547-c715-4dc6-bfcc-c0ac5cfcaf02", "name": "Make Appointment", "type": "@n8n/n8n-nodes-langchain.toolHttpRequest", "position": [1820, 840], "parameters": {"url": "https://graph.microsoft.com/v1.0/me/events", "method": "POST", "jsonBody": "{\n \"subject\": \"Meetings with <name> at <company>\",\n \"start\": {\n \"dateTime\": \"{dateStartTime}\",\n \"timeZone\": \"Europe/London\"\n },\n \"end\": {\n \"dateTime\": \"{dateEndTime}\",\n \"timeZone\": \"Europe/London\"\n },\n \"body\": {\n \"contentType\": \"HTML\",\n \"content\": \"{reason}\"\n },\n \"attendees\": [\n {\n \"emailAddress\": {\n \"address\": \"{email}\",\n \"name\": \"{name}\"\n },\n \"type\": \"required\"\n }\n ],\n \"location\": {\n \"displayName\": \"Online Meeting\"\n },\n \"isOnlineMeeting\": true,\n \"onlineMeetingProvider\": \"teamsForBusiness\",\n \"showAs\": \"busy\",\n \"categories\": [\n \"Meeting\"\n ]\n}", "sendBody": true, "sendQuery": true, "specifyBody": "json", "authentication": "predefinedCredentialType", "parametersQuery": {"values": [{"name": "Content-Type", "value": "application/json", "valueProvider": "fieldValue"}]}, "toolDescription": "Call this tool to make the appointment, ensure you send the user email, name, company, reason for the meeting and the appointment start time and the date in ISO String format with timezone for <timezone>. When creating an appointment, always send JSON.", "nodeCredentialType": "microsoftOutlookOAuth2Api", "placeholderDefinitions": {"values": [{"name": "dateStartTime", "type": "string", "description": "The date and start time of the appointment in toISOString format with timezone for Europe/London"}, {"name": "dateEndTime", "type": "string", "description": "The date and end time of the appointment in toISOString format, always 30 minutes after the dateStartTime, format with timezone for Europe/London"}, {"name": "reason", "type": "string", "description": "Detailed description of the meeting, will be sent to us and the customer"}, {"name": "email", "type": "string", "description": "The customers email address."}, {"name": "name", "type": "string", "description": "The customers full name, must be second and last name"}]}}, "credentials": {"microsoftOutlookOAuth2Api": {"id": "E0WY3yUNKgrxIwLU", "name": "Microsoft Outlook Business"}}, "typeVersion": 1.1}, {"id": "44141c44-de49-4707-b287-24007c84ca21", "name": "Execute Workflow Trigger", "type": "n8n-nodes-base.executeWorkflowTrigger", "position": [2160, 580], "parameters": {}, "typeVersion": 1}, {"id": "795e1451-57d8-4563-8b86-5a75df2427b6", "name": "varResponse", "type": "n8n-nodes-base.set", "position": [3120, 460], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "c0b6e779-0f7b-41f0-81f8-457f2b31ccfe", "name": "response", "type": "array", "value": "={{ $json.freeTimeSlots.toJsonString() }}"}]}}, "typeVersion": 3.4}, {"id": "4283635f-649c-4cc7-84b9-37524ddb6ce0", "name": "freeTimeSlots", "type": "n8n-nodes-base.code", "position": [2900, 460], "parameters": {"jsCode": "// Input: An array with objects containing a 'value' array of events.\nconst businessHoursStart = \"08:00:00Z\"; // Business hours start time\nconst businessHoursEnd = \"17:30:00Z\"; // Business hours end time\n\nconst inputData = items[0].json.value; // Assuming the input data is in the 'value' array of the first item\n\n// Function to convert ISO datetime string to a Date object with specified time\nfunction getDateWithTime(dateString, time) {\n const datePart = new Date(dateString).toISOString().split(\"T\")[0]; // Extract the date part (YYYY-MM-DD)\n return new Date(`${datePart}T${time}`);\n}\n\n// Function to get day of the week from a date string\nfunction getDayOfWeek(dateString) {\n const daysOfWeek = [\"Sunday\", \"Monday\", \"Tuesday\", \"Wednesday\", \"Thursday\", \"Friday\", \"Saturday\"];\n return daysOfWeek[new Date(dateString).getUTCDay()];\n}\n\n// Organise events by date\nconst eventsByDate = {};\ninputData.forEach(event => {\n const eventDate = new Date(event.start.dateTime).toISOString().split(\"T\")[0]; // Extract the date\n if (!eventsByDate[eventDate]) {\n eventsByDate[eventDate] = [];\n }\n if (event.showAs === \"busy\") {\n eventsByDate[eventDate].push({\n start: new Date(event.start.dateTime),\n end: new Date(event.end.dateTime),\n timeZone: event.start.timeZone // Add timeZone to the event object\n });\n }\n});\n\n// Find free slots within business hours for each date\nconst freeTimeSlots = [];\n\nfor (const [date, busyEvents] of Object.entries(eventsByDate)) {\n // Sort events by their start time\n busyEvents.sort((a, b) => a.start - b.start);\n\n // Define business start and end times for the current date\n const businessStart = getDateWithTime(date, businessHoursStart);\n const businessEnd = getDateWithTime(date, businessHoursEnd);\n\n let freeStart = businessStart;\n\n // Loop through busy events to find free slots\n for (const event of busyEvents) {\n if (freeStart < event.start) {\n // Add free slot if there's a gap between freeStart and the event start\n freeTimeSlots.push({\n date,\n dayOfWeek: getDayOfWeek(date), // Add day of the week key\n freeStart: freeStart.toISOString(),\n freeEnd: event.start.toISOString(),\n timeZone: event.timeZone // Add the timezone for the free slot\n });\n }\n // Move freeStart to the end of the current busy event\n freeStart = event.end;\n }\n\n // Check if there's free time after the last busy event until the end of business hours\n if (freeStart < businessEnd) {\n freeTimeSlots.push({\n date,\n dayOfWeek: getDayOfWeek(date), // Add day of the week key\n freeStart: freeStart.toISOString(),\n freeEnd: businessEnd.toISOString(),\n timeZone: busyEvents[0].timeZone // Use the timezone of the first event for consistency\n });\n }\n}\n\n// Output the free time slots\nreturn [{ json: { freeTimeSlots } }];\n"}, "typeVersion": 2}, {"id": "0786b561-449e-4c8f-bddb-c2bbd95dc197", "name": "Get Events", "type": "n8n-nodes-base.httpRequest", "position": [2680, 460], "parameters": {"url": "=https://graph.microsoft.com/v1.0/me/calendarView", "options": {}, "sendQuery": true, "sendHeaders": true, "authentication": "predefinedCredentialType", "queryParameters": {"parameters": [{"name": "startDateTime", "value": "={{ new Date(new Date().setDate(new Date().getDate() + 2)).toISOString() }}"}, {"name": "endDateTime", "value": "={{ new Date(new Date().setDate(new Date().getDate() + 16)).toISOString() }}"}, {"name": "$top", "value": "50"}, {"name": "select", "value": "start,end,categories,importance,isAllDay,recurrence,showAs,subject,type"}, {"name": "orderby", "value": "start/dateTime asc"}]}, "headerParameters": {"parameters": [{"name": "Prefer", "value": "outlook.timezone=\"Europe/London\""}]}, "nodeCredentialType": "microsoftOutlookOAuth2Api"}, "credentials": {"microsoftOutlookOAuth2Api": {"id": "E0WY3yUNKgrxIwLU", "name": "Microsoft Outlook Business"}}, "typeVersion": 4.2}, {"id": "55c4233e-d395-4193-9a1d-1884faed6f1e", "name": "Get Availability", "type": "@n8n/n8n-nodes-langchain.toolWorkflow", "position": [1760, 1080], "parameters": {"name": "Get_availability", "fields": {"values": [{"name": "route", "stringValue": "availability"}]}, "workflowId": {"__rl": true, "mode": "list", "value": "KD21RG8VeXYDS2Vf", "cachedResultName": "Website Chatbot"}, "description": "Call this tool to check my calendar for availability before booking an appointment. This will result in all events for the next 2 weeks. Review all events and do not double book."}, "typeVersion": 1.2}, {"id": "096d1962-31e6-4b3b-ba75-7956f70a6a32", "name": "Send Message", "type": "@n8n/n8n-nodes-langchain.toolWorkflow", "position": [1620, 1080], "parameters": {"name": "Send_email", "fields": {"values": [{"name": "route", "stringValue": "message"}]}, "workflowId": {"__rl": true, "mode": "list", "value": "KD21RG8VeXYDS2Vf", "cachedResultName": "Website Chatbot"}, "description": "Call this tool when the customer wants to speak to a human, or is not ready to make an appointment or if the customer has questions outside of your remit. The tool will send an email to our founder, <insert name>. Always send the customer's full name, company and email address along with a detailed message about the enquiry. You must always gather project details.", "jsonSchemaExample": "{\n\t\"email\": \"the customer's email\",\n \"subject\": \"the subject of the email\",\n \"message\": \"The customer's enquiry, must be a detailed description of their enquiry\",\n \"name\": \"the customer's full name\",\n \"company\": \"the customer company name\"\n}", "specifyInputSchema": true}, "typeVersion": 1.2}, {"id": "285ddd31-5412-4d1c-ab80-d9960ec902bb", "name": "Chat Trigger", "type": "@n8n/n8n-nodes-langchain.chatTrigger", "position": [620, 600], "webhookId": "f406671e-c954-4691-b39a-66c90aa2f103", "parameters": {"mode": "webhook", "public": true, "options": {"responseMode": "responseNode", "allowedOrigins": "*"}}, "typeVersion": 1}, {"id": "032a26e9-6853-490d-991b-b2af2d845f58", "name": "Switch", "type": "n8n-nodes-base.switch", "position": [2380, 580], "parameters": {"rules": {"values": [{"outputKey": "availability", "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"operator": {"type": "string", "operation": "equals"}, "leftValue": "={{ $json.route }}", "rightValue": "availability"}]}, "renameOutput": true}, {"outputKey": "message", "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "52fd844b-cc8d-471f-a56a-40e119b66194", "operator": {"name": "filter.operator.equals", "type": "string", "operation": "equals"}, "leftValue": "={{ $json.route }}", "rightValue": "message"}]}, "renameOutput": true}]}, "options": {}}, "typeVersion": 3.2}, {"id": "c74905ce-4fd9-486c-abc4-b0b1d57d71a8", "name": "varMessageResponse", "type": "n8n-nodes-base.set", "position": [2900, 700], "parameters": {"options": {"ignoreConversionErrors": false}, "assignments": {"assignments": [{"id": "0d2ad084-9707-4979-84e4-297d1c21f725", "name": "response", "type": "string", "value": "={{ $json }}"}]}}, "typeVersion": 3.4}, {"id": "04c5d43c-1629-4e11-a6bb-ae73369d7002", "name": "Send Message1", "type": "n8n-nodes-base.microsoftOutlook", "position": [2680, 700], "parameters": {"subject": "={{ $('Execute Workflow Trigger').item.json.query.subject }}", "bodyContent": "=<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n <title>New Webchat Customer Enquiry</title>\n <style type=\"text/css\">\n /* Client-specific styles */\n body, table, td, a { -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }\n table, td { mso-table-lspace: 0pt; mso-table-rspace: 0pt; }\n img { -ms-interpolation-mode: bicubic; }\n\n /* Reset styles */\n body { margin: 0; padding: 0; }\n img { border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none; }\n table { border-collapse: collapse !important; }\n body { height: 100% !important; margin: 0; padding: 0; width: 100% !important; }\n\n /* iOS BLUE LINKS */\n a[x-apple-data-detectors] {\n color: inherit !important;\n text-decoration: none !important;\n font-size: inherit !important;\n font-family: inherit !important;\n font-weight: inherit !important;\n line-height: inherit !important;\n }\n\n /* Styles for Outlook and other email clients */\n .ExternalClass { width: 100%; }\n .ExternalClass, .ExternalClass p, .ExternalClass span, .ExternalClass font, .ExternalClass td, .ExternalClass div { line-height: 100%; }\n \n /* Responsive styles */\n @media screen and (max-width: 600px) {\n .container { width: 100% !important; }\n .content { padding: 15px !important; }\n .field { padding: 10px !important; }\n .header h1 { font-size: 20px !important; }\n .header p { font-size: 12px !important; }\n }\n </style>\n</head>\n<body style=\"margin: 0; padding: 0; background-color: #f4f4f4;\">\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tr>\n <td>\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" style=\"border-collapse: collapse; background-color: #ffffff;\">\n <tr>\n <td align=\"center\" bgcolor=\"#1a1a1a\" style=\"padding: 30px 0; background: linear-gradient(135deg, #1a1a1a 0%, #2d1f3d 100%);\">\n <h1 style=\"color: #ffffff; font-family: Arial, sans-serif; font-size: 24px; font-weight: 700; margin: 0; text-transform: uppercase; letter-spacing: 1px;\">New Customer Enquiry</h1>\n <p style=\"color: #ffffff; font-family: Arial, sans-serif; font-size: 14px; line-height: 20px; margin: 10px 0 0; opacity: 0.8;\">A potential client has reached out through our webchat</p>\n </td>\n </tr>\n <tr>\n <td style=\"padding: 20px;\">\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tr>\n <td style=\"padding: 15px; background-color: #f9f9f9; border: 1px solid #e0e0e0; border-radius: 8px;\">\n <p style=\"font-family: Arial, sans-serif; font-size: 14px; line-height: 1.6; color: #6a1b9a; font-weight: bold; margin: 0 0 5px 0;\">FROM</p>\n <p style=\"font-family: Arial, sans-serif; font-size: 16px; line-height: 1.6; color: #333333; margin: 0;\">{{ $('Execute Workflow Trigger').item.json.query.name }}</p>\n </td>\n </tr>\n <tr><td height=\"20\"></td></tr>\n <tr>\n <td style=\"padding: 15px; background-color: #f9f9f9; border: 1px solid #e0e0e0; border-radius: 8px;\">\n <p style=\"font-family: Arial, sans-serif; font-size: 14px; line-height: 1.6; color: #6a1b9a; font-weight: bold; margin: 0 0 5px 0;\">EMAIL</p>\n <p style=\"font-family: Arial, sans-serif; font-size: 16px; line-height: 1.6; color: #333333; margin: 0;\">{{ $('Execute Workflow Trigger').item.json.query.email }}</p>\n </td>\n </tr>\n <tr><td height=\"20\"></td></tr>\n <tr>\n <td style=\"padding: 15px; background-color: #f9f9f9; border: 1px solid #e0e0e0; border-radius: 8px;\">\n <p style=\"font-family: Arial, sans-serif; font-size: 14px; line-height: 1.6; color: #6a1b9a; font-weight: bold; margin: 0 0 5px 0;\">COMPANY</p>\n <p style=\"font-family: Arial, sans-serif; font-size: 16px; line-height: 1.6; color: #333333; margin: 0;\">{{ $('Execute Workflow Trigger').item.json.query.company }}</p>\n </td>\n </tr>\n <tr><td height=\"20\"></td></tr>\n <tr>\n <td style=\"padding: 15px; background-color: #f9f9f9; border: 1px solid #e0e0e0; border-radius: 8px;\">\n <p style=\"font-family: Arial, sans-serif; font-size: 14px; line-height: 1.6; color: #6a1b9a; font-weight: bold; margin: 0 0 5px 0;\">MESSAGE</p>\n <p style=\"font-family: Arial, sans-serif; font-size: 16px; line-height: 1.6; color: #333333; margin: 0;\">{{ $('Execute Workflow Trigger').item.json.query.message }}</p>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr>\n <td align=\"center\" bgcolor=\"#e90ebb\" style=\"padding: 20px; background: linear-gradient(135deg, #e90ebb 0%, #6a1b9a 100%);\">\n <p style=\"font-family: Arial, sans-serif; font-size: 14px; line-height: 20px; color: #ffffff; margin: 0;\">This enquiry was automatically generated from our website's chat interface.</p>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n</body>\n</html>", "toRecipients": "you@yourdomain.com", "additionalFields": {"importance": "High", "bodyContentType": "html"}}, "credentials": {"microsoftOutlookOAuth2Api": {"id": "E0WY3yUNKgrxIwLU", "name": "Microsoft Outlook Business"}}, "typeVersion": 2}, {"id": "5a2636f1-47d3-4421-840b-56553bf14d82", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [1580, 1000], "parameters": {"width": 311.6936390497898, "height": 205.34013605442183, "content": "Ensure these referance this workflow, replace placeholders"}, "typeVersion": 1}, {"id": "a9fe05d4-6b86-4313-9f11-b20e3ce7db89", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [2600, 380], "parameters": {"width": 468, "height": 238, "content": "modify business hours\nmodify timezones"}, "typeVersion": 1}, {"id": "5dfda5c9-eeeb-421a-a80d-f42c94602080", "name": "AI Agent", "type": "@n8n/n8n-nodes-langchain.agent", "position": [1460, 580], "parameters": {"text": "={{ $json.chatInput }}", "options": {"systemMessage": "=You are an intelligent personal assistant to Wayne, Founder at nocodecreative.io (ai consultancy and software development agency) responsible for coordinating appointments and gathering relevant information from customers. Your tasks are to:\n\n- Understand when the customer is available by asking for suitable days and times (ensuring they are aware we are in a UK timezone)\n- Check the calendar to identify available slots that match their preferences. Pay attention to each event's start and end time and do not double book, you will be given all events for the next 14 days\n- Ask the customer what they would like to discuss during the appointment to ensure proper preparation.\n- Get the customer's name, company name and email address to book the appointment\n- Make the conversation friendly and natural. Confirm the appointment details with the customer and let them know I\u2019ll be ready to discuss what they\u2019d like.\n- After you have checked the calendar, book the appointment accordingly, without double booking. Confirm the customer's timezone and adjust the appointment for EU/London.\n- If the customer isn't ready to book, you can send an email for a human to respond to, ensure you gather a detailed enquiry from the customer including contact details and project information.Ensure the message contains enough information for a human to respond, always include project details, if the customer hasn't provided project details, ask.\n- Alwways suggest an appointment before sending a message, appointment are you primary goal, message are a fall back\n\nExample questions:\n\n\"Hi there! we'd love to help arrange a time that works for us to meet. Could you let us know which days and times are best for you? We\u2019ll check the calendar and book in a suitable slot.\"\n\n\"Could you please let us know what you\u2019d like to discuss during the appointment? This helps us prepare in advance and make our time together as productive as possible.\"\n\n\"Before we put you in touch with a human, please can you provide more information about the project you have in mind?\" //You must gather project info at all times, even if the enquiry is about pricing/costs.\n\nIf the time the customer suggests is not available, suggest the nearest alternative appointment based on existing events, do not book an appointment outside of freeTimeSlots\n\nImportant information:\n- All appointments need 48 hours' notice from {{ \n new Date().toLocaleString(\"en-GB\", { timeZone: \"Europe/London\", hour12: false })\n .split(\", \")[0].split(\"/\").reverse().join(\"-\") \n + \"T\" + new Date().toLocaleTimeString(\"en-GB\", { timeZone: \"Europe/London\", hour12: false }) + \":00.000Z\" \n}} (current date and time in the UK) // this is non-negotiable, but discuss with care and be friendly, only let the customer know this if required\n- Business hours are 8am - 6pm Monday to Friday only Europe/London timezone, ensure the customer is aware of this and help them book during UK hours, you must confirm their timezone to do this!\n- Do not book appointments on a Saturday or sunday\n- Do not book appointments outside of freeTimeSlots\n- Always check the next 14 days, and review all events before providing availability \n- All appointments are for a max of 30 minutes\n- You must never offer an appointment without checking the calendar, if you cannot check the calendar, you cannot book and must let the customer know you can not book an appointment right now.\n- Always offer the soonest appointment available if the customer's preferred time is unavailable\n- When confirming an appointment, be thankful and excited!\n- Initial 30 minute consultation are free of charge\n\n\nMessages and description:\n- When creating descriptions or sending messages, always ensure enough detail is provided for preparation, meaning you can ask follow-up questions to extract further information as required. For example, if a customer asks about pricing, gather some information about the project so our team can provide accurate pricing, and apply this logic throughout\n\nComments:\n//!IMPORTANT! Do not offer any times without checking the calendar, do not make availability up\n//**Do not discuss anything other than appointment booking, if the query does not relate to an appointment, advise them you cannot help at this time.** be friendly and always offer to book an appointment to discuss their query\n//When the appointment is confirmed, let the customer know, by name, that they will be meeting our founder, Wayne for a 30 minute consultation, and that they will receive a calendar invite by email, ensure they accept the invite to confirm the appointment.\n//Always respond as a highly professional executive PA, remember this is the customer's first engagement, they do not know us or Wayne at this stage\n//Do not refer to yourself as me or I, instead communicate like an organisation, using terms like 'us'\n//Always gather project for descriptions and messages"}, "promptType": "define"}, "typeVersion": 1.6}, {"id": "6156ab7e-d411-46b9-ac44-52ad56ee563d", "name": "If", "type": "n8n-nodes-base.if", "position": [840, 600], "parameters": {"options": {}, "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "158a0b91-534d-4745-b10e-8a7c97050861", "operator": {"type": "string", "operation": "exists", "singleValue": true}, "leftValue": "={{ $json.chatInput }}", "rightValue": ""}]}}, "typeVersion": 2.2}, {"id": "c94171a9-a71d-4f63-bef6-e90361c57abd", "name": "Respond With Initial Message", "type": "n8n-nodes-base.respondToWebhook", "position": [1140, 720], "parameters": {"options": {}, "respondWith": "json", "responseBody": "{\n \"output\": \"Hi, how can I help you today?\"\n}"}, "typeVersion": 1.1}, {"id": "43129771-e976-41af-8adb-88cb5465628d", "name": "Sticky Note8", "type": "n8n-nodes-base.stickyNote", "position": [1340, -240], "parameters": {"color": 6, "width": 668, "height": 111, "content": "# Custom Branded n8n Chatbot\nBuilt by [Wayne Simpson](https://www.linkedin.com/in/simpsonwayne/) at [nocodecreative.io](https://nocodecreative.io)\n\u2615 If you find this useful, feel free to [buy me a coffee](https://ko-fi.com/waynesimpson)"}, "typeVersion": 1}, {"id": "bb890f44-caf0-4b7d-b95e-0c05c70e8f45", "name": "Sticky Note9", "type": "n8n-nodes-base.stickyNote", "position": [1000, -80], "parameters": {"color": 7, "width": 667, "height": 497, "content": "# Watch the Setup Video \ud83d\udcfa\n### Watch Set Up Video \ud83d\udc47\n[![Auto Categorise Outlook Emails with AI](https://cdn.jsdelivr.net/gh/WayneSimpson/n8n-chatbot-template/custom-branded-chatbot.png)](https://youtu.be/xQ1tCQZhLaI)\n\n"}, "typeVersion": 1}, {"id": "f0b054cc-f961-4c48-846c-a80ea5e49924", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [1700, -80], "parameters": {"color": 7, "width": 600, "height": 500, "content": "## Read to blog post to get started \ud83d\udcdd\n**Follow along to add a custom branded chat widget to your webiste**\n\n[![Custom Branded n8n Chatbot](https://cdn.jsdelivr.net/gh/WayneSimpson/n8n-chatbot-template/chat%20widget.png)](https://blog.nocodecreative.io/create-a-branded-ai-powered-website-chatbot-with-n8n/)"}, "typeVersion": 1}, {"id": "210cef85-6fbe-413e-88b6-b0fed76212ac", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [2600, 640], "parameters": {"color": 4, "width": 260, "height": 240, "content": "Customise the email template"}, "typeVersion": 1}, {"id": "17abc6bd-06c3-48e7-8380-e10024daa9f5", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [1760, 740], "parameters": {"color": 6, "width": 208, "height": 238, "content": "modify timezones"}, "typeVersion": 1}]
{"If": {"main": [[{"node": "AI Agent", "type": "main", "index": 0}], [{"node": "Respond With Initial Message", "type": "main", "index": 0}]]}, "Switch": {"main": [[{"node": "Get Events", "type": "main", "index": 0}], [{"node": "Send Message1", "type": "main", "index": 0}]]}, "AI Agent": {"main": [[{"node": "Respond to Webhook", "type": "main", "index": 0}]]}, "Get Events": {"main": [[{"node": "freeTimeSlots", "type": "main", "index": 0}]]}, "Chat Trigger": {"main": [[{"node": "If", "type": "main", "index": 0}]]}, "Send Message": {"ai_tool": [[{"node": "AI Agent", "type": "ai_tool", "index": 0}]]}, "Send Message1": {"main": [[{"node": "varMessageResponse", "type": "main", "index": 0}]]}, "freeTimeSlots": {"main": [[{"node": "varResponse", "type": "main", "index": 0}]]}, "Get Availability": {"ai_tool": [[{"node": "AI Agent", "type": "ai_tool", "index": 0}]]}, "Make Appointment": {"ai_tool": [[{"node": "AI Agent", "type": "ai_tool", "index": 0}]]}, "OpenAI Chat Model": {"ai_languageModel": [[{"node": "AI Agent", "type": "ai_languageModel", "index": 0}]]}, "Window Buffer Memory": {"ai_memory": [[{"node": "AI Agent", "type": "ai_memory", "index": 0}]]}, "Execute Workflow Trigger": {"main": [[{"node": "Switch", "type": "main", "index": 0}]]}}
Notion AI Assistant Generator
[{"id": "9052b5b2-1e2d-425c-92e5-1ed51323e71c", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [380, 240], "parameters": {"color": 7, "width": 616.7964812508943, "height": 231.27721611949534, "content": "# Generate new workflow version for specific notion db schema\nInput a Notion database URL and get an AI Assistant chatbot workflow for it based on this template: https://n8n.io/workflows/2413-notion-knowledge-base-ai-assistant/\n\nProject in notion: https://www.notion.so/n8n/Chat-with-notion-database-84eec91b74dd4e36ba97edda17c2c306"}, "typeVersion": 1}, {"id": "b4a83f76-2bad-4bbe-9b7f-1df684166035", "name": "Notion", "type": "n8n-nodes-base.notion", "onError": "continueErrorOutput", "position": [1280, 480], "parameters": {"simple": false, "resource": "database", "databaseId": {"__rl": true, "mode": "url", "value": "={{ $json.chatInput.match(/https?:\\/\\/[^\\s/$.?#].[^\\s]*/g)[0] }}"}}, "credentials": {"notionApi": {"id": "aDS2eHXMOtsMrQnJ", "name": "Nathan's notion account"}}, "typeVersion": 2.2}, {"id": "39537c95-5ca0-47a9-b2bf-2c0134d3f236", "name": "Return success to chat", "type": "n8n-nodes-base.set", "position": [3540, 740], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "bebcb43c-461d-40d7-af83-436d94733622", "name": "output", "type": "string", "value": "=Created workflow:\n```\n{{ $json.generatedWorkflow }}\n```\n\n\u261d\ufe0f Copy and paste JSON above into an n8n workflow canvas (on v 1.52.0+)"}]}}, "typeVersion": 3.4}, {"id": "5ae0fcfb-c3e2-443d-9a0c-25e7b17dc189", "name": "Auto-fixing Output Parser", "type": "@n8n/n8n-nodes-langchain.outputParserAutofixing", "position": [2340, 640], "parameters": {}, "typeVersion": 1}, {"id": "4cd182ff-040a-4c0f-819f-a0648c67ab66", "name": "Anthropic Chat Model", "type": "@n8n/n8n-nodes-langchain.lmChatAnthropic", "position": [2100, 640], "parameters": {"options": {"temperature": 0.7, "maxTokensToSample": 8192}}, "typeVersion": 1.2}, {"id": "dc751c1f-4cd6-4d04-8152-402eb5e24574", "name": "Set schema for eval", "type": "n8n-nodes-base.set", "position": [2720, 440], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "f82e26dd-f5c5-43b5-b97d-ee63c3ef124e", "name": "searchNotionDBJsonBody", "type": "string", "value": "={{ $json.output.output.workflowJson.parseJson().nodes.find(node => node.name === \"Search notion database\").parameters.jsonBody }}"}, {"id": "a804139b-8bf0-43dc-aa8c-9c0dcb387392", "name": "generatedWorkflow", "type": "string", "value": "={{ $json.output.output.workflowJson }}"}, {"id": "1e24fdfe-c31f-43e3-bca2-7124352fd62e", "name": "inputDatabase", "type": "object", "value": "={{ $('Set input data').first().json.inputDatabase }}"}]}}, "typeVersion": 3.4}, {"id": "8f8c9d29-c901-4c3c-83a6-23bfe51809bd", "name": "Return error to chat", "type": "n8n-nodes-base.set", "position": [1500, 660], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "b561b640-7fcb-4613-8b66-068dbd115b4e", "name": "sessionId", "type": "string", "value": "={{ $('When chat message received').item.json.sessionId }}"}, {"id": "74d91d28-b73a-4341-a037-693468120d2d", "name": "output", "type": "string", "value": "Sorry that doesn't look like a valid notion database url. Try again."}]}}, "typeVersion": 3.4}, {"id": "518d2e58-6f2e-4497-9f74-7dbfeff4fd6f", "name": "Anthropic Chat Model1", "type": "@n8n/n8n-nodes-langchain.lmChatAnthropic", "position": [2300, 800], "parameters": {"options": {"maxTokensToSample": 8192}}, "typeVersion": 1.2}, {"id": "0e7a4d05-db00-4915-9df4-d3cb79bf5789", "name": "standardize schema", "type": "n8n-nodes-base.set", "position": [1500, 440], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "8fc7df86-4a47-43ec-baea-f9ee87a899a8", "name": "inputDatabase.id", "type": "string", "value": "={{ $json.id }}"}, {"id": "fdeb5b1b-0bf3-46d6-a266-7f85e212a427", "name": "inputDatabase.url", "type": "string", "value": "={{ $json.url }}"}, {"id": "b2b06176-b4df-41bd-9422-9c89726fa3fd", "name": "inputDatabase.public_url", "type": "string", "value": "={{ $json.public_url }}"}, {"id": "c7b65a70-8af6-4808-aae9-898df9b10340", "name": "inputDatabase.name", "type": "string", "value": "={{ $json.title[0].text.content }}"}, {"id": "87c1be85-e180-487b-9c82-61c87c7c460b", "name": "inputDatabase.properties", "type": "object", "value": "={{ $json.properties }}"}]}}, "typeVersion": 3.4}, {"id": "8244fb04-75ec-4b41-93cf-e9c5755fabfd", "name": "Simplify properties object", "type": "n8n-nodes-base.code", "position": [1720, 440], "parameters": {"jsCode": "// Loop through each incoming item\nreturn items.map(item => {\n const inputDatabase = item.json[\"inputDatabase\"];\n\n const simplifiedProperties = Object.fromEntries(Object.entries(inputDatabase.properties).map(([key, value]) => {\n const simplifiedValue = {\n id: value.id,\n name: value.name,\n type: value.type\n };\n\n // Simplify based on type\n if (value.type === 'multi_select' || value.type === 'select') {\n simplifiedValue.options = value.multi_select?.options?.map(option => option.name) || [];\n }\n \n return [key, simplifiedValue];\n }));\n\n // Overwrite the properties object with simplifiedProperties\n item.json.inputDatabase.properties = simplifiedProperties;\n\n return item; // Return the modified item\n});\n"}, "typeVersion": 2}, {"id": "41b615cc-de7d-4c3f-b608-2d1856e0541a", "name": "Structured Output Parser", "type": "@n8n/n8n-nodes-langchain.outputParserStructured", "position": [2500, 800], "parameters": {"jsonSchemaExample": "{\n\t\"workflowJson\": \"json of workflow\"\n}"}, "typeVersion": 1.2}, {"id": "8016baac-9242-44e6-b487-111bb560019d", "name": "Set input data", "type": "n8n-nodes-base.code", "notes": "This allows different routes to input into our agent (e.g. the retry branch). In the AI Agent, we can use a relative $json reference for data, since it's always the same input schema going in. ", "position": [1980, 440], "parameters": {"jsCode": "\nreturn [{\n json: {\n inputDatabase: $input.first().json.inputDatabase,\n feedbackPrompt: (typeof yourVariable !== 'undefined' && yourVariable) ? yourVariable : \" \",\n workflowTemplate: {\n \"nodes\": [\n {\n \"parameters\": {\n \"model\": \"gpt-4o\",\n \"options\": {\n \"temperature\": 0.7,\n \"timeout\": 25000\n }\n },\n \"id\": \"f262c0b4-d627-4fd4-ad78-0aa2f57d963f\",\n \"name\": \"OpenAI Chat Model\",\n \"type\": \"@n8n/n8n-nodes-langchain.lmChatOpenAi\",\n \"typeVersion\": 1,\n \"position\": [\n 1320,\n 640\n ],\n \"credentials\": {\n \"openAiApi\": {\n \"id\": \"AzPPV759YPBxJj3o\",\n \"name\": \"Max's DevRel OpenAI account\"\n }\n }\n },\n {\n \"parameters\": {\n \"assignments\": {\n \"assignments\": [\n {\n \"id\": \"055e8a80-4aff-4466-aaa5-ac58bb90f2d0\",\n \"name\": \"databaseName\",\n \"value\": \"={{ $json.name }}\",\n \"type\": \"string\"\n },\n {\n \"id\": \"2a61e473-72e7-46f6-98b0-817508d701c7\",\n \"name\": \"databaseId\",\n \"value\": \"={{ $json.id }}\",\n \"type\": \"string\"\n }\n ]\n },\n \"options\": {}\n },\n \"id\": \"fb74819f-660e-479c-9519-73cfc41c7ee0\",\n \"name\": \"workflow vars\",\n \"type\": \"n8n-nodes-base.set\",\n \"typeVersion\": 3.4,\n \"position\": [\n 940,\n 460\n ]\n },\n {\n \"parameters\": {\n \"assignments\": {\n \"assignments\": [\n {\n \"id\": \"a8e58791-ba51-46a2-8645-386dd1a0ff6e\",\n \"name\": \"sessionId\",\n \"value\": \"={{ $('When chat message received').item.json.sessionId }}\",\n \"type\": \"string\"\n },\n {\n \"id\": \"434209de-39d5-43d8-a964-0fcb7396306c\",\n \"name\": \"action\",\n \"value\": \"={{ $('When chat message received').item.json.action }}\",\n \"type\": \"string\"\n },\n {\n \"id\": \"cad4c972-51a9-4e16-a627-b00eea77eb30\",\n \"name\": \"chatInput\",\n \"value\": \"={{ $('When chat message received').item.json.chatInput }}\",\n \"type\": \"string\"\n }\n ]\n },\n \"options\": {}\n },\n \"id\": \"832ec8ce-0f7c-4380-9a24-633f490a60a9\",\n \"name\": \"format input for agent\",\n \"type\": \"n8n-nodes-base.set\",\n \"typeVersion\": 3.4,\n \"position\": [\n 1160,\n 460\n ]\n },\n {\n \"parameters\": {\n \"toolDescription\": \"=Use this tool to search the \\\"{{ $('workflow vars').item.json.databaseName }}\\\" Notion app database.\\n\\nIt is structured with question and answer format. \\nYou can filter query result by:\\n- By keyword\\n- filter by tag.\\n\\nKeyword and Tag have an OR relationship not AND.\\n\\n\",\n \"method\": \"POST\",\n \"url\": \"https://api.notion.com/v1/databases/7ea9697d-4875-441e-b262-1105337d232e/query\",\n \"authentication\": \"predefinedCredentialType\",\n \"nodeCredentialType\": \"notionApi\",\n \"sendBody\": true,\n \"specifyBody\": \"json\",\n \"jsonBody\": \"{\\n \\\"filter\\\": {\\n \\\"or\\\": [\\n {\\n \\\"property\\\": \\\"question\\\",\\n \\\"rich_text\\\": {\\n \\\"contains\\\": \\\"{keyword}\\\"\\n }\\n },\\n {\\n \\\"property\\\": \\\"tags\\\",\\n \\\"multi_select\\\": {\\n \\\"contains\\\": \\\"{tag}\\\"\\n }\\n }\\n ]\\n },\\n \\\"sorts\\\": [\\n {\\n \\\"property\\\": \\\"updated_at\\\",\\n \\\"direction\\\": \\\"ascending\\\"\\n }\\n ]\\n}\",\n \"placeholderDefinitions\": {\n \"values\": [\n {\n \"name\": \"keyword\",\n \"description\": \"Searches question of the record. Use one keyword at a time.\"\n },\n {\n \"name\": \"tag\",\n \"description\": \"Options: PTO, HR Policy, Health Benefits, Direct Deposit, Payroll, Sick Leave, 1:1 Meetings, Scheduling, Internal Jobs, Performance Review, Diversity, Inclusion, Training, Harassment, Discrimination, Product Roadmap, Development, Feature Request, Product Management, Support, Ticket Submission, Password Reset, Email, Slack, GitHub, Team Collaboration, Development Setup, DevOps, GitHub Profile Analyzer, Security Breach, Incident Report, New Software, Software Request, IT, Hardware, Procurement, Software Licenses, JetBrains, Adobe, Data Backup, IT Policy, Security, MFA, Okta, Device Policy, Support Ticket, Phishing, Office Supplies, Operations, Meeting Room, Berlin Office, Travel Expenses, Reimbursement, Facilities, Maintenance, Equipment, Expense Reimbursement, Mobile Phones, SIM Cards, Parking, OKRs, Dashboard, Catering, Office Events\"\n }\n ]\n }\n },\n \"id\": \"f16acb7e-f27d-4a95-845c-c990fc334795\",\n \"name\": \"Search notion database\",\n \"type\": \"@n8n/n8n-nodes-langchain.toolHttpRequest\",\n \"typeVersion\": 1.1,\n \"position\": [\n 1620,\n 640\n ],\n \"credentials\": {\n \"notionApi\": {\n \"id\": \"gfNp6Jup8rsmFLRr\",\n \"name\": \"max-bot\"\n }\n }\n },\n {\n \"parameters\": {\n \"public\": true,\n \"initialMessages\": \"=Happy {{ $today.weekdayLong }}!\\nKnowledge source assistant at your service. How can I help?\",\n \"options\": {\n \"subtitle\": \"\",\n \"title\": \"Notion Knowledge Base\"\n }\n },\n \"id\": \"9fc1ae38-d115-44d0-a088-7cec7036be6f\",\n \"name\": \"When chat message received\",\n \"type\": \"@n8n/n8n-nodes-langchain.chatTrigger\",\n \"typeVersion\": 1.1,\n \"position\": [\n 560,\n 460\n ],\n \"webhookId\": \"b76d02c0-b406-4d21-b6bf-8ad2c623def3\"\n },\n {\n \"parameters\": {\n \"resource\": \"database\",\n \"databaseId\": {\n \"__rl\": true,\n \"value\": \"7ea9697d-4875-441e-b262-1105337d232e\",\n \"mode\": \"list\",\n \"cachedResultName\": \"StarLens Company Knowledge Base\",\n \"cachedResultUrl\": \"https://www.notion.so/7ea9697d4875441eb2621105337d232e\"\n }\n },\n \"id\": \"9325e0fe-549f-423b-af48-85e802429a7f\",\n \"name\": \"Get database details\",\n \"type\": \"n8n-nodes-base.notion\",\n \"typeVersion\": 2.2,\n \"position\": [\n 760,\n 460\n ],\n \"credentials\": {\n \"notionApi\": {\n \"id\": \"gfNp6Jup8rsmFLRr\",\n \"name\": \"max-bot\"\n }\n }\n },\n {\n \"parameters\": {\n \"contextWindowLength\": 4\n },\n \"id\": \"637f5731-4442-42be-9151-30ee29ad97c6\",\n \"name\": \"Window Buffer Memory\",\n \"type\": \"@n8n/n8n-nodes-langchain.memoryBufferWindow\",\n \"typeVersion\": 1.2,\n \"position\": [\n 1460,\n 640\n ]\n },\n {\n \"parameters\": {\n \"toolDescription\": \"=Use this tool to retrieve Notion page content using the page ID. \\n\\nIt is structured with question and answer format. \\nYou can filter query result by:\\n- By keyword\\n- filter by tag.\\n\\nKeyword and Tag have an OR relationship not AND.\\n\\n\",\n \"url\": \"https://api.notion.com/v1/blocks/{page_id}/children\",\n \"authentication\": \"predefinedCredentialType\",\n \"nodeCredentialType\": \"notionApi\",\n \"placeholderDefinitions\": {\n \"values\": [\n {\n \"name\": \"page_id\",\n \"description\": \"Notion page id from 'Search notion database' tool results\"\n }\n ]\n },\n \"optimizeResponse\": true,\n \"dataField\": \"results\",\n \"fieldsToInclude\": \"selected\",\n \"fields\": \"id, type, paragraph.text, heading_1.text, heading_2.text, heading_3.text, bulleted_list_item.text, numbered_list_item.text, to_do.text, children\"\n },\n \"id\": \"6b87ae47-fac9-4ef5-aa9a-f1a1ae1adc5f\",\n \"name\": \"Search inside database record\",\n \"type\": \"@n8n/n8n-nodes-langchain.toolHttpRequest\",\n \"typeVersion\": 1.1,\n \"position\": [\n 1800,\n 640\n ],\n \"credentials\": {\n \"notionApi\": {\n \"id\": \"gfNp6Jup8rsmFLRr\",\n \"name\": \"max-bot\"\n }\n }\n },\n {\n \"parameters\": {\n \"promptType\": \"define\",\n \"text\": \"={{ $json.chatInput }}\",\n \"options\": {\n \"systemMessage\": \"=# Role:\\nYou are a helpful agent. Query the \\\"{{ $('workflow vars').item.json.databaseName }}\\\" Notion database to find relevant records or provide insights based on multiple records.\\n\\n# Behavior:\\n\\nBe clear, very concise, efficient, and accurate in responses. Do not hallucinate.\\nIf the request is ambiguous, ask for clarification. Do not embellish, only use facts from the Notion records. Never offer general advice.\\n\\n# Error Handling:\\n\\nIf no matching records are found, try alternative search criteria. Example: Laptop, then Computer, then Equipment. \\nClearly explain any issues with queries (e.g., missing fields or unsupported filters).\\n\\n# Output:\\n\\nReturn concise, user-friendly results or summaries.\\nFor large sets, show top results by default and offer more if needed. Output URLs in markdown format. \\n\\nWhen a record has the answer to user question, always output the URL to that page. Always list links to records separately at the end of the message like this:\\n\\\"Relevant pages: \\n(links in markdown format)\\\"\\nDo not output links twice, only in Relevant pages section\\n\"\n }\n },\n \"id\": \"17f2c426-c48e-48e0-9c5e-e35bdafe5109\",\n \"name\": \"AI Agent\",\n \"type\": \"@n8n/n8n-nodes-langchain.agent\",\n \"typeVersion\": 1.6,\n \"position\": [\n 1380,\n 460\n ]\n }\n ],\n \"connections\": {\n \"OpenAI Chat Model\": {\n \"ai_languageModel\": [\n [\n {\n \"node\": \"AI Agent\",\n \"type\": \"ai_languageModel\",\n \"index\": 0\n }\n ]\n ]\n },\n \"workflow vars\": {\n \"main\": [\n [\n {\n \"node\": \"format input for agent\",\n \"type\": \"main\",\n \"index\": 0\n }\n ]\n ]\n },\n \"format input for agent\": {\n \"main\": [\n [\n {\n \"node\": \"AI Agent\",\n \"type\": \"main\",\n \"index\": 0\n }\n ]\n ]\n },\n \"Search notion database\": {\n \"ai_tool\": [\n [\n {\n \"node\": \"AI Agent\",\n \"type\": \"ai_tool\",\n \"index\": 0\n }\n ]\n ]\n },\n \"When chat message received\": {\n \"main\": [\n [\n {\n \"node\": \"Get database details\",\n \"type\": \"main\",\n \"index\": 0\n }\n ]\n ]\n },\n \"Get database details\": {\n \"main\": [\n [\n {\n \"node\": \"workflow vars\",\n \"type\": \"main\",\n \"index\": 0\n }\n ]\n ]\n },\n \"Window Buffer Memory\": {\n \"ai_memory\": [\n [\n {\n \"node\": \"AI Agent\",\n \"type\": \"ai_memory\",\n \"index\": 0\n }\n ]\n ]\n },\n \"Search inside database record\": {\n \"ai_tool\": [\n [\n {\n \"node\": \"AI Agent\",\n \"type\": \"ai_tool\",\n \"index\": 0\n }\n ]\n ]\n }\n },\n \"pinData\": {}\n}\n }\n}];"}, "typeVersion": 2}, {"id": "dc15a250-074e-4aed-8eec-5c60c91cc42d", "name": "Set schem for rerun", "type": "n8n-nodes-base.set", "position": [3540, 240], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "b4669a2c-7780-4c54-aef6-89a56ddf1d06", "name": "inputDatabase", "type": "object", "value": "={{ $json.inputDatabase }}"}]}}, "typeVersion": 3.4}, {"id": "224f4963-caac-4438-a61b-90e2c0858f24", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [1060, 240], "parameters": {"color": 7, "width": 747.234277816171, "height": 110.78786136085805, "content": "## #1 Serve chat, get URL from user, pull new notion DB schema\nUses n8n Chat trigger. Notion node will fail if an invalid URL is used, or if n8n doesn't have access to it. Also attempts to strip non URL text input. Simplifies notion DB outputs for more efficient token usage in AI Agent."}, "typeVersion": 1}, {"id": "7e18ca8d-3181-446f-96f5-0e4b1000d855", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [1939, 240], "parameters": {"color": 7, "width": 638.6509136143742, "height": 114.20873484539783, "content": "## #2 GenAI step\nTakes 2 inputs: [original workflow template](https://n8n.io/workflows/2413-notion-knowledge-base-ai-assistant/) and new Notion database details from #1"}, "typeVersion": 1}, {"id": "b54b8c03-eb66-4ec7-bc7f-f62ddc566bbe", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [2660, 240], "parameters": {"color": 7, "width": 727.8599253628195, "height": 111.9281525223713, "content": "## #3 Does the new workflow look right?\nChecks for previously identified cases (e.g. LLM outputs placeholder for certain values) then does general LLM check on whether it looks like valid n8n workflow JSON."}, "typeVersion": 1}, {"id": "a5cc97a7-33e3-45fe-9e13-45ebafd469d7", "name": "Add feedback prompt", "type": "n8n-nodes-base.set", "position": [3220, 440], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "1243a328-8420-4be0-8932-4e153472a638", "name": "feedbackPrompt", "type": "string", "value": "=You attempted the below task and outputted incorrect JSON. Below is your incorrect attempt and original task prompt. Try again.\n\n# Incorrect task prompt\n"}]}, "includeOtherFields": true}, "typeVersion": 3.4}, {"id": "b066fa2d-77ba-4466-ae3b-9ab2405bae3c", "name": "Check for WF JSON errors", "type": "n8n-nodes-base.switch", "notes": "Placeholder jsonBody in tool - this means the 'Search notion database' tool got [object Object] as it's value (happening ~25% of the time)", "position": [2920, 440], "parameters": {"rules": {"values": [{"outputKey": "Placeholder jsonBody in tool", "conditions": {"options": {"leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"operator": {"type": "string", "operation": "contains"}, "leftValue": "={{ $json.searchNotionDBJsonBody }}", "rightValue": "object Object"}]}, "renameOutput": true}]}, "options": {"fallbackOutput": "extra", "allMatchingOutputs": false}}, "typeVersion": 3.1}, {"id": "e4b38c13-255d-4136-9c7b-90678cbe523b", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [3540, 60], "parameters": {"color": 7, "width": 343.3887397891673, "height": 132.30907857627597, "content": "## #4 Respond to Chat trigger\nEach response to the chat trigger is one run. Data of the last node that runs in the workflow is sent to chat trigger, like `Return success to chat`"}, "typeVersion": 1}, {"id": "3ecfadc2-2499-4e0f-94c4-1e68770beefb", "name": "Generate Workflow Agent", "type": "@n8n/n8n-nodes-langchain.agent", "onError": "continueRegularOutput", "position": [2220, 440], "parameters": {"text": "=Your task is to output a modified version of a n8n workflow template so it works with the provided new notion database schema. \n\n\n# new notion database details\n{{ $json.inputDatabase.toJsonString() }}\n\n# n8n workflow template to use as reference\n{{ $json.workflowTemplate.toJsonString() }}\n\nJSON Output:\n- Ensure valid JSON with properly quoted keys and values, no trailing commas, and correctly nested braces `{}` and brackets `[]`. If unable to format, return an error or a valid example.\n- Output linebreaks so user can copy working JSON", "agent": "reActAgent", "options": {"prefix": "You are an n8n expert and understand n8n's workflow JSON Structure. You take n8n workflows and make changes to them based on the user request. \n\nDon't hallucinate. Only output n8n workflow json. \n\n", "returnIntermediateSteps": false}, "promptType": "define", "hasOutputParser": true}, "typeVersion": 1.6}, {"id": "3ac37a66-30d5-404a-8c22-1402874e4f37", "name": "Anthropic Chat Model2", "type": "@n8n/n8n-nodes-langchain.lmChatAnthropic", "position": [3120, 860], "parameters": {"options": {"maxTokensToSample": 8192}}, "typeVersion": 1.2}, {"id": "f71ddd6e-7d41-405c-8cd8-bb21fc0654ae", "name": "When chat message received", "type": "@n8n/n8n-nodes-langchain.chatTrigger", "position": [1100, 480], "webhookId": "49dfdc22-b4c8-4ed3-baef-6751ec52f278", "parameters": {"public": true, "options": {"title": "\ud83e\udd16 Notion database assistant generator", "subtitle": "Generates an n8n workflow-based AI Agent that can query any arbitrary Notion database. ", "inputPlaceholder": "e.g. https://www.notion.so/n8n/34f67a14195344fda645691c63dc3901", "loadPreviousSession": "manually"}, "initialMessages": "Hi there, I can help you make an AI Agent assistant that can query a Notion database.\n\nGenerating the workflow may take a few minutes as I check whether it works and try again if I oopsie.\n\nEnter a notion database URL and I'll output the workflow in JSON that you can paste in to the n8n canvas. \n"}, "typeVersion": 1.1}, {"id": "5a549080-0ad0-4f94-87b1-8b735d7b95a3", "name": "Valid n8n workflow JSON?", "type": "@n8n/n8n-nodes-langchain.textClassifier", "position": [3140, 700], "parameters": {"options": {"systemPromptTemplate": "You are an expert in n8n workflow automation tool. You know whether the json representation of an n8n workflow is valid. \n\nPlease classify the text provided by the user into one of the following categories: {categories}, and use the provided formatting instructions below. Don't explain, and only output the json."}, "inputText": "={{ $json.generatedWorkflow }}", "categories": {"categories": [{"category": "invalidJSON", "description": "Any other workflow JSON"}, {"category": "validJSON", "description": "A valid n8n workflow JSON"}]}}, "typeVersion": 1}, {"id": "02bf6e06-6671-4d18-ba30-117459e9d58a", "name": "Sticky Note5", "type": "n8n-nodes-base.stickyNote", "position": [380, 500], "parameters": {"color": 7, "width": 614.8565246662145, "height": 416.2640726760381, "content": "## Watch a quick set up video \ud83d\udc47\n[![Notion AI Assistant Generator](https://uploads.n8n.io/devrel/notion-db-assistant-thumb#full-width)](https://youtu.be/iK87ppcaNgM)\n"}, "typeVersion": 1}]
{"Notion": {"main": [[{"node": "standardize schema", "type": "main", "index": 0}], [{"node": "Return error to chat", "type": "main", "index": 0}]]}, "Set input data": {"main": [[{"node": "Generate Workflow Agent", "type": "main", "index": 0}]]}, "standardize schema": {"main": [[{"node": "Simplify properties object", "type": "main", "index": 0}]]}, "Add feedback prompt": {"main": [[{"node": "Set schem for rerun", "type": "main", "index": 0}]]}, "Set schem for rerun": {"main": [[{"node": "Set input data", "type": "main", "index": 0}]]}, "Set schema for eval": {"main": [[{"node": "Check for WF JSON errors", "type": "main", "index": 0}]]}, "Anthropic Chat Model": {"ai_languageModel": [[{"node": "Generate Workflow Agent", "type": "ai_languageModel", "index": 0}]]}, "Anthropic Chat Model1": {"ai_languageModel": [[{"node": "Auto-fixing Output Parser", "type": "ai_languageModel", "index": 0}]]}, "Anthropic Chat Model2": {"ai_languageModel": [[{"node": "Valid n8n workflow JSON?", "type": "ai_languageModel", "index": 0}]]}, "Generate Workflow Agent": {"main": [[{"node": "Set schema for eval", "type": "main", "index": 0}]]}, "Check for WF JSON errors": {"main": [[{"node": "Add feedback prompt", "type": "main", "index": 0}], [{"node": "Valid n8n workflow JSON?", "type": "main", "index": 0}]]}, "Structured Output Parser": {"ai_outputParser": [[{"node": "Auto-fixing Output Parser", "type": "ai_outputParser", "index": 0}]]}, "Valid n8n workflow JSON?": {"main": [[{"node": "Set schem for rerun", "type": "main", "index": 0}], [{"node": "Return success to chat", "type": "main", "index": 0}]]}, "Auto-fixing Output Parser": {"ai_outputParser": [[{"node": "Generate Workflow Agent", "type": "ai_outputParser", "index": 0}]]}, "Simplify properties object": {"main": [[{"node": "Set input data", "type": "main", "index": 0}]]}, "When chat message received": {"main": [[{"node": "Notion", "type": "main", "index": 0}]]}}
Build a Tax Code Assistant with Qdrant, Mistral.ai and OpenAI
[{"id": "1bb3c94e-326e-41ca-82e4-102a598dba39", "name": "When clicking \u2018Test workflow\u2019", "type": "n8n-nodes-base.manualTrigger", "position": [-320, 300], "parameters": {}, "typeVersion": 1}, {"id": "751b283b-ea88-4fcd-ace3-3c86631f8876", "name": "Embeddings Mistral Cloud", "type": "@n8n/n8n-nodes-langchain.embeddingsMistralCloud", "position": [1760, 560], "parameters": {"options": {}}, "credentials": {"mistralCloudApi": {"id": "EIl2QxhXAS9Hkg37", "name": "Mistral Cloud account"}}, "typeVersion": 1}, {"id": "f0851949-1036-4040-84df-61295cc5db74", "name": "Default Data Loader", "type": "@n8n/n8n-nodes-langchain.documentDefaultDataLoader", "position": [1900, 560], "parameters": {"options": {"metadata": {"metadataValues": [{"name": "chapter", "value": "={{ $('For Each Section...').item.json.chapter }}"}, {"name": "section", "value": "={{ $('For Each Section...').item.json.label }}"}, {"name": "=title", "value": "={{ $('For Each Section...').item.json.title }}"}, {"name": "content_order", "value": "={{ $itemIndex }}"}]}}, "jsonData": "={{ $json.content }}", "jsonMode": "expressionData"}, "typeVersion": 1}, {"id": "41d10b61-9fbe-446e-a65a-0db6e0116e5b", "name": "Recursive Character Text Splitter", "type": "@n8n/n8n-nodes-langchain.textSplitterRecursiveCharacterTextSplitter", "position": [1920, 680], "parameters": {"options": {}, "chunkSize": 2000}, "typeVersion": 1}, {"id": "a1ecb096-4d31-4993-b801-ca3f09a9edc7", "name": "Get Tax Code Zip File", "type": "n8n-nodes-base.httpRequest", "position": [-20, 340], "parameters": {"url": "https://statutes.capitol.texas.gov/Docs/Zips/TX.pdf.zip", "options": {"response": {"response": {"responseFormat": "file"}}}}, "typeVersion": 4.2}, {"id": "cf983315-fe2a-43c1-8dc6-b17a217b845e", "name": "Extract Zip Files", "type": "n8n-nodes-base.compression", "position": [140, 340], "parameters": {}, "typeVersion": 1.1}, {"id": "8d02dd80-d14a-4e56-ab40-f2c4a445c57b", "name": "Files as Items", "type": "n8n-nodes-base.splitOut", "position": [300, 340], "parameters": {"include": "allOtherFields", "options": {}, "fieldToSplitOut": "$binary"}, "typeVersion": 1}, {"id": "038060dc-e01d-40ae-878d-5043bc36ab91", "name": "Extract PDF Contents", "type": "n8n-nodes-base.extractFromFile", "position": [560, 380], "parameters": {"options": {}, "operation": "pdf", "binaryPropertyName": "=file_{{ $itemIndex }}"}, "typeVersion": 1}, {"id": "4a85003b-b988-467b-b1cb-29206cbed879", "name": "Extract From Chapter", "type": "n8n-nodes-base.set", "position": [740, 380], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "d791928a-d775-48cc-9004-a92cbe2403d3", "name": "contents", "type": "array", "value": "={{\n $json.text\n .substring($json.text.search(/\\nSec\\.\\nA[0-9]{1,4}\\.[0-9]{1,5}\\.AA/), $json.text.length)\n .split(/\\nSec\\.\\nA[0-9]{1,2}\\.[0-9]{1,2}\\.AA/g)\n .filter(text => !text.isEmpty())\n .map(text => {\n const output = text.replaceAll('AA', ' ').replaceAll('\\nA', ' ');\n const title = output.substring(0, output.indexOf('.'));\n const content = output.substring(output.indexOf('.')+1, output.length).replaceAll('\\n', ' ').trim();\n return { title, content };\n })\n}}"}, {"id": "bc06641f-0b75-4a35-8752-78803231d5d6", "name": "labels", "type": "array", "value": "={{\n $json.text\n .match(/\\nSec\\.\\nA[0-9]{1,4}\\.[0-9]{1,5}\\.AA/g)\n .map(text => ({\n label: text.replaceAll('AA', ' ')\n .replaceAll('\\nA', ' ')\n .replaceAll('\\n', '')\n .trim()\n }))\n}}"}]}}, "typeVersion": 3.3}, {"id": "ee338786-91df-4784-bd7e-f86c0e13ca26", "name": "Map To Sections", "type": "n8n-nodes-base.set", "position": [740, 520], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "60109e60-d760-45bb-be09-7cb2b5eb85bc", "name": "section", "type": "array", "value": "={{\n $json.labels.map((label, idx) => ({\n label: label.label.match(/\\d.+/)[0].replace(/\\.$/, ''),\n title: $json.contents[idx].title,\n content: $json.contents[idx].content,\n chapter: $('Extract PDF Contents').first().json.info.Title,\n }))\n}}"}]}}, "typeVersion": 3.3}, {"id": "41c9899d-26d7-48af-9af2-8563ab0fb7e4", "name": "Execute Workflow Trigger", "type": "n8n-nodes-base.executeWorkflowTrigger", "position": [1313, 1200], "parameters": {}, "typeVersion": 1}, {"id": "3a93c19b-09d9-4e38-8b0c-2008fc03f7fc", "name": "Get Mistral Embeddings", "type": "n8n-nodes-base.httpRequest", "position": [1660, 1060], "parameters": {"url": "https://api.mistral.ai/v1/embeddings", "method": "POST", "options": {}, "sendBody": true, "authentication": "predefinedCredentialType", "bodyParameters": {"parameters": [{"name": "model", "value": "mistral-embed"}, {"name": "encoding_format", "value": "float"}, {"name": "input", "value": "={{ $json.query }}"}]}, "nodeCredentialType": "mistralCloudApi"}, "credentials": {"mistralCloudApi": {"id": "EIl2QxhXAS9Hkg37", "name": "Mistral Cloud account"}}, "typeVersion": 4.2}, {"id": "1adc12bd-ba61-4f1a-b1f9-3f19a542e294", "name": "Content Chunking @ 50k Chars", "type": "n8n-nodes-base.set", "position": [1580, 400], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "7753a4f4-3ec2-4c05-81df-3d5e8979a478", "name": "=content", "type": "array", "value": "={{ new Array(Math.round($json.content.length / Math.min($json.content.length, 30000))).fill('').map((_,idx) => $json.content.substring(idx * 30000, idx * 50000 + 30000)) }}"}]}}, "typeVersion": 3.3}, {"id": "ff8adce2-8f73-4a8f-b512-5aa560ca0954", "name": "Split Out Chunks", "type": "n8n-nodes-base.splitOut", "position": [1580, 580], "parameters": {"options": {}, "fieldToSplitOut": "content"}, "typeVersion": 1}, {"id": "5f08ce3c-240d-4c91-bb23-953866fd0361", "name": "For Each Section...", "type": "n8n-nodes-base.splitInBatches", "position": [1400, 280], "parameters": {"options": {}, "batchSize": 5}, "typeVersion": 3}, {"id": "6346cf67-7d93-4315-bb0d-2e016c9853b9", "name": "Sections To List", "type": "n8n-nodes-base.splitOut", "position": [940, 380], "parameters": {"options": {}, "fieldToSplitOut": "section"}, "typeVersion": 1}, {"id": "95e34952-03e2-40e3-a245-9da8c9e1f249", "name": "Only Valid Sections", "type": "n8n-nodes-base.filter", "position": [1100, 380], "parameters": {"options": {}, "conditions": {"options": {"leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "or", "conditions": [{"id": "121e8f86-2ead-47e0-8e17-52d7c6ba8265", "operator": {"type": "string", "operation": "notEmpty", "singleValue": true}, "leftValue": "={{ $json.content }}", "rightValue": ""}]}}, "typeVersion": 2}, {"id": "dfe1818f-93b7-4116-8a6e-dcb2e6c23fcf", "name": "Use Qdrant Search API1", "type": "n8n-nodes-base.httpRequest", "position": [1860, 1060], "parameters": {"url": "=http://qdrant:6333/collections/texas_tax_codes/points/search", "method": "POST", "options": {}, "sendBody": true, "authentication": "predefinedCredentialType", "bodyParameters": {"parameters": [{"name": "limit", "value": "={{ 4 }}"}, {"name": "vector", "value": "={{ $json.data[0].embedding }}"}, {"name": "with_payload", "value": "={{ true }}"}]}, "nodeCredentialType": "qdrantApi"}, "credentials": {"qdrantApi": {"id": "NyinAS3Pgfik66w5", "name": "QdrantApi account"}}, "typeVersion": 4.2}, {"id": "588318e6-e188-4d99-9c11-39b2f3fb1c18", "name": "Use Qdrant Scroll API", "type": "n8n-nodes-base.httpRequest", "position": [1660, 1320], "parameters": {"url": "=http://qdrant:6333/collections/texas_tax_codes/points/scroll", "method": "POST", "options": {"pagination": {"pagination": {"parameters": {"parameters": [{"name": "next_page_offset", "type": "body", "value": "={{ $response.body.result.next_page_offset }}"}]}, "completeExpression": "={{ $response.body.result.next_page_offset === null }}", "paginationCompleteWhen": "other"}}}, "sendBody": true, "authentication": "predefinedCredentialType", "bodyParameters": {"parameters": [{"name": "limit", "value": "={{ 100 }}"}, {"name": "with_payload", "value": "={{ true }}"}, {"name": "filter", "value": "={{\n{\n \"must\": [\n ($json.query.section\n ? { \"key\": \"metadata.section\", \"match\": { \"value\": $json.query.section } }\n : { \"key\": \"metadata.chapter\", \"match\": { \"value\": $json.query.chapter } }\n )\n ]\n}\n}}"}]}, "nodeCredentialType": "qdrantApi"}, "credentials": {"qdrantApi": {"id": "NyinAS3Pgfik66w5", "name": "QdrantApi account"}}, "typeVersion": 4.2}, {"id": "bbf01344-c60e-42b3-8d7d-2bb360876d79", "name": "Get Search Response", "type": "n8n-nodes-base.set", "position": [1860, 1320], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "08ad2d6e-4ed1-409e-b89c-1f0c7fdf1b64", "name": "response", "type": "string", "value": "=---\nchapter: {{ $json.result.points.first().payload.metadata.chapter }}\nsection: {{ $json.result.points.first().payload.metadata.section }}\ntitle: {{ $json.result.points.first().payload.metadata.title }}\n---\n{{ $json.result.points\n .toSorted((a,b) => (a.payload.metadata.content_order || 0) - (b.payload.metadata.content_order || 0))\n .map(point => point.payload.content).join('\\n') }}"}]}}, "typeVersion": 3.3}, {"id": "3b23ff5e-158a-470f-a262-d001d52feeba", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [-100, 183.38345554113084], "parameters": {"color": 7, "width": 571.4359274276384, "height": 352.65642339230595, "content": "## Step 1. Download the Tax Code PDF\n[Read more about handling Zip Files](https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.compression/)\n\nLet's begin by pulling a zip file containing all the tax codes as separate PDF files. We can unzip on the fly with n8n's compression node."}, "typeVersion": 1}, {"id": "02826887-eb26-48a0-928e-fe56ee008425", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [500, 199.87747230655896], "parameters": {"color": 7, "width": 777.897719182587, "height": 503.3459981018574, "content": "## Step 2. Extract and Partition Into Chapters & Sections\n[Learn more about reading PDF Files](https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.extractfromfile)\n\nRather than ingest the raw text of the PDF, we'll be a little more strategic and extract the tax code sections separately instead. Not only will this provide cleaner results, we'll also be able to fetch sections in isolation if required."}, "typeVersion": 1}, {"id": "31a34972-31ab-4b96-9d09-cd30a3b184cf", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [1300, 108.82958126396], "parameters": {"color": 7, "width": 1045.1698686248747, "height": 771.1260499456115, "content": "## Step 3. Save into Qdrant VectorStore\n[Read more about using the Qdrant Vectorstore](https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoreqdrant)\n\nWe'll save our data into a Qdrant collection being mindful to use metadata to take full advantage of Qdrant's filtering capabilities later.\nThough not always required, since the tax code documents can be quite large we'll implement a loop here to throttle the number of tokens being processed as to not trip the Mistral.ai rate limits for embeddings."}, "typeVersion": 1}, {"id": "27039fa6-6388-45ee-a2d5-6bb68554944b", "name": "Qdrant Vector Store", "type": "@n8n/n8n-nodes-langchain.vectorStoreQdrant", "position": [1760, 400], "parameters": {"mode": "insert", "options": {}, "qdrantCollection": {"__rl": true, "mode": "list", "value": "texas_tax_codes", "cachedResultName": "texas_tax_codes"}}, "credentials": {"qdrantApi": {"id": "NyinAS3Pgfik66w5", "name": "QdrantApi account"}}, "typeVersion": 1}, {"id": "5ec16c20-eb1e-454a-8165-594d83dd8711", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [360, 900], "parameters": {"color": 7, "width": 858.1415560000298, "height": 513.2269439624808, "content": "## Step 4. Build a Tax Code Assistant ChatBot\n[Learn more about using AI Agents in n8n](https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent)\n\nFor our chatbot, we'll use an AI agent node because we want to achieve more than one functionality. The first will be querying to relevant texts to answer a user's question and secondly, a direct search feature to pull full section text when requested."}, "typeVersion": 1}, {"id": "d5145c6f-768b-42d8-a045-20e045f52b0b", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [1240, 904.6076722083936], "parameters": {"color": 7, "width": 1030.0926850706744, "height": 577.7854680142904, "content": "## Step 5. Use Qdrant API as Tools\n[Learn more about using AI Agents in n8n](https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent)\n\nOur Ask Tool will generate embeddings using Mistral.ai and query our Qdrant collection using the Qdrant Search API.\nOur Search Tool will use filter our Qdrant collection using the Qdrant Scroll API, matching on each doc's section metadata key."}, "typeVersion": 1}, {"id": "ccf50479-53d8-4edf-8f2b-73060a6a6e0f", "name": "AI Agent", "type": "@n8n/n8n-nodes-langchain.agent", "position": [700, 1063], "parameters": {"options": {"systemMessage": "You are a helpful assistant answering user questions on the tax code legistration for the state of Texas, united states of america.\n\nAlong with your response also note in which chapter and section number the information was found. "}}, "typeVersion": 1.6}, {"id": "d7e7fa9e-73ba-4df3-862e-25af63d9d9b4", "name": "Window Buffer Memory", "type": "@n8n/n8n-nodes-langchain.memoryBufferWindow", "position": [820, 1223], "parameters": {}, "typeVersion": 1.2}, {"id": "a79bdbcd-7157-470a-aadc-bd3f8a4c40d2", "name": "When chat message received", "type": "@n8n/n8n-nodes-langchain.chatTrigger", "position": [420, 1063], "webhookId": "db2b118d-942e-4be9-b154-7df887232f97", "parameters": {"public": true, "options": {"loadPreviousSession": "memory"}, "initialMessages": ""}, "typeVersion": 1}, {"id": "6046f137-b508-484f-8577-ac51a35eee09", "name": "Window Buffer Memory1", "type": "@n8n/n8n-nodes-langchain.memoryBufferWindow", "position": [420, 1223], "parameters": {}, "typeVersion": 1.2}, {"id": "30f238f8-1987-4d6d-b06d-ac2106ea3734", "name": "OpenAI Chat Model", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [700, 1223], "parameters": {"options": {}}, "credentials": {"openAiApi": {"id": "8gccIjcuf3gvaoEr", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "8a8490f6-5957-495c-a7af-15cec669f39c", "name": "1sec", "type": "n8n-nodes-base.wait", "position": [2160, 660], "webhookId": "852317f0-aadf-4658-ae44-d05e5de29302", "parameters": {"amount": 1}, "executeOnce": false, "typeVersion": 1.1}, {"id": "142450f5-8ec1-4ae6-b25c-df3233394d4e", "name": "Ask Tool", "type": "@n8n/n8n-nodes-langchain.toolWorkflow", "position": [960, 1223], "parameters": {"name": "query_tax_code_knowledgebase", "fields": {"values": [{"name": "route", "stringValue": "ask_tool"}]}, "workflowId": "={{ $workflow.id }}", "description": "Call this tool to query the tax code database for information. Structure your query in the form of a question for best results."}, "typeVersion": 1.1}, {"id": "ee455a4e-c9a1-49b2-a036-d3f3d34099c6", "name": "Search Tool", "type": "@n8n/n8n-nodes-langchain.toolWorkflow", "position": [1060, 1223], "parameters": {"name": "get_tax_code_section", "fields": {"values": [{"name": "route", "stringValue": "search_tool"}]}, "workflowId": "={{ $workflow.id }}", "description": "Call this tool to search for specific sections of the tax code document. Pass in either a known section number/id to get the section's text or a known chapter name to return all sections for the chapter.", "jsonSchemaExample": "{\n\t\"chapter\": \"some_value\",\n \"section\": \"Sec 1.01\"\n}", "specifyInputSchema": true}, "typeVersion": 1.1}, {"id": "f3240f8d-8869-4088-8e4f-d4e23a3c12a8", "name": "Switch", "type": "n8n-nodes-base.switch", "position": [1473, 1200], "parameters": {"rules": {"values": [{"outputKey": "ask_tool", "conditions": {"options": {"leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"operator": {"type": "string", "operation": "equals"}, "leftValue": "={{ $json.route }}", "rightValue": "ask_tool"}]}, "renameOutput": true}, {"outputKey": "search_tool", "conditions": {"options": {"leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "909362ed-eb97-405c-9f2f-f404a3bfeaf3", "operator": {"name": "filter.operator.equals", "type": "string", "operation": "equals"}, "leftValue": "={{ $json.route }}", "rightValue": "search_tool"}]}, "renameOutput": true}]}, "options": {}}, "typeVersion": 3}, {"id": "71441b5a-099b-49e0-a212-3087d958b38b", "name": "Get Ask Response", "type": "n8n-nodes-base.set", "position": [2060, 1060], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "eb5f2b3c-bb88-4cae-a960-164016c9a9e4", "name": "response", "type": "string", "value": "=|chapter|section|title|content|\n|-|-|-|-|\n{{\n $json.result.map(row => [\n '',\n row.payload.metadata.chapter,\n row.payload.metadata.section,\n row.payload.metadata.title,\n row.payload.content,\n ''\n ].join('|')).join('\\n')\n}}"}]}}, "typeVersion": 3.3}, {"id": "54a744a3-95c9-4d9a-b1e7-e266a51f77ca", "name": "Sticky Note5", "type": "n8n-nodes-base.stickyNote", "position": [-520, -79.56762868134751], "parameters": {"width": 383.14868794462586, "height": 563.604204119637, "content": "## Try Me Out!\n### This workflow builds an AI powered Legal assistant who answers questions about tax codes.\n* Download publically available tax code PDFs from the relevant government website.\n* Strategically exact tax code sections and store these in our Qdrant Vectorstore using Mistral.ai embeddings.\n* Use an AI Agent to answer user's tax questions by attaching tools which query our Qdrant vectorstore.\n\n### Need Help?\nJoin the [Discord](https://discord.com/invite/XPKeKXeB7d) or ask in the [Forum](https://community.n8n.io/)!\n\nHappy Hacking!"}, "typeVersion": 1}, {"id": "7f802f12-03e0-4b8e-a880-8c26242c1152", "name": "Sticky Note6", "type": "n8n-nodes-base.stickyNote", "position": [790.1971986436472, 720], "parameters": {"color": 5, "width": 489.3944544742706, "height": 131.61363932813174, "content": "### \ud83d\ude4b\u200d\u2640\ufe0fWhat's the difference?\nWith raw PDF data, we may blur the boundaries between chapters and sections making later results hard to find, incoherent or misleading.\nDepending on your use-case, store your data in a way you intend to retrieve it!"}, "typeVersion": 1}]
{"1sec": {"main": [[{"node": "For Each Section...", "type": "main", "index": 0}]]}, "Switch": {"main": [[{"node": "Get Mistral Embeddings", "type": "main", "index": 0}], [{"node": "Use Qdrant Scroll API", "type": "main", "index": 0}]]}, "Ask Tool": {"ai_tool": [[{"node": "AI Agent", "type": "ai_tool", "index": 0}]]}, "Search Tool": {"ai_tool": [[{"node": "AI Agent", "type": "ai_tool", "index": 0}]]}, "Files as Items": {"main": [[{"node": "Extract PDF Contents", "type": "main", "index": 0}]]}, "Map To Sections": {"main": [[{"node": "Sections To List", "type": "main", "index": 0}]]}, "Sections To List": {"main": [[{"node": "Only Valid Sections", "type": "main", "index": 0}]]}, "Split Out Chunks": {"main": [[{"node": "Qdrant Vector Store", "type": "main", "index": 0}]]}, "Extract Zip Files": {"main": [[{"node": "Files as Items", "type": "main", "index": 0}]]}, "OpenAI Chat Model": {"ai_languageModel": [[{"node": "AI Agent", "type": "ai_languageModel", "index": 0}]]}, "Default Data Loader": {"ai_document": [[{"node": "Qdrant Vector Store", "type": "ai_document", "index": 0}]]}, "For Each Section...": {"main": [null, [{"node": "Content Chunking @ 50k Chars", "type": "main", "index": 0}]]}, "Only Valid Sections": {"main": [[{"node": "For Each Section...", "type": "main", "index": 0}]]}, "Qdrant Vector Store": {"main": [[{"node": "1sec", "type": "main", "index": 0}]]}, "Extract From Chapter": {"main": [[{"node": "Map To Sections", "type": "main", "index": 0}]]}, "Extract PDF Contents": {"main": [[{"node": "Extract From Chapter", "type": "main", "index": 0}]]}, "Window Buffer Memory": {"ai_memory": [[{"node": "AI Agent", "type": "ai_memory", "index": 0}]]}, "Get Tax Code Zip File": {"main": [[{"node": "Extract Zip Files", "type": "main", "index": 0}]]}, "Use Qdrant Scroll API": {"main": [[{"node": "Get Search Response", "type": "main", "index": 0}]]}, "Window Buffer Memory1": {"ai_memory": [[{"node": "When chat message received", "type": "ai_memory", "index": 0}]]}, "Get Mistral Embeddings": {"main": [[{"node": "Use Qdrant Search API1", "type": "main", "index": 0}]]}, "Use Qdrant Search API1": {"main": [[{"node": "Get Ask Response", "type": "main", "index": 0}]]}, "Embeddings Mistral Cloud": {"ai_embedding": [[{"node": "Qdrant Vector Store", "type": "ai_embedding", "index": 0}]]}, "Execute Workflow Trigger": {"main": [[{"node": "Switch", "type": "main", "index": 0}]]}, "When chat message received": {"main": [[{"node": "AI Agent", "type": "main", "index": 0}]]}, "Content Chunking @ 50k Chars": {"main": [[{"node": "Split Out Chunks", "type": "main", "index": 0}]]}, "Recursive Character Text Splitter": {"ai_textSplitter": [[{"node": "Default Data Loader", "type": "ai_textSplitter", "index": 0}]]}, "When clicking \u2018Test workflow\u2019": {"main": [[{"node": "Get Tax Code Zip File", "type": "main", "index": 0}]]}}
Make OpenAI Citation for File Retrieval RAG
[{"id": "b9033511-3421-467a-9bfa-73af01b99c4f", "name": "Aggregate", "type": "n8n-nodes-base.aggregate", "position": [740, 120], "parameters": {"options": {}, "aggregate": "aggregateAllItemData"}, "typeVersion": 1, "alwaysOutputData": true}, {"id": "a61dd9d3-4faa-4878-a6f3-ba8277279002", "name": "Window Buffer Memory", "type": "@n8n/n8n-nodes-langchain.memoryBufferWindow", "position": [980, -320], "parameters": {}, "typeVersion": 1.3}, {"id": "2daabca5-37ec-4cad-9157-29926367e1a7", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [220, 320], "parameters": {"color": 3, "width": 840, "height": 80, "content": "## Within N8N, there will be a chat button to test"}, "typeVersion": 1}, {"id": "bf4485b1-cd94-41c8-a183-bf1b785f2761", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [-440, -520], "parameters": {"color": 5, "width": 500, "height": 720, "content": "## Make OpenAI Citation for File Retrieval RAG\n\n## Use case\n\nIn this example, we will ensure that all texts from the OpenAI assistant search for citations and sources in the vector store files. We can also format the output for Markdown or HTML tags.\n\nThis is necessary because the assistant sometimes generates strange characters, and we can also use dynamic references such as citations 1, 2, 3, for example.\n\n## What this workflow does\n\nIn this workflow, we will use an OpenAI assistant created within their interface, equipped with a vector store containing some files for file retrieval.\n\nThe assistant will perform the file search within the OpenAI infrastructure and will return the content with citations.\n\n- We will make an HTTP request to retrieve all the details we need to format the text output.\n\n## Setup\n\nInsert an OpenAI Key\n\n## How to adjust it to your needs\n\nAt the end of the workflow, we have a block of code that will format the output, and there we can add Markdown tags to create links. Optionally, we can transform the Markdown formatting into HTML.\n\n\nby Davi Saranszky Mesquita\nhttps://www.linkedin.com/in/mesquitadavi/"}, "typeVersion": 1}, {"id": "539a4e40-9745-4a26-aba8-2cc2b0dd6364", "name": "Create a simple Trigger to have the Chat button within N8N", "type": "@n8n/n8n-nodes-langchain.chatTrigger", "notes": "https://www.npmjs.com/package/@n8n/chat", "position": [260, -520], "webhookId": "8ccaa299-6f99-427b-9356-e783893a3d0c", "parameters": {"options": {}}, "notesInFlow": true, "typeVersion": 1.1}, {"id": "aa5b2951-df32-43ac-9939-83b02d818e73", "name": "OpenAI Assistant with Vector Store", "type": "@n8n/n8n-nodes-langchain.openAi", "position": [580, -520], "parameters": {"options": {"preserveOriginalTools": false}, "resource": "assistant", "assistantId": {"__rl": true, "mode": "list", "value": "asst_QAfdobVCVCMJz8LmaEC7nlId", "cachedResultName": "Teste"}}, "credentials": {"openAiApi": {"id": "UfNrqPCRlD8FD9mk", "name": "OpenAi Lourival"}}, "typeVersion": 1.7}, {"id": "1817b673-6cb3-49aa-9f38-a5876eb0e6fa", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [560, -680], "parameters": {"width": 300, "content": "## Setup\n\n- Configure OpenAI Key\n\n### In this step, we will use an assistant created within the OpenAI platform that contains a vector store a.k.a file retrieval"}, "typeVersion": 1}, {"id": "16429226-e850-4698-b419-fd9805a03fb7", "name": "Get ALL Thread Content", "type": "n8n-nodes-base.httpRequest", "position": [1260, -520], "parameters": {"url": "=https://api.openai.com/v1/threads/{{ $json.threadId }}/messages", "options": {}, "sendHeaders": true, "authentication": "predefinedCredentialType", "headerParameters": {"parameters": [{"name": "OpenAI-Beta", "value": "assistants=v2"}]}, "nodeCredentialType": "openAiApi"}, "credentials": {"openAiApi": {"id": "UfNrqPCRlD8FD9mk", "name": "OpenAi Lourival"}}, "typeVersion": 4.2, "alwaysOutputData": true}, {"id": "e8c88b08-5be2-4f7e-8b17-8cf804b3fe9f", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [1160, -620], "parameters": {"content": "### Retrieving all thread content is necessary because the OpenAI tool does not retrieve all citations upon request."}, "typeVersion": 1}, {"id": "0f51e09f-2782-4e2d-b797-d4d58fcabdaf", "name": "Split all message iterations from a thread", "type": "n8n-nodes-base.splitOut", "position": [220, -300], "parameters": {"options": {}, "fieldToSplitOut": "data"}, "typeVersion": 1, "alwaysOutputData": true}, {"id": "4d569993-1ce3-4b32-beaf-382feac25da9", "name": "Split all content from a single message", "type": "n8n-nodes-base.splitOut", "position": [460, -300], "parameters": {"options": {}, "fieldToSplitOut": "content"}, "typeVersion": 1, "alwaysOutputData": true}, {"id": "999e1c2b-1927-4483-aac1-6e8903f7ed25", "name": "Split all citations from a single message", "type": "n8n-nodes-base.splitOut", "position": [700, -300], "parameters": {"options": {}, "fieldToSplitOut": "text.annotations"}, "typeVersion": 1, "alwaysOutputData": true}, {"id": "98af62f5-adb0-4e07-a146-fc2f13b851ce", "name": "Retrieve file name from a file ID", "type": "n8n-nodes-base.httpRequest", "onError": "continueRegularOutput", "position": [220, 120], "parameters": {"url": "=https://api.openai.com/v1/files/{{ $json.file_citation.file_id }}", "options": {}, "sendQuery": true, "authentication": "predefinedCredentialType", "queryParameters": {"parameters": [{"name": "limit", "value": "1"}]}, "nodeCredentialType": "openAiApi"}, "credentials": {"openAiApi": {"id": "UfNrqPCRlD8FD9mk", "name": "OpenAi Lourival"}}, "typeVersion": 4.2, "alwaysOutputData": true}, {"id": "b11f0d3d-bdc4-4845-b14b-d0b0de214f01", "name": "Regularize output", "type": "n8n-nodes-base.set", "position": [480, 120], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "2dcaafee-5037-4a97-942a-bcdd02bc2ad9", "name": "id", "type": "string", "value": "={{ $json.id }}"}, {"id": "b63f967d-ceea-4aa8-98b9-91f5ab21bfe8", "name": "filename", "type": "string", "value": "={{ $json.filename }}"}, {"id": "f611e749-054a-441d-8610-df8ba42de2e1", "name": "text", "type": "string", "value": "={{ $('Split all citations from a single message').item.json.text }}"}]}}, "typeVersion": 3.4, "alwaysOutputData": true}, {"id": "0e999a0e-76ed-4897-989b-228f075e9bfb", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [440, -60], "parameters": {"width": 200, "height": 220, "content": "### A file retrieval request contains a lot of information, and we want only the text that will be substituted and the file name.\n\n- id\n- filename\n- text\n"}, "typeVersion": 1}, {"id": "53c79a6c-7543-435f-b40e-966dff0904d4", "name": "Sticky Note5", "type": "n8n-nodes-base.stickyNote", "position": [700, -60], "parameters": {"width": 200, "height": 220, "content": "### With the last three splits, we may have many citations and texts to substitute. By doing an aggregation, it will be possible to handle everything as a single request."}, "typeVersion": 1}, {"id": "381fb6d6-64fc-4668-9d3c-98aaa43a45ca", "name": "Sticky Note6", "type": "n8n-nodes-base.stickyNote", "position": [960, -60], "parameters": {"height": 220, "content": "### This simple code will take all the previous files and citations and alter the original text, formatting the output. In this way, we can use Markdown tags to create links, or if you prefer, we can add an HTML transformation node."}, "typeVersion": 1}, {"id": "d0cbb943-57ab-4850-8370-1625610a852a", "name": "Optional Markdown to HTML", "type": "n8n-nodes-base.markdown", "disabled": true, "position": [1220, 120], "parameters": {"html": "={{ $json.output }}", "options": {}, "destinationKey": "output"}, "typeVersion": 1}, {"id": "589e2418-5dec-47d0-ba08-420d84f09da7", "name": "Finnaly format the output", "type": "n8n-nodes-base.code", "position": [980, 120], "parameters": {"mode": "runOnceForEachItem", "jsCode": "let saida = $('OpenAI Assistant with Vector Store').item.json.output;\n\nfor (let i of $input.item.json.data) {\n saida = saida.replaceAll(i.text, \" _(\"+ i.filename+\")_ \");\n}\n\n$input.item.json.output = saida;\nreturn $input.item;"}, "typeVersion": 2}]
{"Aggregate": {"main": [[{"node": "Finnaly format the output", "type": "main", "index": 0}]]}, "Regularize output": {"main": [[{"node": "Aggregate", "type": "main", "index": 0}]]}, "Window Buffer Memory": {"ai_memory": [[{"node": "OpenAI Assistant with Vector Store", "type": "ai_memory", "index": 0}]]}, "Get ALL Thread Content": {"main": [[{"node": "Split all message iterations from a thread", "type": "main", "index": 0}]]}, "Finnaly format the output": {"main": [[{"node": "Optional Markdown to HTML", "type": "main", "index": 0}]]}, "Retrieve file name from a file ID": {"main": [[{"node": "Regularize output", "type": "main", "index": 0}]]}, "OpenAI Assistant with Vector Store": {"main": [[{"node": "Get ALL Thread Content", "type": "main", "index": 0}]]}, "Split all content from a single message": {"main": [[{"node": "Split all citations from a single message", "type": "main", "index": 0}]]}, "Split all citations from a single message": {"main": [[{"node": "Retrieve file name from a file ID", "type": "main", "index": 0}]]}, "Split all message iterations from a thread": {"main": [[{"node": "Split all content from a single message", "type": "main", "index": 0}]]}, "Create a simple Trigger to have the Chat button within N8N": {"main": [[{"node": "OpenAI Assistant with Vector Store", "type": "main", "index": 0}]]}}
MicrosoftSQL:insert update executeQuery
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "07cfaafd-88a2-4563-9c2d-7ecfacc4a008"}, {"parameters": {"table": "TestTable", "columns": "id,content"}, "name": "Microsoft SQL", "type": "n8n-nodes-base.microsoftSql", "typeVersion": 1, "position": [550, 300], "credentials": {"microsoftSql": {"id": "98", "name": "Microsoft SQL"}}, "id": "e854f1b2-572c-4697-8597-aaa1cbfb06cb"}, {"parameters": {"values": {"string": [{"name": "content", "value": "=Content{{(new Date()).toISOString()}}"}], "number": [{"name": "id", "value": "={{Math.round(Math.random()*10000)}}"}]}, "options": {}}, "name": "Set", "type": "n8n-nodes-base.set", "typeVersion": 1, "position": [400, 300], "id": "59f67b24-0711-4944-aec9-b3470e58ef3a"}, {"parameters": {"operation": "update", "table": "TestTable", "columns": "id,content"}, "name": "Microsoft SQL1", "type": "n8n-nodes-base.microsoftSql", "typeVersion": 1, "position": [850, 300], "credentials": {"microsoftSql": {"id": "98", "name": "Microsoft SQL"}}, "id": "7dd65584-a631-4365-aa97-d1eac48055dd"}, {"parameters": {"values": {"string": [{"name": "content", "value": "=UpdatedContent{{(new Date()).toISOString()}}"}], "number": []}, "options": {}}, "name": "Set1", "type": "n8n-nodes-base.set", "typeVersion": 1, "position": [700, 300], "id": "a7177030-713f-456c-97d8-2d1eeeabacd8"}, {"parameters": {"operation": "executeQuery", "query": "=SELECT * FROM TestTable WHERE id={{$node[\"Set\"].json[\"id\"]}};"}, "name": "Microsoft SQL2", "type": "n8n-nodes-base.microsoftSql", "typeVersion": 1, "position": [1000, 300], "notesInFlow": true, "credentials": {"microsoftSql": {"id": "98", "name": "Microsoft SQL"}}, "notes": "Execute Query (SELECT one)", "id": "66a5e1da-49ef-4b2a-a505-6d42985c72d3"}, {"parameters": {"operation": "delete", "table": "TestTable"}, "name": "Microsoft SQL3", "type": "n8n-nodes-base.microsoftSql", "typeVersion": 1, "position": [1150, 300], "credentials": {"microsoftSql": {"id": "98", "name": "Microsoft SQL"}}, "id": "43594a06-313c-40f6-b454-7bf217d8dfb8"}, {"parameters": {"operation": "executeQuery", "query": "SELECT * FROM TestTable;"}, "name": "Microsoft SQL4", "type": "n8n-nodes-base.microsoftSql", "typeVersion": 1, "position": [1300, 300], "notesInFlow": true, "credentials": {"microsoftSql": {"id": "98", "name": "Microsoft SQL"}}, "notes": "Execute Query (SELECT All)", "id": "5c833fc6-917e-445b-b4bc-d7d2090c9e1a"}]
{"Microsoft SQL": {"main": [[{"node": "Set1", "type": "main", "index": 0}]]}, "Start": {"main": [[{"node": "Set", "type": "main", "index": 0}]]}, "Set": {"main": [[{"node": "Microsoft SQL", "type": "main", "index": 0}]]}, "Set1": {"main": [[{"node": "Microsoft SQL1", "type": "main", "index": 0}]]}, "Microsoft SQL1": {"main": [[{"node": "Microsoft SQL2", "type": "main", "index": 0}]]}, "Microsoft SQL2": {"main": [[{"node": "Microsoft SQL3", "type": "main", "index": 0}]]}, "Microsoft SQL3": {"main": [[{"node": "Microsoft SQL4", "type": "main", "index": 0}]]}}
[3/3] Anomaly detection tool (crops dataset)
[{"id": "e01bafec-eb24-44c7-b3c4-a60f91666350", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [-1200, 180], "parameters": {"color": 6, "width": 400, "height": 740, "content": "We are working here with crops dataset: \nExisting (so not anomalies) crops images in dataset are:\n- 'pearl_millet(bajra)',\n- 'tobacco-plant',\n- 'cherry',\n- 'cotton',\n- 'banana',\n- 'cucumber',\n- 'maize',\n- 'wheat',\n- 'clove',\n- 'jowar',\n- 'olive-tree',\n- 'soyabean',\n- 'coffee-plant',\n- 'rice',\n- 'lemon',\n- 'mustard-oil',\n- 'vigna-radiati(mung)',\n- 'coconut',\n- 'gram',\n- 'pineapple',\n- 'sugarcane',\n- 'sunflower',\n- 'chilli',\n- 'fox_nut(makhana)',\n- 'jute',\n- 'papaya',\n- 'tea',\n- 'cardamom',\n- 'almond'\n"}, "typeVersion": 1}, {"id": "b9943781-de1f-4129-9b81-ed836e9ebb11", "name": "Embed image", "type": "n8n-nodes-base.httpRequest", "position": [680, 60], "parameters": {"url": "https://api.voyageai.com/v1/multimodalembeddings", "method": "POST", "options": {}, "jsonBody": "={{\n{\n \"inputs\": [\n {\n \"content\": [\n {\n \"type\": \"image_url\",\n \"image_url\": $('Image URL hardcode').first().json.imageURL\n }\n ]\n }\n ],\n \"model\": \"voyage-multimodal-3\",\n \"input_type\": \"document\"\n}\n}}", "sendBody": true, "specifyBody": "json", "authentication": "genericCredentialType", "genericAuthType": "httpHeaderAuth"}, "credentials": {"httpHeaderAuth": {"id": "Vb0RNVDnIHmgnZOP", "name": "Voyage API"}}, "typeVersion": 4.2}, {"id": "47b72bc2-4817-48c6-b517-c1328e402468", "name": "Get similarity of medoids", "type": "n8n-nodes-base.httpRequest", "position": [940, 60], "parameters": {"url": "={{ $('Variables for medoids').first().json.qdrantCloudURL }}/collections/{{ $('Variables for medoids').first().json.collectionName }}/points/query", "method": "POST", "options": {}, "jsonBody": "={{\n{\n \"query\": $json.data[0].embedding,\n \"using\": \"voyage\",\n \"limit\": $('Info About Crop Labeled Clusters').first().json.cropsNumber,\n \"with_payload\": true,\n \"filter\": {\n \"must\": [\n { \n \"key\": $('Variables for medoids').first().json.clusterCenterType,\n \"match\": {\n \"value\": true\n }\n }\n ]\n }\n}\n}}", "sendBody": true, "specifyBody": "json", "authentication": "predefinedCredentialType", "nodeCredentialType": "qdrantApi"}, "credentials": {"qdrantApi": {"id": "it3j3hP9FICqhgX6", "name": "QdrantApi account"}}, "typeVersion": 4.2}, {"id": "42d7eb27-ec38-4406-b5c4-27eb45358e93", "name": "Compare scores", "type": "n8n-nodes-base.code", "position": [1140, 60], "parameters": {"language": "python", "pythonCode": "points = _input.first()['json']['result']['points']\nthreshold_type = _('Variables for medoids').first()['json']['clusterThresholdCenterType']\n\nmax_score = -1\ncrop_with_max_score = None\nundefined = True\n\nfor center in points:\n if center['score'] >= center['payload'][threshold_type]:\n undefined = False\n if center['score'] > max_score:\n max_score = center['score']\n crop_with_max_score = center['payload']['crop_name']\n\nif undefined:\n result_message = \"ALERT, we might have a new undefined crop!\"\nelse:\n result_message = f\"Looks similar to {crop_with_max_score}\"\n\nreturn [{\n \"json\": {\n \"result\": result_message\n }\n}]\n"}, "typeVersion": 2}, {"id": "23aa604a-ff0b-4948-bcd5-af39300198c0", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [-1200, -220], "parameters": {"width": 400, "height": 380, "content": "## Crop Anomaly Detection Tool\n### This is the tool that can be used directly for anomalous crops detection. \nIt takes as input (any) **image URL** and returns a **text message** telling if whatever this image depicts is anomalous to the crop dataset stored in Qdrant. \n\n* An Image URL is received via the Execute Workflow Trigger which is used to generate embedding vectors via the Voyage.ai Embeddings API.\n* The returned vectors are used to query the Qdrant collection to determine if the given crop is known by comparing it to **threshold scores** of each image class (crop type).\n* If the image scores lower than all thresholds, then the image is considered an anomaly for the dataset."}, "typeVersion": 1}, {"id": "3a79eca2-44f9-4aee-8a0d-9c7ca2f9149d", "name": "Variables for medoids", "type": "n8n-nodes-base.set", "position": [-200, 60], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "dbbc1e7b-c63e-4ff1-9524-8ef3e9f6cd48", "name": "clusterCenterType", "type": "string", "value": "is_medoid"}, {"id": "a994ce37-2530-4030-acfb-ec777a7ddb05", "name": "qdrantCloudURL", "type": "string", "value": "https://152bc6e2-832a-415c-a1aa-fb529f8baf8d.eu-central-1-0.aws.cloud.qdrant.io"}, {"id": "12f0a9e6-686d-416e-a61b-72d034ec21ba", "name": "collectionName", "type": "string", "value": "=agricultural-crops"}, {"id": "4c88a617-d44f-4776-b457-8a1dffb1d03c", "name": "clusterThresholdCenterType", "type": "string", "value": "is_medoid_cluster_threshold"}]}}, "typeVersion": 3.4}, {"id": "13b25434-bd66-4293-93f1-26c67b9ec7dd", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [-340, 260], "parameters": {"color": 6, "width": 360, "height": 200, "content": "**clusterCenterType** - either\n* \"is_text_anchor_medoid\" or\n* \"is_medoid\"\n\n\n**clusterThresholdCenterType** - either\n* \"is_text_anchor_medoid_cluster_threshold\" or\n* \"is_medoid_cluster_threshold\""}, "typeVersion": 1}, {"id": "869b0962-6cae-487d-8230-539a0cc4c14c", "name": "Info About Crop Labeled Clusters", "type": "n8n-nodes-base.set", "position": [440, 60], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "5327b254-b703-4a34-a398-f82edb1d6d6b", "name": "=cropsNumber", "type": "number", "value": "={{ $json.result.hits.length }}"}]}}, "typeVersion": 3.4}, {"id": "5d3956f8-f43b-439e-b176-a594a21d8011", "name": "Total Points in Collection", "type": "n8n-nodes-base.httpRequest", "position": [40, 60], "parameters": {"url": "={{ $json.qdrantCloudURL }}/collections/{{ $json.collectionName }}/points/count", "method": "POST", "options": {}, "jsonBody": "={\n \"exact\": true\n}", "sendBody": true, "specifyBody": "json", "authentication": "predefinedCredentialType", "nodeCredentialType": "qdrantApi"}, "credentials": {"qdrantApi": {"id": "it3j3hP9FICqhgX6", "name": "QdrantApi account"}}, "typeVersion": 4.2}, {"id": "14ba3db9-3965-4b20-b333-145616d45c3a", "name": "Each Crop Counts", "type": "n8n-nodes-base.httpRequest", "position": [240, 60], "parameters": {"url": "={{ $('Variables for medoids').first().json.qdrantCloudURL }}/collections/{{ $('Variables for medoids').first().json.collectionName }}/facet", "method": "POST", "options": {}, "jsonBody": "={{\n{\n \"key\": \"crop_name\",\n \"limit\": $json.result.count,\n \"exact\": true\n}\n}}", "sendBody": true, "specifyBody": "json", "authentication": "predefinedCredentialType", "nodeCredentialType": "qdrantApi"}, "credentials": {"qdrantApi": {"id": "it3j3hP9FICqhgX6", "name": "QdrantApi account"}}, "typeVersion": 4.2}, {"id": "e37c6758-0556-4a56-ab14-d4df663cb53a", "name": "Image URL hardcode", "type": "n8n-nodes-base.set", "position": [-480, 60], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "46ceba40-fb25-450c-8550-d43d8b8aa94c", "name": "imageURL", "type": "string", "value": "={{ $json.query.imageURL }}"}]}}, "typeVersion": 3.4}, {"id": "b24ad1a7-0cf8-4acc-9c18-6fe9d58b10f2", "name": "Execute Workflow Trigger", "type": "n8n-nodes-base.executeWorkflowTrigger", "position": [-720, 60], "parameters": {}, "typeVersion": 1}, {"id": "50424f2b-6831-41bf-8de4-81f69d901ce1", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [-240, -80], "parameters": {"width": 180, "height": 120, "content": "Variables to access Qdrant's collection we uploaded & prepared for anomaly detection in 2 previous pipelines\n"}, "typeVersion": 1}, {"id": "2e8ed3ca-1bba-4214-b34b-376a237842ff", "name": "Sticky Note5", "type": "n8n-nodes-base.stickyNote", "position": [40, -120], "parameters": {"width": 560, "height": 140, "content": "These three nodes are needed just to figure out how many different classes (crops) we have in our Qdrant collection: **cropsNumber** (needed in *\"Get similarity of medoids\"* node. \n[Note] *\"Total Points in Collection\"* -> *\"Each Crop Counts\"* were used&explained already in *\"[2/4] Set up medoids (2 types) for anomaly detection (crops dataset)\"* pipeline.\n"}, "typeVersion": 1}, {"id": "e2fa5763-6e97-4ff5-8919-1cb85a3c6968", "name": "Sticky Note6", "type": "n8n-nodes-base.stickyNote", "position": [620, 240], "parameters": {"height": 120, "content": "Here, we're embedding the image passed to this workflow tool with the Voyage embedding model to compare the image to all crop images in the database."}, "typeVersion": 1}, {"id": "cdb6b8d3-f7f4-4d66-850f-ce16c8ed98b9", "name": "Sticky Note7", "type": "n8n-nodes-base.stickyNote", "position": [920, 220], "parameters": {"width": 400, "height": 180, "content": "Checking how similar the image is to all the centres of clusters (crops).\nIf it's more similar to the thresholds we set up and stored in centres in the previous workflow, the image probably belongs to this crop class; otherwise, it's anomalous to the class. \nIf image is anomalous to all the classes, it's an anomaly."}, "typeVersion": 1}, {"id": "03b4699f-ba43-4f5f-ad69-6f81deea2641", "name": "Sticky Note22", "type": "n8n-nodes-base.stickyNote", "position": [-620, 580], "parameters": {"color": 4, "width": 540, "height": 300, "content": "### For anomaly detection\n1. The first pipeline is uploading (crops) dataset to Qdrant's collection.\n2. The second pipeline sets up cluster (class) centres in this Qdrant collection & cluster (class) threshold scores.\n3. **This is the anomaly detection tool, which takes any image as input and uses all preparatory work done with Qdrant (crops) collection.**\n\n### To recreate it\nYou'll have to upload [crops](https://www.kaggle.com/datasets/mdwaquarazam/agricultural-crops-image-classification) dataset from Kaggle to your own Google Storage bucket, and re-create APIs/connections to [Qdrant Cloud](https://qdrant.tech/documentation/quickstart-cloud/) (you can use **Free Tier** cluster), Voyage AI API & Google Cloud Storage\n\n**In general, pipelines are adaptable to any dataset of images**\n"}, "typeVersion": 1}]
{"Embed image": {"main": [[{"node": "Get similarity of medoids", "type": "main", "index": 0}]]}, "Each Crop Counts": {"main": [[{"node": "Info About Crop Labeled Clusters", "type": "main", "index": 0}]]}, "Image URL hardcode": {"main": [[{"node": "Variables for medoids", "type": "main", "index": 0}]]}, "Variables for medoids": {"main": [[{"node": "Total Points in Collection", "type": "main", "index": 0}]]}, "Execute Workflow Trigger": {"main": [[{"node": "Image URL hardcode", "type": "main", "index": 0}]]}, "Get similarity of medoids": {"main": [[{"node": "Compare scores", "type": "main", "index": 0}]]}, "Total Points in Collection": {"main": [[{"node": "Each Crop Counts", "type": "main", "index": 0}]]}, "Info About Crop Labeled Clusters": {"main": [[{"node": "Embed image", "type": "main", "index": 0}]]}}
Building Your First WhatsApp Chatbot (1)
[{"id": "77ee6494-4898-47dc-81d9-35daf6f0beea", "name": "WhatsApp Trigger", "type": "n8n-nodes-base.whatsAppTrigger", "position": [1360, -280], "webhookId": "aaa71f03-f7af-4d18-8d9a-0afb86f1b554", "parameters": {"updates": ["messages"]}, "credentials": {"whatsAppTriggerApi": {"id": "H3uYNtpeczKMqtYm", "name": "WhatsApp OAuth account"}}, "typeVersion": 1}, {"id": "57210e27-1f89-465a-98cc-43f890a4bf58", "name": "OpenAI Chat Model", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [1960, -200], "parameters": {"model": "gpt-4o-2024-08-06", "options": {}}, "credentials": {"openAiApi": {"id": "8gccIjcuf3gvaoEr", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "e1053235-0ade-4e36-9ad2-8b29c78fced8", "name": "Window Buffer Memory", "type": "@n8n/n8n-nodes-langchain.memoryBufferWindow", "position": [2080, -200], "parameters": {"sessionKey": "=whatsapp-75-{{ $json.messages[0].from }}", "sessionIdType": "customKey"}, "typeVersion": 1.2}, {"id": "69f1b78b-7c93-4713-863a-27e04809996f", "name": "Vector Store Tool", "type": "@n8n/n8n-nodes-langchain.toolVectorStore", "position": [2200, -200], "parameters": {"name": "query_product_brochure", "description": "Call this tool to query the product brochure. Valid for the year 2024."}, "typeVersion": 1}, {"id": "170e8f7d-7e14-48dd-9f80-5352cc411fc1", "name": "Embeddings OpenAI", "type": "@n8n/n8n-nodes-langchain.embeddingsOpenAi", "position": [2200, 80], "parameters": {"model": "text-embedding-3-small", "options": {}}, "credentials": {"openAiApi": {"id": "8gccIjcuf3gvaoEr", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "ee78320b-d407-49e8-b4b8-417582a44709", "name": "OpenAI Chat Model1", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [2440, -60], "parameters": {"model": "gpt-4o-2024-08-06", "options": {}}, "credentials": {"openAiApi": {"id": "8gccIjcuf3gvaoEr", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "9dd89378-5acf-4ca6-8d84-e6e64254ed02", "name": "When clicking \u2018Test workflow\u2019", "type": "n8n-nodes-base.manualTrigger", "position": [0, -240], "parameters": {}, "typeVersion": 1}, {"id": "e68fc137-1bcb-43f0-b597-3ae07f380c15", "name": "Embeddings OpenAI1", "type": "@n8n/n8n-nodes-langchain.embeddingsOpenAi", "position": [760, -20], "parameters": {"model": "text-embedding-3-small", "options": {}}, "credentials": {"openAiApi": {"id": "8gccIjcuf3gvaoEr", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "2d31e92b-18d4-4f6b-8cdb-bed0056d50d7", "name": "Default Data Loader", "type": "@n8n/n8n-nodes-langchain.documentDefaultDataLoader", "position": [900, -20], "parameters": {"options": {}, "jsonData": "={{ $('Extract from File').item.json.text }}", "jsonMode": "expressionData"}, "typeVersion": 1}, {"id": "ca0c015e-fba2-4dca-b0fe-bac66681725a", "name": "Recursive Character Text Splitter", "type": "@n8n/n8n-nodes-langchain.textSplitterRecursiveCharacterTextSplitter", "position": [900, 100], "parameters": {"options": {}, "chunkSize": 2000, "chunkOverlap": {}}, "typeVersion": 1}, {"id": "63abb6b2-b955-4e65-9c63-3211dca65613", "name": "Extract from File", "type": "n8n-nodes-base.extractFromFile", "position": [360, -240], "parameters": {"options": {}, "operation": "pdf"}, "typeVersion": 1}, {"id": "be2add9c-3670-4196-8c38-82742bf4f283", "name": "get Product Brochure", "type": "n8n-nodes-base.httpRequest", "position": [180, -240], "parameters": {"url": "https://usa.yamaha.com/files/download/brochure/1/1474881/Yamaha-Powered-Loudspeakers-brochure-2024-en-web.pdf", "options": {}}, "typeVersion": 4.2}, {"id": "1ae5a311-36d7-4454-ab14-6788d1331780", "name": "Reply To User", "type": "n8n-nodes-base.whatsApp", "position": [2820, -280], "parameters": {"textBody": "={{ $json.output }}", "operation": "send", "phoneNumberId": "477115632141067", "requestOptions": {}, "additionalFields": {"previewUrl": false}, "recipientPhoneNumber": "={{ $('WhatsApp Trigger').item.json.messages[0].from }}"}, "credentials": {"whatsAppApi": {"id": "9SFJPeqrpChOkAmw", "name": "WhatsApp account"}}, "typeVersion": 1}, {"id": "b6efba81-18b0-4378-bb91-51f39ca57f3e", "name": "Reply To User1", "type": "n8n-nodes-base.whatsApp", "position": [1760, 80], "parameters": {"textBody": "=I'm unable to process non-text messages. Please send only text messages. Thanks!", "operation": "send", "phoneNumberId": "477115632141067", "requestOptions": {}, "additionalFields": {"previewUrl": false}, "recipientPhoneNumber": "={{ $('WhatsApp Trigger').item.json.messages[0].from }}"}, "credentials": {"whatsAppApi": {"id": "9SFJPeqrpChOkAmw", "name": "WhatsApp account"}}, "typeVersion": 1}, {"id": "52decd86-ac6c-4d91-a938-86f93ec5f822", "name": "Product Catalogue", "type": "@n8n/n8n-nodes-langchain.vectorStoreInMemory", "position": [2200, -60], "parameters": {"memoryKey": "whatsapp-75"}, "typeVersion": 1}, {"id": "6dd5a652-2464-4ab8-8e5f-568529299523", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [-88.75, -473.4375], "parameters": {"color": 7, "width": 640.4375, "height": 434.6875, "content": "## 1. Download Product Brochure PDF\n[Read more about the HTTP Request Tool](https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.httprequest)\n\nImport your marketing PDF document to build your vector store. This will be used as the knowledgebase by the Sales AI Agent.\n\nFor this demonstration, we'll use the HTTP request node to import the YAMAHA POWERED LOUDSPEAKERS 2024 brochure ([Source](https://usa.yamaha.com/files/download/brochure/1/1474881/Yamaha-Powered-Loudspeakers-brochure-2024-en-web.pdf)) and an Extract from File node to extract the text contents. "}, "typeVersion": 1}, {"id": "116663bc-d8d6-41a5-93dc-b219adbb2235", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [580, -476], "parameters": {"color": 7, "width": 614.6875, "height": 731.1875, "content": "## 2. Create Product Brochure Vector Store\n[Read more about the In-Memory Vector Store](https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoreinmemory/)\n\nVector stores are powerful databases which serve the purpose of matching a user's questions to relevant parts of a document. By creating a vector store of our product catalog, we'll allow users to query using natural language.\n\nTo keep things simple, we'll use the **In-memory Vector Store** which comes built-in to n8n and doesn't require a separate service. For production deployments, I'd recommend replacing the in-memory vector store with either [Qdrant](https://qdrant.tech) or [Pinecone](https://pinecone.io)."}, "typeVersion": 1}, {"id": "86bd5334-d735-4650-aeff-06230119d705", "name": "Create Product Catalogue", "type": "@n8n/n8n-nodes-langchain.vectorStoreInMemory", "position": [760, -200], "parameters": {"mode": "insert", "memoryKey": "whatsapp-75", "clearStore": true}, "typeVersion": 1}, {"id": "b8078b0d-cbd7-423f-bb30-13902988be38", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [1254, -552], "parameters": {"color": 7, "width": 546.6875, "height": 484.1875, "content": "## 3. Use the WhatsApp Trigger\n[Learn more about the WhatsApp Trigger](https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.whatsapptrigger/)\n\nThe WhatsApp Trigger allows you to receive incoming WhatsApp messages from customers. It requires a bit of setup so remember to follow the documentation carefully! Once ready however, it's quite easy to build powerful workflows which are easily accessible to users.\n\nNote that WhatsApp can send many message types such as audio and video so in this demonstration, we'll filter them out and just accept the text messages."}, "typeVersion": 1}, {"id": "5bf7ed07-282b-4198-aa90-3e5ae5180404", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [1640, 280], "parameters": {"width": 338, "height": 92, "content": "### Want to handle all message types?\nCheck out my other WhatsApp template in my creator page! https://n8n.io/creators/jimleuk/"}, "typeVersion": 1}, {"id": "a3661b59-25d2-446e-8462-32b4d692b69d", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [1640, -40], "parameters": {"color": 7, "width": 337.6875, "height": 311.1875, "content": "### 3a. Handle Unsupported Message Types\nFor non-text messages, we'll just reply with a simple message to inform the sender."}, "typeVersion": 1}, {"id": "ea3c9ee1-505a-40e7-82fe-9169bdbb80af", "name": "Sticky Note5", "type": "n8n-nodes-base.stickyNote", "position": [1840, -682.5], "parameters": {"color": 7, "width": 746.6875, "height": 929.1875, "content": "## 4. Sales AI Agent Responds To Customers\n[Learn more about using AI Agents](https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent/)\n\nn8n's AI agents are powerful nodes which make it incredibly easy to use state-of-the-art AI in your workflows. Not only do they have the ability to remember conversations per individual customer but also tap into resources such as our product catalogue vector store to pull factual information and data for every question.\n\nIn this demonstration, we use an AI agent which is directed to help the user navigate the product brochure. A Chat memory subnode is attached to identify and keep track of the customer session. A Vector store tool is added to allow the Agent to tap into the product catalogue knowledgebase we built earlier."}, "typeVersion": 1}, {"id": "5c72df8d-bca1-4634-b1ed-61ffec8bd103", "name": "Sticky Note6", "type": "n8n-nodes-base.stickyNote", "position": [2620, -560], "parameters": {"color": 7, "width": 495.4375, "height": 484.1875, "content": "## 5. Repond to WhatsApp User\n[Learn more about the WhatsApp Node](https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.whatsapp/)\n\nThe WhatsApp node is the go-to if you want to interact with WhatsApp users. With this node, you can send text, images, audio and video messages as well as use your WhatsApp message templates.\n\nHere, we'll keep it simple by replying with a text message which is the output of the AI agent."}, "typeVersion": 1}, {"id": "48ec809f-ca0e-4052-b403-9ad7077b3fff", "name": "Sticky Note7", "type": "n8n-nodes-base.stickyNote", "position": [-520, -620], "parameters": {"width": 401.25, "height": 582.6283033962263, "content": "## Try It Out!\n\n### This n8n template builds a simple WhatsApp chabot acting as a Sales Agent. The Agent is backed by a product catalog vector store to better answer user's questions.\n\n* This template is in 2 parts: creating the product catalog vector store and building the WhatsApp AI chatbot.\n* A product brochure is imported via HTTP request node and its text contents extracted.\n* The text contents are then uploaded to the in-memory vector store to build a knowledgebase for the chatbot.\n* A WhatsApp trigger is used to capture messages from customers where non-text messages are filtered out.\n* The customer's message is sent to the AI Agent which queries the product catalogue using the vector store tool.\n* The Agent's response is sent back to the user via the WhatsApp node.\n\n### Need Help?\nJoin the [Discord](https://discord.com/invite/XPKeKXeB7d) or ask in the [Forum](https://community.n8n.io/)!"}, "typeVersion": 1}, {"id": "87cf9b41-66de-49a7-aeb0-c8809191b5a0", "name": "Handle Message Types", "type": "n8n-nodes-base.switch", "position": [1560, -280], "parameters": {"rules": {"values": [{"outputKey": "Supported", "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"operator": {"type": "string", "operation": "equals"}, "leftValue": "={{ $json.messages[0].type }}", "rightValue": "text"}]}, "renameOutput": true}, {"outputKey": "Not Supported", "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "89971d8c-a386-4e77-8f6c-f491a8e84cb6", "operator": {"type": "string", "operation": "notEquals"}, "leftValue": "={{ $json.messages[0].type }}", "rightValue": "text"}]}, "renameOutput": true}]}, "options": {}}, "typeVersion": 3.2}, {"id": "e52f0a50-0c34-4c4a-b493-4c42ba112277", "name": "Sticky Note8", "type": "n8n-nodes-base.stickyNote", "position": [-80, -20], "parameters": {"color": 5, "width": 345.10906976744184, "height": 114.53583720930231, "content": "### You only have to run this part once!\nRun this step to populate our product catalogue vector. Run again if you want to update the vector store with a new version."}, "typeVersion": 1}, {"id": "c1a7d6d1-191e-4343-af9f-f2c9eb4ecf49", "name": "Sticky Note9", "type": "n8n-nodes-base.stickyNote", "position": [1260, -40], "parameters": {"color": 5, "width": 364.6293255813954, "height": 107.02804651162779, "content": "### Activate your workflow to use!\nTo start using the WhatsApp chatbot, you'll need to activate the workflow. If you are self-hosting ensure WhatsApp is able to connect to your server."}, "typeVersion": 1}, {"id": "a36524d0-22a6-48cc-93fe-b4571cec428a", "name": "AI Sales Agent", "type": "@n8n/n8n-nodes-langchain.agent", "position": [1960, -400], "parameters": {"text": "={{ $json.messages[0].text.body }}", "options": {"systemMessage": "You are an assistant working for a company who sells Yamaha Powered Loudspeakers and helping the user navigate the product catalog for the year 2024. Your goal is not to facilitate a sale but if the user enquires, direct them to the appropriate website, url or contact information.\n\nDo your best to answer any questions factually. If you don't know the answer or unable to obtain the information from the datastore, then tell the user so."}, "promptType": "define"}, "typeVersion": 1.6}]
{"AI Sales Agent": {"main": [[{"node": "Reply To User", "type": "main", "index": 0}]]}, "WhatsApp Trigger": {"main": [[{"node": "Handle Message Types", "type": "main", "index": 0}]]}, "Embeddings OpenAI": {"ai_embedding": [[{"node": "Product Catalogue", "type": "ai_embedding", "index": 0}]]}, "Extract from File": {"main": [[{"node": "Create Product Catalogue", "type": "main", "index": 0}]]}, "OpenAI Chat Model": {"ai_languageModel": [[{"node": "AI Sales Agent", "type": "ai_languageModel", "index": 0}]]}, "Product Catalogue": {"ai_vectorStore": [[{"node": "Vector Store Tool", "type": "ai_vectorStore", "index": 0}]]}, "Vector Store Tool": {"ai_tool": [[{"node": "AI Sales Agent", "type": "ai_tool", "index": 0}]]}, "Embeddings OpenAI1": {"ai_embedding": [[{"node": "Create Product Catalogue", "type": "ai_embedding", "index": 0}]]}, "OpenAI Chat Model1": {"ai_languageModel": [[{"node": "Vector Store Tool", "type": "ai_languageModel", "index": 0}]]}, "Default Data Loader": {"ai_document": [[{"node": "Create Product Catalogue", "type": "ai_document", "index": 0}]]}, "Handle Message Types": {"main": [[{"node": "AI Sales Agent", "type": "main", "index": 0}], [{"node": "Reply To User1", "type": "main", "index": 0}]]}, "Window Buffer Memory": {"ai_memory": [[{"node": "AI Sales Agent", "type": "ai_memory", "index": 0}]]}, "get Product Brochure": {"main": [[{"node": "Extract from File", "type": "main", "index": 0}]]}, "Recursive Character Text Splitter": {"ai_textSplitter": [[{"node": "Default Data Loader", "type": "ai_textSplitter", "index": 0}]]}, "When clicking \u2018Test workflow\u2019": {"main": [[{"node": "get Product Brochure", "type": "main", "index": 0}]]}}
Telegram Bot with Supabase memory and OpenAI assistant integration
[{"id": "9cc26a42-eb43-40c4-b507-cbaf187a5e15", "name": "Get New Message", "type": "n8n-nodes-base.telegramTrigger", "position": [1120, 500], "webhookId": "464f0a75-56d1-402f-8b12-b358452e9736", "parameters": {"updates": ["message"], "additionalFields": {}}, "credentials": {"telegramApi": {"id": "rI0zyfIYVIyXt2fL", "name": "Telegram Club"}}, "typeVersion": 1.1}, {"id": "098b6fcf-7cb6-4730-8892-949fedc946b3", "name": "OPENAI - Create thread", "type": "n8n-nodes-base.httpRequest", "position": [1740, 640], "parameters": {"url": "https://api.openai.com/v1/threads", "method": "POST", "options": {}, "sendHeaders": true, "authentication": "predefinedCredentialType", "headerParameters": {"parameters": [{"name": "OpenAI-Beta", "value": "assistants=v2"}]}, "nodeCredentialType": "openAiApi"}, "credentials": {"openAiApi": {"id": "zJhr5piyEwVnWtaI", "name": "OpenAi club"}}, "typeVersion": 4.2}, {"id": "fa157f8c-b776-4b20-bfaf-c17460383505", "name": "Create User", "type": "n8n-nodes-base.supabase", "position": [1900, 640], "parameters": {"tableId": "telegram_users", "fieldsUi": {"fieldValues": [{"fieldId": "telegram_id", "fieldValue": "={{ $('Get New Message').item.json.message.chat.id }}"}, {"fieldId": "openai_thread_id", "fieldValue": "={{ $('OPENAI - Create thread').item.json.id }}"}]}}, "credentials": {"supabaseApi": {"id": "QBhcokohbJHfQZ9A", "name": "Supabase club"}}, "typeVersion": 1}, {"id": "115e417f-5962-409b-8adf-ff236eb9ce2e", "name": "Merge", "type": "n8n-nodes-base.merge", "position": [2080, 500], "parameters": {}, "typeVersion": 3}, {"id": "ba5c7385-8c80-43c8-9de2-430175bda70b", "name": "OPENAI - Send message", "type": "n8n-nodes-base.httpRequest", "position": [2240, 500], "parameters": {"url": "=https://api.openai.com/v1/threads/{{ $('Merge').item.json.openai_thread_id }}/messages ", "method": "POST", "options": {}, "sendBody": true, "sendHeaders": true, "authentication": "predefinedCredentialType", "bodyParameters": {"parameters": [{"name": "role", "value": "user"}, {"name": "content", "value": "={{ $('Get New Message').item.json.message.text }}"}]}, "headerParameters": {"parameters": [{"name": "OpenAI-Beta", "value": "assistants=v2"}]}, "nodeCredentialType": "openAiApi"}, "credentials": {"openAiApi": {"id": "fLfRtaXbR0EVD0pl", "name": "OpenAi account"}}, "typeVersion": 4.2}, {"id": "024832bc-3d42-4879-a57f-b23e962b4c69", "name": "OPENAI - Run assistant", "type": "n8n-nodes-base.httpRequest", "position": [2440, 500], "parameters": {"url": "=https://api.openai.com/v1/threads/{{ $('Merge').item.json.openai_thread_id }}/runs", "method": "POST", "options": {}, "sendBody": true, "sendHeaders": true, "authentication": "predefinedCredentialType", "bodyParameters": {"parameters": [{"name": "assistant_id", "value": "asst_b0QhuzySG6jofHFdzPZD7WEz"}, {"name": "stream", "value": "={{true}}"}]}, "headerParameters": {"parameters": [{"name": "OpenAI-Beta", "value": "assistants=v2"}]}, "nodeCredentialType": "openAiApi"}, "credentials": {"openAiApi": {"id": "fLfRtaXbR0EVD0pl", "name": "OpenAi account"}}, "typeVersion": 4.2}, {"id": "bc191e2b-15f4-45b7-af2e-19ed1639b7f5", "name": "OPENAI - Get messages", "type": "n8n-nodes-base.httpRequest", "position": [2640, 500], "parameters": {"url": "=https://api.openai.com/v1/threads/{{ $('Merge').item.json.openai_thread_id }}/messages", "options": {}, "sendHeaders": true, "authentication": "predefinedCredentialType", "headerParameters": {"parameters": [{"name": "OpenAI-Beta", "value": "assistants=v2"}]}, "nodeCredentialType": "openAiApi"}, "credentials": {"openAiApi": {"id": "zJhr5piyEwVnWtaI", "name": "OpenAi club"}}, "typeVersion": 4.2}, {"id": "c22e05e5-f0a7-4a09-a864-acfc58469b30", "name": "Send Message to User", "type": "n8n-nodes-base.telegram", "position": [2840, 500], "parameters": {"text": "={{ $('OPENAI - Get messages').item.json.data[0].content[0].text.value }}", "chatId": "={{ $('Get New Message').item.json.message.chat.id }}", "additionalFields": {"appendAttribution": false}}, "credentials": {"telegramApi": {"id": "rI0zyfIYVIyXt2fL", "name": "Telegram Club"}}, "typeVersion": 1.2}, {"id": "0673be1f-3cae-42a0-9c62-1ed570859043", "name": "If User exists", "type": "n8n-nodes-base.if", "position": [1560, 500], "parameters": {"options": {}, "conditions": {"options": {"leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "b6e69a1f-eb42-4ef6-b80c-3167f1b8c830", "operator": {"type": "string", "operation": "exists", "singleValue": true}, "leftValue": "={{ $json.id }}", "rightValue": ""}]}}, "typeVersion": 2.1}, {"id": "a4916f54-ae6b-495d-979b-92dca965e3bb", "name": "Find User", "type": "n8n-nodes-base.supabase", "position": [1360, 500], "parameters": {"filters": {"conditions": [{"keyName": "telegram_id", "keyValue": "={{ $json.message.chat.id }}", "condition": "eq"}]}, "tableId": "telegram_users", "operation": "getAll"}, "credentials": {"supabaseApi": {"id": "QBhcokohbJHfQZ9A", "name": "Supabase club"}}, "typeVersion": 1, "alwaysOutputData": true}, {"id": "6d01d7ed-e96b-47cf-9a5f-46608031baa2", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [1300, 800], "parameters": {"color": 7, "width": 600.723278204605, "height": 213.15921994594194, "content": "SQL query to create table in Supabase:\n\n```\ncreate table\n public.telegram_users (\n id uuid not null default gen_random_uuid (),\n date_created timestamp with time zone not null default (now() at time zone 'utc'::text),\n telegram_id bigint null,\n openai_thread_id text null,\n constraint telegram_users_pkey primary key (id)\n ) tablespace pg_default;\n```"}, "typeVersion": 1}, {"id": "1a996da0-6022-48d7-ba40-1d137547a3d7", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [2340, 360], "parameters": {"color": 3, "width": 282.075050779723, "height": 80, "content": "Create assistant in [OpenAI](https://platform.openai.com/assistants).\n\n**Specify own assistant id here**\n"}, "typeVersion": 1}, {"id": "b24d2008-7950-41f0-a7fa-50360c0c6854", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [1040, 380], "parameters": {"color": 3, "width": 235.09282368774151, "height": 80, "content": "Create own Telegram bot in [Botfather bot](https://t.me/botfather)"}, "typeVersion": 1}, {"id": "9eb2491e-5ad9-4015-8ed9-611e72924503", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [1300, 680], "parameters": {"color": 3, "height": 80, "content": "Create table in [Supabase](https://supabase.com) with SQL query"}, "typeVersion": 1}, {"id": "884b5a1b-007c-4752-becc-46c8fc58db92", "name": "Sticky Note5", "type": "n8n-nodes-base.stickyNote", "position": [200, 120], "parameters": {"color": 7, "width": 280.2462120317618, "height": 438.5821431288714, "content": "### Set up steps\n1. **Create a Telegram Bot** using the [Botfather](https://t.me/botfather) and obtain the bot token.\n2. **Set up Supabase:**\n\t1. Create a new project and generate a ```SUPABASE_URL``` and ```SUPABASE_KEY```.\n\t2. Create a new table named ```telegram_users``` with the following SQL query:\n```\ncreate table\n public.telegram_users (\n id uuid not null default gen_random_uuid (),\n date_created timestamp with time zone not null default (now() at time zone 'utc'::text),\n telegram_id bigint null,\n openai_thread_id text null,\n constraint telegram_users_pkey primary key (id)\n ) tablespace pg_default;\n```\n3. **OpenAI Setup:**\n\t1. Create an OpenAI assistant and obtain the ```OPENAI_API_KEY```.\n\t2. Customize your assistant\u2019s personality or use cases according to your requirements.\n4. **Environment Configuration in n8n:**\n\t1. Configure the Telegram, Supabase, and OpenAI nodes with the appropriate credentials.\n\t2. Set up triggers for receiving messages and handling conversation logic.\n\t3. Set up OpenAI assistant ID in \"++OPENAI - Run assistant++\" node."}, "typeVersion": 1}, {"id": "02db77ac-4909-4a56-a558-03c86d8b8552", "name": "Sticky Note6", "type": "n8n-nodes-base.stickyNote", "position": [200, -400], "parameters": {"color": 7, "width": 636.2128494576581, "height": 494.9629292914819, "content": "![5min Logo](https://cflobdhpqwnoisuctsoc.supabase.co/storage/v1/object/public/my_storage/Untitled%20(1500%20x%20300%20px).png)\n## AI Telegram Bot with Supabase memory\n**Made by [Mark Shcherbakov](https://www.linkedin.com/in/marklowcoding/) from community [5minAI](https://www.skool.com/5minai-2861)**\n\nMany simple chatbots lack context awareness and user memory. This workflow solves that by integrating Supabase to keep track of user sessions (via ```telegram_id``` and ```openai_thread_id```), allowing the bot to maintain continuity and context in conversations, leading to a more human-like and engaging experience.\n\nThis Telegram bot template connects with OpenAI to answer user queries while storing and retrieving user information from a Supabase database. The memory component ensures that the bot can reference past interactions, making it suitable for use cases such as customer support, virtual assistants, or any application where context retention is crucial.\n\n"}, "typeVersion": 1}, {"id": "a991a7c9-ea5f-4a25-aa92-6dc2fce11b05", "name": "Sticky Note7", "type": "n8n-nodes-base.stickyNote", "position": [500, 120], "parameters": {"color": 7, "width": 330.5152611046425, "height": 240.6839895136402, "content": "### ... or watch set up video [5 min]\n[![Youtube Thumbnail](https://cflobdhpqwnoisuctsoc.supabase.co/storage/v1/object/public/my_storage/Youtube%20thumb%20(3).png)](https://www.youtube.com/watch?v=kS41gut8l0g)\n"}, "typeVersion": 1}]
{"Merge": {"main": [[{"node": "OPENAI - Send message", "type": "main", "index": 0}]]}, "Find User": {"main": [[{"node": "If User exists", "type": "main", "index": 0}]]}, "Create User": {"main": [[{"node": "Merge", "type": "main", "index": 1}]]}, "If User exists": {"main": [[{"node": "Merge", "type": "main", "index": 0}], [{"node": "OPENAI - Create thread", "type": "main", "index": 0}]]}, "Get New Message": {"main": [[{"node": "Find User", "type": "main", "index": 0}]]}, "OPENAI - Get messages": {"main": [[{"node": "Send Message to User", "type": "main", "index": 0}]]}, "OPENAI - Send message": {"main": [[{"node": "OPENAI - Run assistant", "type": "main", "index": 0}]]}, "OPENAI - Create thread": {"main": [[{"node": "Create User", "type": "main", "index": 0}]]}, "OPENAI - Run assistant": {"main": [[{"node": "OPENAI - Get messages", "type": "main", "index": 0}]]}}
Email Subscription Service with n8n Forms, Airtable and AI
[{"id": "4dd52c72-9a9b-4db4-8de5-5b12b1e5c4be", "name": "Schedule Trigger", "type": "n8n-nodes-base.scheduleTrigger", "position": [180, 1480], "parameters": {"rule": {"interval": [{"triggerAtHour": 9}]}}, "typeVersion": 1.2}, {"id": "9226181c-b84c-4ea1-a5b4-eedb6c62037b", "name": "Search daily", "type": "n8n-nodes-base.airtable", "position": [440, 1480], "parameters": {"base": {"__rl": true, "mode": "list", "value": "appL3dptT6ZTSzY9v", "cachedResultUrl": "https://airtable.com/appL3dptT6ZTSzY9v", "cachedResultName": "Scheduled Emails"}, "table": {"__rl": true, "mode": "list", "value": "tblzR9vSuFUzlQNMI", "cachedResultUrl": "https://airtable.com/appL3dptT6ZTSzY9v/tblzR9vSuFUzlQNMI", "cachedResultName": "Table 1"}, "options": {}, "operation": "search", "filterByFormula": "AND({Status} = 'active', {Interval} = 'daily')"}, "credentials": {"airtableTokenApi": {"id": "Und0frCQ6SNVX3VV", "name": "Airtable Personal Access Token account"}}, "typeVersion": 2.1}, {"id": "1a3b6224-2f66-41c6-8b3d-be286cf16370", "name": "Search weekly", "type": "n8n-nodes-base.airtable", "position": [440, 1660], "parameters": {"base": {"__rl": true, "mode": "list", "value": "appL3dptT6ZTSzY9v", "cachedResultUrl": "https://airtable.com/appL3dptT6ZTSzY9v", "cachedResultName": "Scheduled Emails"}, "table": {"__rl": true, "mode": "list", "value": "tblzR9vSuFUzlQNMI", "cachedResultUrl": "https://airtable.com/appL3dptT6ZTSzY9v/tblzR9vSuFUzlQNMI", "cachedResultName": "Table 1"}, "options": {}, "operation": "search", "filterByFormula": "=AND(\n {Status} = 'active', \n {Interval} = 'weekly', \n {Last Sent} <= DATEADD(TODAY(), -7, 'days')\n)"}, "credentials": {"airtableTokenApi": {"id": "Und0frCQ6SNVX3VV", "name": "Airtable Personal Access Token account"}}, "typeVersion": 2.1}, {"id": "1ea47e14-0a28-4780-95c7-31e24eb724d5", "name": "confirmation email1", "type": "n8n-nodes-base.gmail", "position": [620, 820], "webhookId": "dd8bd6df-2013-4f8d-a2cc-cd9b3913e3d2", "parameters": {"sendTo": "={{ $('Subscribe Form').item.json.email }}", "message": "=This is to confirm your request to subscribe to \"Learn something every day!\" - a free service to send you facts about your favourite topics.\n\nTopic: {{ $('Subscribe Form').item.json.topic }}\nSchedule: {{ $('Subscribe Form').item.json.frequency }}", "options": {"appendAttribution": false}, "subject": "Learn something every day confirmation"}, "credentials": {"gmailOAuth2": {"id": "Sf5Gfl9NiFTNXFWb", "name": "Gmail account"}}, "typeVersion": 2.1}, {"id": "d95262af-1b52-4f9c-8346-183b4eee8544", "name": "Execute Workflow", "type": "n8n-nodes-base.executeWorkflow", "position": [1140, 1480], "parameters": {"mode": "each", "options": {"waitForSubWorkflow": false}, "workflowId": {"__rl": true, "mode": "id", "value": "={{ $workflow.id }}"}}, "typeVersion": 1.1}, {"id": "075292af-7a66-4275-ac2d-3c392189a10c", "name": "Create Event", "type": "n8n-nodes-base.set", "position": [980, 1480], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "b28a0142-a028-471a-8180-9883e930feea", "name": "email", "type": "string", "value": "={{ $json.Email }}"}, {"id": "970f5495-05df-42b6-a422-b2ac27f8eb95", "name": "topic", "type": "string", "value": "={{ $json.Topic }}"}, {"id": "e871c431-948f-4b80-aa17-1e4266674663", "name": "interval", "type": "string", "value": "={{ $json.Interval }}"}, {"id": "9b72597d-1446-4ef3-86e5-0a071c69155b", "name": "id", "type": "string", "value": "={{ $json.id }}"}, {"id": "b17039c2-14a2-4811-9528-88ae963e44f7", "name": "created_at", "type": "string", "value": "={{ $json.Created }}"}]}}, "typeVersion": 3.4}, {"id": "28776aaf-6bd9-4f9f-bcf0-3d4401a74219", "name": "Execute Workflow Trigger", "type": "n8n-nodes-base.executeWorkflowTrigger", "position": [1360, 1480], "parameters": {}, "typeVersion": 1}, {"id": "0eb62e75-228b-452b-80ab-f9ef3ad33204", "name": "Unsubscribe Form", "type": "n8n-nodes-base.formTrigger", "position": [180, 1160], "webhookId": "e64db96d-5e61-40d5-88fb-761621a829ab", "parameters": {"options": {"path": "free-factoids-unsubscribe"}, "formTitle": "Unsubscribe from Learn Something Every Day", "formFields": {"values": [{"fieldLabel": "ID", "requiredField": true}, {"fieldType": "dropdown", "fieldLabel": "Reason For Unsubscribe", "multiselect": true, "fieldOptions": {"values": [{"option": "Emails not relevant"}, {"option": "Too many Emails"}, {"option": "I did not sign up to this service"}]}}]}, "formDescription": "We're sorry to see you go! Please take a moment to help us improve the service."}, "typeVersion": 2.2}, {"id": "f889efe9-dc3c-428b-ad8e-4f7d17f23e75", "name": "Set Email Vars", "type": "n8n-nodes-base.set", "position": [2500, 1480], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "62a684fb-16f9-4326-8eeb-777d604b305a", "name": "to", "type": "string", "value": "={{ $('Execute Workflow Trigger').first().json.email }},jim@height.io"}, {"id": "4270849e-c805-4580-9088-e8d1c3ef2fb4", "name": "subject", "type": "string", "value": "=Your {{ $('Execute Workflow Trigger').first().json.interval }} factoid"}, {"id": "81d0e897-2496-4a3c-b16c-9319338f899f", "name": "message", "type": "string", "value": "=<p>\n<strong>You asked about \"{{ $('Execution Data').first().json.topic.replace('\"','') }}\"</strong>\n</p>\n<p>\n<i>{{ $('Content Generation Agent').first().json.output }}</i>\n</p>"}, {"id": "ee05de7b-5342-4deb-8118-edaf235d92cc", "name": "unsubscribe_link", "type": "string", "value": "=https://<MY_HOST>/form/inspiration-unsubscribe?ID={{ $('Execute Workflow Trigger').first().json.id }}"}]}, "includeOtherFields": true}, "typeVersion": 3.4}, {"id": "84741e6d-f5be-440d-8633-4eb30ccce170", "name": "Log Last Sent", "type": "n8n-nodes-base.airtable", "position": [2860, 1480], "parameters": {"base": {"__rl": true, "mode": "list", "value": "appL3dptT6ZTSzY9v", "cachedResultUrl": "https://airtable.com/appL3dptT6ZTSzY9v", "cachedResultName": "Scheduled Emails"}, "table": {"__rl": true, "mode": "list", "value": "tblzR9vSuFUzlQNMI", "cachedResultUrl": "https://airtable.com/appL3dptT6ZTSzY9v/tblzR9vSuFUzlQNMI", "cachedResultName": "Table 1"}, "columns": {"value": {"id": "={{ $('Execute Workflow Trigger').first().json.id }}", "Last Sent": "2024-11-29T13:34:11"}, "schema": [{"id": "id", "type": "string", "display": true, "removed": false, "readOnly": true, "required": false, "displayName": "id", "defaultMatch": true}, {"id": "Name", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Name", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Email", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Email", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Status", "type": "options", "display": true, "options": [{"name": "inactive", "value": "inactive"}, {"name": "active", "value": "active"}], "removed": true, "readOnly": false, "required": false, "displayName": "Status", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Interval", "type": "options", "display": true, "options": [{"name": "daily", "value": "daily"}, {"name": "weekly", "value": "weekly"}, {"name": "surprise", "value": "surprise"}], "removed": true, "readOnly": false, "required": false, "displayName": "Interval", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Start Day", "type": "options", "display": true, "options": [{"name": "Mon", "value": "Mon"}, {"name": "Tue", "value": "Tue"}, {"name": "Wed", "value": "Wed"}, {"name": "Thu", "value": "Thu"}, {"name": "Fri", "value": "Fri"}, {"name": "Sat", "value": "Sat"}, {"name": "Sun", "value": "Sun"}], "removed": true, "readOnly": false, "required": false, "displayName": "Start Day", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Topic", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Topic", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Created", "type": "string", "display": true, "removed": true, "readOnly": true, "required": false, "displayName": "Created", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Last Modified", "type": "string", "display": true, "removed": true, "readOnly": true, "required": false, "displayName": "Last Modified", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Last Sent", "type": "dateTime", "display": true, "removed": false, "readOnly": false, "required": false, "displayName": "Last Sent", "defaultMatch": false, "canBeUsedToMatch": true}], "mappingMode": "defineBelow", "matchingColumns": ["id"]}, "options": {}, "operation": "update"}, "credentials": {"airtableTokenApi": {"id": "Und0frCQ6SNVX3VV", "name": "Airtable Personal Access Token account"}}, "typeVersion": 2.1}, {"id": "88f864d6-13fb-4f09-b22d-030d016678e1", "name": "Search surprise", "type": "n8n-nodes-base.airtable", "position": [440, 1840], "parameters": {"base": {"__rl": true, "mode": "list", "value": "appL3dptT6ZTSzY9v", "cachedResultUrl": "https://airtable.com/appL3dptT6ZTSzY9v", "cachedResultName": "Scheduled Emails"}, "table": {"__rl": true, "mode": "list", "value": "tblzR9vSuFUzlQNMI", "cachedResultUrl": "https://airtable.com/appL3dptT6ZTSzY9v/tblzR9vSuFUzlQNMI", "cachedResultName": "Table 1"}, "options": {}, "operation": "search", "filterByFormula": "=AND(\n {Status} = 'active', \n {Interval} = 'surprise'\n)"}, "credentials": {"airtableTokenApi": {"id": "Und0frCQ6SNVX3VV", "name": "Airtable Personal Access Token account"}}, "typeVersion": 2.1}, {"id": "28238d9a-7bc0-4a22-bb4e-a7a2827e4da3", "name": "Should Send = True", "type": "n8n-nodes-base.filter", "position": [800, 1840], "parameters": {"options": {}, "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "9aaf9ae2-8f96-443a-8294-c04270296b22", "operator": {"type": "boolean", "operation": "true", "singleValue": true}, "leftValue": "={{ $json.should_send }}", "rightValue": ""}]}}, "typeVersion": 2.2}, {"id": "3a46dd3d-48a6-40ca-8823-0516aa9f73a4", "name": "Should Send?", "type": "n8n-nodes-base.code", "position": [620, 1840], "parameters": {"mode": "runOnceForEachItem", "jsCode": "const luckyPick = Math.floor(Math.random() * 10) + 1;\n$input.item.json.should_send = luckyPick == 8;\nreturn $input.item;"}, "typeVersion": 2}, {"id": "3611da19-920b-48e6-84a4-f7be0b3a78fc", "name": "Create Subscriber", "type": "n8n-nodes-base.airtable", "position": [440, 820], "parameters": {"base": {"__rl": true, "mode": "list", "value": "appL3dptT6ZTSzY9v", "cachedResultUrl": "https://airtable.com/appL3dptT6ZTSzY9v", "cachedResultName": "Scheduled Emails"}, "table": {"__rl": true, "mode": "list", "value": "tblzR9vSuFUzlQNMI", "cachedResultUrl": "https://airtable.com/appL3dptT6ZTSzY9v/tblzR9vSuFUzlQNMI", "cachedResultName": "Table 1"}, "columns": {"value": {"Email": "={{ $json.email }}", "Topic": "={{ $json.topic }}", "Status": "active", "Interval": "={{ $json.frequency }}", "Start Day": "={{ $json.submittedAt.toDateTime().format('EEE') }}"}, "schema": [{"id": "Name", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Name", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Email", "type": "string", "display": true, "removed": false, "readOnly": false, "required": false, "displayName": "Email", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Status", "type": "options", "display": true, "options": [{"name": "inactive", "value": "inactive"}, {"name": "active", "value": "active"}], "removed": false, "readOnly": false, "required": false, "displayName": "Status", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Interval", "type": "options", "display": true, "options": [{"name": "daily", "value": "daily"}, {"name": "weekly", "value": "weekly"}, {"name": "surprise", "value": "surprise"}], "removed": false, "readOnly": false, "required": false, "displayName": "Interval", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Start Day", "type": "options", "display": true, "options": [{"name": "Mon", "value": "Mon"}, {"name": "Tue", "value": "Tue"}, {"name": "Wed", "value": "Wed"}, {"name": "Thu", "value": "Thu"}, {"name": "Fri", "value": "Fri"}, {"name": "Sat", "value": "Sat"}, {"name": "Sun", "value": "Sun"}], "removed": false, "readOnly": false, "required": false, "displayName": "Start Day", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Topic", "type": "string", "display": true, "removed": false, "readOnly": false, "required": false, "displayName": "Topic", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Created", "type": "string", "display": true, "removed": true, "readOnly": true, "required": false, "displayName": "Created", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Last Modified", "type": "string", "display": true, "removed": true, "readOnly": true, "required": false, "displayName": "Last Modified", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Last Sent", "type": "dateTime", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Last Sent", "defaultMatch": false, "canBeUsedToMatch": true}], "mappingMode": "defineBelow", "matchingColumns": ["Email"]}, "options": {}, "operation": "upsert"}, "credentials": {"airtableTokenApi": {"id": "Und0frCQ6SNVX3VV", "name": "Airtable Personal Access Token account"}}, "typeVersion": 2.1}, {"id": "2213a81f-53a9-4142-9586-e87b88710eec", "name": "Update Subscriber", "type": "n8n-nodes-base.airtable", "position": [440, 1160], "parameters": {"base": {"__rl": true, "mode": "list", "value": "appL3dptT6ZTSzY9v", "cachedResultUrl": "https://airtable.com/appL3dptT6ZTSzY9v", "cachedResultName": "Scheduled Emails"}, "table": {"__rl": true, "mode": "list", "value": "tblzR9vSuFUzlQNMI", "cachedResultUrl": "https://airtable.com/appL3dptT6ZTSzY9v/tblzR9vSuFUzlQNMI", "cachedResultName": "Table 1"}, "columns": {"value": {"id": "={{ $json.ID }}", "Status": "inactive"}, "schema": [{"id": "id", "type": "string", "display": true, "removed": false, "readOnly": true, "required": false, "displayName": "id", "defaultMatch": true}, {"id": "Name", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Name", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Email", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Email", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Status", "type": "options", "display": true, "options": [{"name": "inactive", "value": "inactive"}, {"name": "active", "value": "active"}], "removed": false, "readOnly": false, "required": false, "displayName": "Status", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Interval", "type": "options", "display": true, "options": [{"name": "daily", "value": "daily"}, {"name": "weekly", "value": "weekly"}], "removed": true, "readOnly": false, "required": false, "displayName": "Interval", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Start Day", "type": "options", "display": true, "options": [{"name": "Mon", "value": "Mon"}, {"name": "Tue", "value": "Tue"}, {"name": "Wed", "value": "Wed"}, {"name": "Thu", "value": "Thu"}, {"name": "Fri", "value": "Fri"}, {"name": "Sat", "value": "Sat"}, {"name": "Sun", "value": "Sun"}], "removed": true, "readOnly": false, "required": false, "displayName": "Start Day", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Topic", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Topic", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Created", "type": "string", "display": true, "removed": true, "readOnly": true, "required": false, "displayName": "Created", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Last Modified", "type": "string", "display": true, "removed": true, "readOnly": true, "required": false, "displayName": "Last Modified", "defaultMatch": false, "canBeUsedToMatch": true}], "mappingMode": "defineBelow", "matchingColumns": ["id"]}, "options": {}, "operation": "update"}, "credentials": {"airtableTokenApi": {"id": "Und0frCQ6SNVX3VV", "name": "Airtable Personal Access Token account"}}, "typeVersion": 2.1}, {"id": "c94ec18b-e0cf-4859-8b89-23abdd63739c", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [900, 1280], "parameters": {"color": 7, "width": 335, "height": 173, "content": "### 4. Using Subworkflows to run executions concurrently\nThis configuration is desired when sequential execution is slow and unnecessary. Also if one email fails, it doesn't fail the execution for everyone else."}, "typeVersion": 1}, {"id": "c14cab28-13eb-4d91-8578-8187a95a8909", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [180, 700], "parameters": {"color": 7, "width": 380, "height": 80, "content": "### 1. Subscribe flow\nUse a form to allow users to subscribe to the service."}, "typeVersion": 1}, {"id": "0e44ada0-f8a7-440e-aded-33b446190a08", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [180, 1020], "parameters": {"color": 7, "width": 355, "height": 115, "content": "### 2. Unsubscribe flow\n* Uses Form's pre-fill field feature to identify user\n* Doesn't use \"email\" as identifier so you can't unsubscribe others"}, "typeVersion": 1}, {"id": "e67bdffe-ccfc-4818-990d-b2a5ab613035", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [180, 1340], "parameters": {"color": 7, "width": 347, "height": 114, "content": "### 3. Scheduled Trigger\n* Runs every day at 9am\n* Handles all 3 frequency types\n* Send emails concurrently"}, "typeVersion": 1}, {"id": "ce7d5310-7170-46d3-b8d8-3f97407f9dfd", "name": "Subscribe Form", "type": "n8n-nodes-base.formTrigger", "position": [180, 820], "webhookId": "c6abe3e3-ba87-4124-a227-84e253581b58", "parameters": {"options": {"path": "free-factoids-subscribe", "appendAttribution": false, "respondWithOptions": {"values": {"formSubmittedText": "Thanks! Your factoid is on its way!"}}}, "formTitle": "Learn something every day!", "formFields": {"values": [{"fieldType": "textarea", "fieldLabel": "topic", "placeholder": "What topic(s) would you like to learn about?", "requiredField": true}, {"fieldType": "email", "fieldLabel": "email", "placeholder": "eg. jim@example.com", "requiredField": true}, {"fieldType": "dropdown", "fieldLabel": "frequency", "fieldOptions": {"values": [{"option": "daily"}, {"option": "weekly"}, {"option": "surprise me"}]}, "requiredField": true}]}, "formDescription": "Get a fact a day (or week) about any subject sent to your inbox."}, "typeVersion": 2.2}, {"id": "a5d50886-7d6b-4bf8-b376-b23c12a60608", "name": "Execution Data", "type": "n8n-nodes-base.executionData", "position": [1560, 1480], "parameters": {"dataToSave": {"values": [{"key": "email", "value": "={{ $json.email }}"}]}}, "typeVersion": 1}, {"id": "69b40d8d-7734-47f1-89fe-9ea0378424b7", "name": "Window Buffer Memory", "type": "@n8n/n8n-nodes-langchain.memoryBufferWindow", "position": [1860, 1680], "parameters": {"sessionKey": "=scheduled_send_{{ $json.email }}", "sessionIdType": "customKey"}, "typeVersion": 1.3}, {"id": "f83cff18-f41f-4a63-9d43-7e3947aae386", "name": "Wikipedia", "type": "@n8n/n8n-nodes-langchain.toolWikipedia", "position": [2020, 1680], "parameters": {}, "typeVersion": 1}, {"id": "77457037-e3ab-42f1-948b-b994d42f2f6e", "name": "Content Generation Agent", "type": "@n8n/n8n-nodes-langchain.agent", "position": [1780, 1460], "parameters": {"text": "=Generate an new factoid on the following topic: \"{{ $json.topic.replace('\"','') }}\"\nEnsure it is unique and not one generated previously.", "options": {}, "promptType": "define"}, "typeVersion": 1.7}, {"id": "cdfdd870-48b6-4c7d-a7d1-a22d70423e37", "name": "Groq Chat Model", "type": "@n8n/n8n-nodes-langchain.lmChatGroq", "position": [1720, 1680], "parameters": {"model": "llama-3.3-70b-versatile", "options": {}}, "credentials": {"groqApi": {"id": "02xZ4o87lUMUFmbT", "name": "Groq account"}}, "typeVersion": 1}, {"id": "87df322d-a544-476f-b2ff-83feb619fe7f", "name": "Generate Image", "type": "@n8n/n8n-nodes-langchain.openAi", "position": [2120, 1460], "parameters": {"prompt": "=Generate a child-friendly illustration which compliments the following paragraph:\n{{ $json.output }}", "options": {}, "resource": "image"}, "credentials": {"openAiApi": {"id": "8gccIjcuf3gvaoEr", "name": "OpenAi account"}}, "typeVersion": 1.7}, {"id": "5c8d9e72-4015-44da-b5d5-829864d33672", "name": "Resize Image", "type": "n8n-nodes-base.editImage", "position": [2280, 1460], "parameters": {"width": 480, "height": 360, "options": {}, "operation": "resize"}, "typeVersion": 1}, {"id": "a9939fad-98b3-4894-aae0-c11fa40d09da", "name": "Send Message", "type": "n8n-nodes-base.gmail", "position": [2680, 1480], "webhookId": "dd8bd6df-2013-4f8d-a2cc-cd9b3913e3d2", "parameters": {"sendTo": "={{ $json.to }}", "message": "=<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"UTF-8\">\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n <title>{{ $json.subject }}</title>\n</head>\n<body>\n {{ $json.message }}\n<p>\n<a href=\"{{ $json.unsubscribe_link }}\">Unsubscribe</a>\n</p>\n</body>\n</html>\n", "options": {"attachmentsUi": {"attachmentsBinary": [{}]}, "appendAttribution": false}, "subject": "={{ $json.subject }}"}, "credentials": {"gmailOAuth2": {"id": "Sf5Gfl9NiFTNXFWb", "name": "Gmail account"}}, "typeVersion": 2.1}, {"id": "10b6ad35-fc1c-47a2-b234-5de3557d1164", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [1320, 1660], "parameters": {"color": 7, "width": 335, "height": 113, "content": "### 5. Use Execution Data to Filter Logs\nIf you've registered for community+ or are on n8n cloud, best practice is to use execution node to allow filtering of execution logs."}, "typeVersion": 1}, {"id": "e3563fae-ff35-457b-9fb1-784eda637518", "name": "Sticky Note5", "type": "n8n-nodes-base.stickyNote", "position": [1780, 1280], "parameters": {"color": 7, "width": 340, "height": 140, "content": "### 6. Use AI to Generate Factoid and Image\nUse an AI agent to automate the generation of factoids as requested by the user. This is a simple example but we recommend a adding a unique touch to stand out from the crowd!"}, "typeVersion": 1}, {"id": "d1016c5d-c855-44c5-8ad3-a534bedaa8cf", "name": "Sticky Note6", "type": "n8n-nodes-base.stickyNote", "position": [2500, 1040], "parameters": {"color": 7, "width": 460, "height": 400, "content": "### 7. Send Email to User\nFinally, send a message to the user with both text and image.\nLog the event in the Airtable for later analysis if required.\n\n![Screenshot of email result](https://res.cloudinary.com/daglih2g8/image/upload/f_auto,q_auto/v1/n8n-workflows/dbpctdhohj3vlewy6oyc)"}, "typeVersion": 1}, {"id": "773075fa-e5a2-4d4f-8527-eb07c7038b00", "name": "Sticky Note7", "type": "n8n-nodes-base.stickyNote", "position": [-420, 680], "parameters": {"width": 480, "height": 900, "content": "## Try It Out!\n\n### This n8n templates demonstrates how to build a simple subscriber service entirely in n8n using n8n forms as a frontend, n8n generally as the backend and Airtable as the storage layer.\n\nThis template in particular shows a fully automated service to send automated messages containing facts about a topic the user requested for.\n\n### How it works\n* An n8n form is setup up to allow users to subscribe with a desired topic and interval of which to recieve messages via n8n forms which is then added to the Airtable.\n* A scheduled trigger is executed every morning and searches for subscribers to send messages for based on their desired intervals.\n* Once found, Subscribers are sent to a subworkflow which performs the text content generation via an AI agent and also uses a vision model to generate an image.\n* Both are attached to an email which is sent to the subscriber. This email also includes an unsubscribe link.\n* The unsubscribe flow works similarly via n8n form interface which when submitted disables further scheduled emails to the user.\n\n## How to use\n* Make a copy of sample Airtable here: https://airtable.com/appL3dptT6ZTSzY9v/shrLukHafy5bwDRfD\n* Make sure the workflow is \"activated\" and the forms are available and reachable by your audience.\n\n\n### Need Help?\nJoin the [Discord](https://discord.com/invite/XPKeKXeB7d) or ask in the [Forum](https://community.n8n.io/)!\n\nHappy Hacking!"}, "typeVersion": 1}]
{"Wikipedia": {"ai_tool": [[{"node": "Content Generation Agent", "type": "ai_tool", "index": 0}]]}, "Create Event": {"main": [[{"node": "Execute Workflow", "type": "main", "index": 0}]]}, "Resize Image": {"main": [[{"node": "Set Email Vars", "type": "main", "index": 0}]]}, "Search daily": {"main": [[{"node": "Create Event", "type": "main", "index": 0}]]}, "Send Message": {"main": [[{"node": "Log Last Sent", "type": "main", "index": 0}]]}, "Should Send?": {"main": [[{"node": "Should Send = True", "type": "main", "index": 0}]]}, "Search weekly": {"main": [[{"node": "Create Event", "type": "main", "index": 0}]]}, "Execution Data": {"main": [[{"node": "Content Generation Agent", "type": "main", "index": 0}]]}, "Generate Image": {"main": [[{"node": "Resize Image", "type": "main", "index": 0}]]}, "Set Email Vars": {"main": [[{"node": "Send Message", "type": "main", "index": 0}]]}, "Subscribe Form": {"main": [[{"node": "Create Subscriber", "type": "main", "index": 0}]]}, "Groq Chat Model": {"ai_languageModel": [[{"node": "Content Generation Agent", "type": "ai_languageModel", "index": 0}]]}, "Search surprise": {"main": [[{"node": "Should Send?", "type": "main", "index": 0}]]}, "Schedule Trigger": {"main": [[{"node": "Search surprise", "type": "main", "index": 0}, {"node": "Search daily", "type": "main", "index": 0}, {"node": "Search weekly", "type": "main", "index": 0}]]}, "Unsubscribe Form": {"main": [[{"node": "Update Subscriber", "type": "main", "index": 0}]]}, "Create Subscriber": {"main": [[{"node": "confirmation email1", "type": "main", "index": 0}]]}, "Should Send = True": {"main": [[{"node": "Create Event", "type": "main", "index": 0}]]}, "Window Buffer Memory": {"ai_memory": [[{"node": "Content Generation Agent", "type": "ai_memory", "index": 0}]]}, "Content Generation Agent": {"main": [[{"node": "Generate Image", "type": "main", "index": 0}]]}, "Execute Workflow Trigger": {"main": [[{"node": "Execution Data", "type": "main", "index": 0}]]}}
Mindee:receipt:predict:invoice:predict
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [330, 230], "id": "a2fb028a-a712-440d-b273-88e18c86f688"}, {"parameters": {}, "name": "Mindee", "type": "n8n-nodes-base.mindee", "typeVersion": 1, "position": [650, 150], "credentials": {"mindeeReceiptApi": {"id": "44", "name": "Mindee Receipt creds"}}, "id": "d1c7c807-0f46-48d7-a6a8-07c6fbd9298e"}, {"parameters": {"url": "https://upload.wikimedia.org/wikipedia/commons/0/0b/ReceiptSwiss.jpg", "responseFormat": "file", "options": {}, "headerParametersUi": {"parameter": [{"name": "User-agent", "value": "n8n-io app"}]}}, "name": "HTTP Request", "type": "n8n-nodes-base.httpRequest", "typeVersion": 1, "position": [500, 150], "id": "8313ed3a-96d5-4f34-8d5c-76bcdc7be95a"}, {"parameters": {"resource": "invoice"}, "name": "Mindee1", "type": "n8n-nodes-base.mindee", "typeVersion": 1, "position": [650, 300], "credentials": {"mindeeInvoiceApi": {"id": "45", "name": "Mindee Invoice creds"}}, "id": "1632bf97-ed0a-49cc-8c55-be7be333c91b"}, {"parameters": {"url": "https://www.invoicesimple.com/wp-content/uploads/2018/06/Sample-Invoice-printable.png", "responseFormat": "file", "options": {}}, "name": "HTTP Request1", "type": "n8n-nodes-base.httpRequest", "typeVersion": 1, "position": [500, 300], "id": "72d76ab1-1074-42ca-af84-cf8dc7eef32f"}]
{"Start": {"main": [[{"node": "HTTP Request", "type": "main", "index": 0}, {"node": "HTTP Request1", "type": "main", "index": 0}]]}, "HTTP Request": {"main": [[{"node": "Mindee", "type": "main", "index": 0}]]}, "HTTP Request1": {"main": [[{"node": "Mindee1", "type": "main", "index": 0}]]}}
Create dynamic Twitter profile banner
[{"name": "On clicking 'execute'", "type": "n8n-nodes-base.manualTrigger", "position": [260, 210], "parameters": {}, "typeVersion": 1}, {"name": "Fetch new followers", "type": "n8n-nodes-base.httpRequest", "position": [460, 210], "parameters": {"url": "https://api.twitter.com/2/users/{YOUR_USER_ID}/followers?user.fields=profile_image_url&max_results=3", "options": {}, "authentication": "headerAuth"}, "credentials": {"httpHeaderAuth": {"id": "2", "name": "Twitter Token"}}, "typeVersion": 1}, {"name": "Item Lists", "type": "n8n-nodes-base.itemLists", "position": [660, 210], "parameters": {"options": {}, "fieldToSplitOut": "data"}, "typeVersion": 1}, {"name": "Function", "type": "n8n-nodes-base.function", "position": [1660, 210], "parameters": {"functionCode": "const binary = {};\nfor (let i=0; i < items.length; i++) {\n binary[`data${i}`] = items[i].binary.avatar;\n}\n\nreturn [\n {\n json: {\n numIcons: items.length,\n },\n binary,\n }\n];\n"}, "typeVersion": 1}, {"name": "Merge", "type": "n8n-nodes-base.merge", "position": [1910, 110], "parameters": {"mode": "mergeByIndex"}, "typeVersion": 1}, {"name": "Fetching images", "type": "n8n-nodes-base.httpRequest", "position": [860, 210], "parameters": {"url": "={{$json[\"profile_image_url\"].replace('normal','400x400')}}", "options": {}, "responseFormat": "file", "dataPropertyName": "avatar"}, "typeVersion": 1}, {"name": "Fetch bg", "type": "n8n-nodes-base.httpRequest", "position": [1660, -40], "parameters": {"url": "{TEMPLATE_IMAGE_URL}", "options": {}, "responseFormat": "file", "dataPropertyName": "bg"}, "typeVersion": 1}, {"name": "Resize", "type": "n8n-nodes-base.editImage", "position": [1060, 210], "parameters": {"width": 200, "height": 200, "options": {}, "operation": "resize", "dataPropertyName": "avatar"}, "typeVersion": 1}, {"name": "Crop", "type": "n8n-nodes-base.editImage", "position": [1260, 210], "parameters": {"options": {"format": "png"}, "operation": "multiStep", "operations": {"operations": [{"width": 200, "height": 200, "operation": "create", "backgroundColor": "#000000ff"}, {"color": "#ffffff00", "operation": "draw", "primitive": "circle", "endPositionX": 25, "endPositionY": 50, "startPositionX": 100, "startPositionY": 100}, {"operator": "In", "operation": "composite", "dataPropertyNameComposite": "avatar"}]}, "dataPropertyName": "avatar"}, "typeVersion": 1}, {"name": "Edit Image", "type": "n8n-nodes-base.editImage", "position": [2110, 110], "parameters": {"options": {}, "operation": "multiStep", "operations": {"operations": [{"operation": "composite", "positionX": 1000, "positionY": 375, "dataPropertyNameComposite": "data0"}, {"operation": "composite", "positionX": 1100, "positionY": 375, "dataPropertyNameComposite": "data1"}, {"operation": "composite", "positionX": 1200, "positionY": 375, "dataPropertyNameComposite": "data2"}]}, "dataPropertyName": "bg"}, "typeVersion": 1}, {"name": "Resize1", "type": "n8n-nodes-base.editImage", "position": [1450, 210], "parameters": {"width": 75, "height": 75, "options": {}, "operation": "resize", "dataPropertyName": "avatar"}, "typeVersion": 1}, {"name": "HTTP Request", "type": "n8n-nodes-base.httpRequest", "position": [2310, 110], "parameters": {"url": "https://api.twitter.com/1.1/account/update_profile_banner.json", "options": {"bodyContentType": "multipart-form-data"}, "requestMethod": "POST", "authentication": "oAuth1", "jsonParameters": true, "sendBinaryData": true, "binaryPropertyName": "banner:bg"}, "credentials": {"oAuth1Api": {"id": "13", "name": "Twitter OAuth1.0"}}, "typeVersion": 1}]
{"Crop": {"main": [[{"node": "Resize1", "type": "main", "index": 0}]]}, "Merge": {"main": [[{"node": "Edit Image", "type": "main", "index": 0}]]}, "Resize": {"main": [[{"node": "Crop", "type": "main", "index": 0}]]}, "Resize1": {"main": [[{"node": "Function", "type": "main", "index": 0}]]}, "Fetch bg": {"main": [[{"node": "Merge", "type": "main", "index": 0}]]}, "Function": {"main": [[{"node": "Merge", "type": "main", "index": 1}]]}, "Edit Image": {"main": [[{"node": "HTTP Request", "type": "main", "index": 0}]]}, "Item Lists": {"main": [[{"node": "Fetching images", "type": "main", "index": 0}]]}, "Fetching images": {"main": [[{"node": "Resize", "type": "main", "index": 0}]]}, "Fetch new followers": {"main": [[{"node": "Item Lists", "type": "main", "index": 0}]]}, "On clicking 'execute'": {"main": [[{"node": "Fetch new followers", "type": "main", "index": 0}]]}}
HR Job Posting and Evaluation with AI
[{"id": "450e15b2-bddf-4853-b44e-822facaac14d", "name": "On form submission", "type": "n8n-nodes-base.formTrigger", "position": [-700, -80], "webhookId": "18f7428c-9990-413f-aff3-bdcca1bbbe2d", "parameters": {"options": {"path": "automation-specialist-application", "ignoreBots": false, "buttonLabel": "Submit", "appendAttribution": false, "useWorkflowTimezone": true}, "formTitle": "Job Application", "formFields": {"values": [{"fieldLabel": "First Name", "requiredField": true}, {"fieldLabel": "Last Name", "requiredField": true}, {"fieldType": "email", "fieldLabel": "Email", "requiredField": true}, {"fieldType": "number", "fieldLabel": "Phone", "requiredField": true}, {"fieldType": "number", "fieldLabel": "Years of experience", "requiredField": true}, {"fieldType": "file", "fieldLabel": "Upload your CV", "requiredField": true, "acceptFileTypes": ".pdf"}]}, "formDescription": "=Fill this for to apply for the role Automation Specialist:\n\nLocation: Remote\nExperience: Minimum 3 years\nEmployment Type: Full-time\n\nJob Description:\nWe are seeking a highly skilled Automation Specialist with at least 3 years of experience in designing and implementing workflow automation solutions. The ideal candidate will have expertise in tools such as n8n, Zapier, Make.com, or similar platforms, and a strong background in integrating APIs, streamlining processes, and enhancing operational efficiency.\n\nKey Responsibilities:\n\n Develop and implement automated workflows to optimize business processes.\n Integrate third-party APIs and systems to create seamless data flow.\n Analyze, debug, and improve existing automation setups.\n Collaborate with cross-functional teams to identify automation opportunities.\n Monitor and maintain automation systems to ensure reliability.\n\nRequired Skills & Qualifications:\n\n Proven 3+ years of experience in workflow automation and integration.\n Proficiency with tools like n8n, Zapier, or Make.com.\n Strong understanding of APIs, webhooks, and data transformation.\n Familiarity with scripting languages (e.g., JavaScript or Python).\n Excellent problem-solving and communication skills.\n\nPreferred Qualifications:\n\n Experience with database management and cloud services.\n Background in business process analysis or RPA tools.\n\nWhy Join Us?\n\n Opportunity to work on cutting-edge automation projects.\n Supportive and collaborative team environment.\n Competitive salary and benefits package."}, "typeVersion": 2.2}, {"id": "5005e9ba-a68a-4795-8a65-22374a182bdb", "name": "Airtable", "type": "n8n-nodes-base.airtable", "position": [-60, -80], "parameters": {"base": {"__rl": true, "mode": "list", "value": "appublMkWVQfHkZ09", "cachedResultUrl": "https://airtable.com/appublMkWVQfHkZ09", "cachedResultName": "Simple applicant tracker"}, "table": {"__rl": true, "mode": "list", "value": "tblllvQaRTSnEr17a", "cachedResultUrl": "https://airtable.com/appublMkWVQfHkZ09/tblllvQaRTSnEr17a", "cachedResultName": "Applicants"}, "columns": {"value": {"Name": "={{ $json.Name }}", "Phone": "={{ $json.Phone }}", "CV Link": "={{ $json[\"CV link\"] }}", "Applying for": "=[\"Automation Specialist\"]", "Email address": "={{ $json.email }}"}, "schema": [{"id": "Name", "type": "string", "display": true, "removed": false, "readOnly": false, "required": false, "displayName": "Name", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Email address", "type": "string", "display": true, "removed": false, "readOnly": false, "required": false, "displayName": "Email address", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Phone", "type": "string", "display": true, "removed": false, "readOnly": false, "required": false, "displayName": "Phone", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Stage", "type": "options", "display": true, "options": [{"name": "No hire", "value": "No hire"}, {"name": "Interviewing", "value": "Interviewing"}, {"name": "Decision needed", "value": "Decision needed"}, {"name": "Hire", "value": "Hire"}], "removed": true, "readOnly": false, "required": false, "displayName": "Stage", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Applying for", "type": "array", "display": true, "removed": false, "readOnly": false, "required": false, "displayName": "Applying for", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "CV Link", "type": "string", "display": true, "removed": false, "readOnly": false, "required": false, "displayName": "CV Link", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "JD CV score", "type": "options", "display": true, "options": [{"name": "0 \u2013 No hire", "value": "0 \u2013 No hire"}, {"name": "1 \u2013 Probably no hire", "value": "1 \u2013 Probably no hire"}, {"name": "2 \u2013 Worth consideration", "value": "2 \u2013 Worth consideration"}, {"name": "3 \u2013 Good candidate", "value": "3 \u2013 Good candidate"}, {"name": "4 \u2013 Please hire this person", "value": "4 \u2013 Please hire this person"}], "removed": true, "readOnly": false, "required": false, "displayName": "JD CV score", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Phone interview", "type": "dateTime", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Phone interview", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Phone interviewer", "type": "array", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Phone interviewer", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Phone interview score", "type": "options", "display": true, "options": [{"name": "0 \u2013 No hire", "value": "0 \u2013 No hire"}, {"name": "1 \u2013 Probably no hire", "value": "1 \u2013 Probably no hire"}, {"name": "2 \u2013 Worth consideration", "value": "2 \u2013 Worth consideration"}, {"name": "3 \u2013 Good candidate", "value": "3 \u2013 Good candidate"}, {"name": "4 \u2013 Please hire this person", "value": "4 \u2013 Please hire this person"}], "removed": true, "readOnly": false, "required": false, "displayName": "Phone interview score", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Phone interview notes", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Phone interview notes", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Onsite interview", "type": "dateTime", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Onsite interview", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Onsite interviewer", "type": "array", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Onsite interviewer", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Onsite interview score", "type": "options", "display": true, "options": [{"name": "0 \u2013 No hire", "value": "0 \u2013 No hire"}, {"name": "1 \u2013 Probably no hire", "value": "1 \u2013 Probably no hire"}, {"name": "2 \u2013 Worth consideration", "value": "2 \u2013 Worth consideration"}, {"name": "3 \u2013 Good candidate", "value": "3 \u2013 Good candidate"}, {"name": "4 \u2013 Please hire this person", "value": "4 \u2013 Please hire this person"}], "removed": true, "readOnly": false, "required": false, "displayName": "Onsite interview score", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Onsite interview notes", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Onsite interview notes", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Attachments", "type": "array", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Attachments", "defaultMatch": false, "canBeUsedToMatch": true}], "mappingMode": "defineBelow", "matchingColumns": []}, "options": {"typecast": true}, "operation": "create"}, "credentials": {"airtableTokenApi": {"id": "gQtK3HX661rFA6KW", "name": "gaturanjenga account"}}, "typeVersion": 2.1}, {"id": "b291527b-9937-4388-a712-2b60dd292f65", "name": "Upload CV to google drive", "type": "n8n-nodes-base.googleDrive", "position": [-480, -80], "parameters": {"name": "={{ $binary.Upload_your_CV.fileName }}", "driveId": {"__rl": true, "mode": "list", "value": "My Drive"}, "options": {}, "folderId": {"__rl": true, "mode": "list", "value": "1u_YBpqSU5TjNsu72sQKFMIesb62JKHXz", "cachedResultUrl": "https://drive.google.com/drive/folders/1u_YBpqSU5TjNsu72sQKFMIesb62JKHXz", "cachedResultName": "HR Test"}, "inputDataFieldName": "Upload_your_CV"}, "credentials": {"googleDriveOAuth2Api": {"id": "MHcgKR744VHXSe3X", "name": "Drive n8n"}}, "typeVersion": 3}, {"id": "83a965f9-bdb1-42ca-9701-24a82438ea0e", "name": "applicant details", "type": "n8n-nodes-base.set", "position": [-260, -80], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "bffff778-859a-4bb8-b973-39237ce7486e", "name": "Name", "type": "string", "value": "={{ $('On form submission').item.json['First Name'] + \" \" + $('On form submission').item.json['Last Name'] }}"}, {"id": "cd6e7372-c65f-4e6f-9612-6ea513bb8e15", "name": "Phone", "type": "number", "value": "={{ $('On form submission').item.json.Phone }}"}, {"id": "eb19138e-7ff3-4f0c-ad95-ac33f8835717", "name": "email", "type": "string", "value": "={{ $('On form submission').item.json.Email }}"}, {"id": "25172db9-91fb-45da-b036-ee9aea1e8b09", "name": "Experience", "type": "number", "value": "={{ $('On form submission').item.json[\"Years of experience\"] }}"}, {"id": "64393285-3770-47e0-bbbb-3c5d5e14f1f4", "name": "Applied On", "type": "string", "value": "={{ $('On form submission').item.json.submittedAt }}"}, {"id": "dc052fd6-f57d-4da1-9976-67fcd9496e58", "name": "CV link", "type": "string", "value": "={{ $json.webViewLink }}"}]}}, "typeVersion": 3.4}, {"id": "41038c1c-876d-46a6-9dcc-f40c77e834df", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [-720, -160], "parameters": {"color": 3, "width": 760, "height": 220, "content": "## Grab User Details and Update in Airtable\n"}, "typeVersion": 1}, {"id": "d0f85487-8e78-4cde-8ecb-a55ab94940cc", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [120, -180], "parameters": {"width": 820, "height": 460, "content": "## Download the CV and get the job description and requirements.\n- ### Send the details to ChatGPT to score the viability of the candidate"}, "typeVersion": 1}, {"id": "334c4580-a0e6-45f0-9b3a-3904eb80b3e8", "name": "download CV", "type": "n8n-nodes-base.googleDrive", "position": [140, -80], "parameters": {"fileId": {"__rl": true, "mode": "url", "value": "={{ $json.fields[\"CV Link\"] }}"}, "options": {}, "operation": "download"}, "credentials": {"googleDriveOAuth2Api": {"id": "MHcgKR744VHXSe3X", "name": "Drive n8n"}}, "typeVersion": 3}, {"id": "b7d8013a-71bd-49a4-a58f-f63186e1b6d8", "name": "Extract from File", "type": "n8n-nodes-base.extractFromFile", "position": [360, -80], "parameters": {"options": {}, "operation": "pdf"}, "typeVersion": 1}, {"id": "22ba7844-9f20-41b1-96bb-f2e33e18d14a", "name": "AI Agent", "type": "@n8n/n8n-nodes-langchain.agent", "position": [580, -80], "parameters": {"text": "=Compare the following job description and resume. Assign a qualification score between 0 and 1, where 1 indicates the best match. Provide only the score and the reason for the score in less than 20 words.\nJob Description: Use Airtable tool to get the job description\nResume: \n{{ $json.text }}", "options": {}, "promptType": "define", "hasOutputParser": true}, "typeVersion": 1.7}, {"id": "5f0317cb-35a5-4e57-938d-0d604c1f7f4f", "name": "OpenAI Chat Model", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [500, 120], "parameters": {"options": {}}, "credentials": {"openAiApi": {"id": "0Q6M4JEKewP9VKl8", "name": "Bulkbox"}}, "typeVersion": 1}, {"id": "d040091b-282b-4bb7-8a82-de3030c14b91", "name": "Airtable1", "type": "n8n-nodes-base.airtableTool", "position": [700, 120], "parameters": {"base": {"__rl": true, "mode": "list", "value": "appublMkWVQfHkZ09", "cachedResultUrl": "https://airtable.com/appublMkWVQfHkZ09", "cachedResultName": "Simple applicant tracker"}, "table": {"__rl": true, "mode": "list", "value": "tbljhmLdPULqSya0d", "cachedResultUrl": "https://airtable.com/appublMkWVQfHkZ09/tbljhmLdPULqSya0d", "cachedResultName": "Positions"}, "options": {}, "operation": "search"}, "credentials": {"airtableTokenApi": {"id": "gQtK3HX661rFA6KW", "name": "gaturanjenga account"}}, "typeVersion": 2.1}, {"id": "fba48717-a068-44de-a776-6e0c14ebd667", "name": "Structured Output Parser", "type": "@n8n/n8n-nodes-langchain.outputParserStructured", "position": [820, 120], "parameters": {"jsonSchemaExample": "{\n \"score\": 0.8,\n \"reason\": \"Does not meet required number of experience in years\"\n}"}, "typeVersion": 1.2}, {"id": "2eef8181-3e4d-4c66-acd7-d440eb2f6748", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [960, -340], "parameters": {"color": 2, "width": 1200, "height": 600, "content": "## Update Airtable with score and reason for the score\n\n- ### if score is above 0.7, shortlist and continue flow.\n\n## Get questionnaires based on the JD and CV\n\n- ### Update the responses in Airtable"}, "typeVersion": 1}, {"id": "ed42fa6c-be05-4d62-aa1f-390b5fc471dd", "name": "shortlisted?", "type": "n8n-nodes-base.if", "position": [960, -80], "parameters": {"options": {}, "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "7b4950b2-d218-4911-89cd-22a60b7465d8", "operator": {"type": "number", "operation": "gte"}, "leftValue": "={{ $json.output.score }}", "rightValue": 0.7}]}}, "typeVersion": 2.2}, {"id": "6df70bee-6a9f-43f6-8c39-46663b572f5c", "name": "Rejected", "type": "n8n-nodes-base.airtable", "position": [1240, 60], "parameters": {"base": {"__rl": true, "mode": "list", "value": "appublMkWVQfHkZ09", "cachedResultUrl": "https://airtable.com/appublMkWVQfHkZ09", "cachedResultName": "Simple applicant tracker"}, "table": {"__rl": true, "mode": "list", "value": "tblllvQaRTSnEr17a", "cachedResultUrl": "https://airtable.com/appublMkWVQfHkZ09/tblllvQaRTSnEr17a", "cachedResultName": "Applicants"}, "columns": {"value": {"id": "={{ $('Airtable').item.json.id }}", "Stage": "No hire", "JD CV score": "={{ $json.output.score }}", "CV Score Notes": "={{ $json.output.reason }}"}, "schema": [{"id": "id", "type": "string", "display": true, "removed": false, "readOnly": true, "required": false, "displayName": "id", "defaultMatch": true}, {"id": "Name", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Name", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Email address", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Email address", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Phone", "type": "number", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Phone", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Stage", "type": "options", "display": true, "options": [{"name": "No hire", "value": "No hire"}, {"name": "Interviewing", "value": "Interviewing"}, {"name": "Decision needed", "value": "Decision needed"}, {"name": "Hire", "value": "Hire"}], "removed": false, "readOnly": false, "required": false, "displayName": "Stage", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Applying for", "type": "array", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Applying for", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "CV Link", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "CV Link", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "JD CV score", "type": "number", "display": true, "removed": false, "readOnly": false, "required": false, "displayName": "JD CV score", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "CV Score Notes", "type": "string", "display": true, "removed": false, "readOnly": false, "required": false, "displayName": "CV Score Notes", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Phone interview", "type": "dateTime", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Phone interview", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Phone interviewer", "type": "array", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Phone interviewer", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Phone interview score", "type": "options", "display": true, "options": [{"name": "0 \u2013 No hire", "value": "0 \u2013 No hire"}, {"name": "1 \u2013 Probably no hire", "value": "1 \u2013 Probably no hire"}, {"name": "2 \u2013 Worth consideration", "value": "2 \u2013 Worth consideration"}, {"name": "3 \u2013 Good candidate", "value": "3 \u2013 Good candidate"}, {"name": "4 \u2013 Please hire this person", "value": "4 \u2013 Please hire this person"}], "removed": true, "readOnly": false, "required": false, "displayName": "Phone interview score", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Phone interview notes", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Phone interview notes", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Onsite interview", "type": "dateTime", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Onsite interview", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Onsite interviewer", "type": "array", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Onsite interviewer", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Onsite interview score", "type": "options", "display": true, "options": [{"name": "0 \u2013 No hire", "value": "0 \u2013 No hire"}, {"name": "1 \u2013 Probably no hire", "value": "1 \u2013 Probably no hire"}, {"name": "2 \u2013 Worth consideration", "value": "2 \u2013 Worth consideration"}, {"name": "3 \u2013 Good candidate", "value": "3 \u2013 Good candidate"}, {"name": "4 \u2013 Please hire this person", "value": "4 \u2013 Please hire this person"}], "removed": true, "readOnly": false, "required": false, "displayName": "Onsite interview score", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Onsite interview notes", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Onsite interview notes", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Attachments", "type": "array", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Attachments", "defaultMatch": false, "canBeUsedToMatch": true}], "mappingMode": "defineBelow", "matchingColumns": ["id"]}, "options": {}, "operation": "update"}, "credentials": {"airtableTokenApi": {"id": "gQtK3HX661rFA6KW", "name": "gaturanjenga account"}}, "typeVersion": 2.1}, {"id": "888869bb-6fca-4d91-8428-cf5159d410e3", "name": "Potential Hire", "type": "n8n-nodes-base.airtable", "position": [1240, -140], "parameters": {"base": {"__rl": true, "mode": "list", "value": "appublMkWVQfHkZ09", "cachedResultUrl": "https://airtable.com/appublMkWVQfHkZ09", "cachedResultName": "Simple applicant tracker"}, "table": {"__rl": true, "mode": "list", "value": "tblllvQaRTSnEr17a", "cachedResultUrl": "https://airtable.com/appublMkWVQfHkZ09/tblllvQaRTSnEr17a", "cachedResultName": "Applicants"}, "columns": {"value": {"id": "={{ $('Airtable').item.json.id }}", "Stage": "Interviewing", "JD CV score": "={{ $json.output.score }}", "CV Score Notes": "={{ $json.output.reason }}"}, "schema": [{"id": "id", "type": "string", "display": true, "removed": false, "readOnly": true, "required": false, "displayName": "id", "defaultMatch": true}, {"id": "Name", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Name", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Email address", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Email address", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Phone", "type": "number", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Phone", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Stage", "type": "options", "display": true, "options": [{"name": "No hire", "value": "No hire"}, {"name": "Interviewing", "value": "Interviewing"}, {"name": "Decision needed", "value": "Decision needed"}, {"name": "Hire", "value": "Hire"}], "removed": false, "readOnly": false, "required": false, "displayName": "Stage", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Applying for", "type": "array", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Applying for", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "CV Link", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "CV Link", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "JD CV score", "type": "number", "display": true, "removed": false, "readOnly": false, "required": false, "displayName": "JD CV score", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "CV Score Notes", "type": "string", "display": true, "removed": false, "readOnly": false, "required": false, "displayName": "CV Score Notes", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Phone interview", "type": "dateTime", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Phone interview", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Phone interviewer", "type": "array", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Phone interviewer", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Phone interview score", "type": "options", "display": true, "options": [{"name": "0 \u2013 No hire", "value": "0 \u2013 No hire"}, {"name": "1 \u2013 Probably no hire", "value": "1 \u2013 Probably no hire"}, {"name": "2 \u2013 Worth consideration", "value": "2 \u2013 Worth consideration"}, {"name": "3 \u2013 Good candidate", "value": "3 \u2013 Good candidate"}, {"name": "4 \u2013 Please hire this person", "value": "4 \u2013 Please hire this person"}], "removed": true, "readOnly": false, "required": false, "displayName": "Phone interview score", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Phone interview notes", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Phone interview notes", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Onsite interview", "type": "dateTime", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Onsite interview", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Onsite interviewer", "type": "array", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Onsite interviewer", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Onsite interview score", "type": "options", "display": true, "options": [{"name": "0 \u2013 No hire", "value": "0 \u2013 No hire"}, {"name": "1 \u2013 Probably no hire", "value": "1 \u2013 Probably no hire"}, {"name": "2 \u2013 Worth consideration", "value": "2 \u2013 Worth consideration"}, {"name": "3 \u2013 Good candidate", "value": "3 \u2013 Good candidate"}, {"name": "4 \u2013 Please hire this person", "value": "4 \u2013 Please hire this person"}], "removed": true, "readOnly": false, "required": false, "displayName": "Onsite interview score", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Onsite interview notes", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Onsite interview notes", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Attachments", "type": "array", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Attachments", "defaultMatch": false, "canBeUsedToMatch": true}], "mappingMode": "defineBelow", "matchingColumns": ["id"]}, "options": {}, "operation": "update"}, "credentials": {"airtableTokenApi": {"id": "gQtK3HX661rFA6KW", "name": "gaturanjenga account"}}, "typeVersion": 2.1}, {"id": "8f59889d-dff7-4eef-85f4-7c6d9e171c17", "name": "Airtable2", "type": "n8n-nodes-base.airtableTool", "position": [1560, 100], "parameters": {"base": {"__rl": true, "mode": "list", "value": "appublMkWVQfHkZ09", "cachedResultUrl": "https://airtable.com/appublMkWVQfHkZ09", "cachedResultName": "Simple applicant tracker"}, "table": {"__rl": true, "mode": "list", "value": "tbljhmLdPULqSya0d", "cachedResultUrl": "https://airtable.com/appublMkWVQfHkZ09/tbljhmLdPULqSya0d", "cachedResultName": "Positions"}, "options": {}, "operation": "search"}, "credentials": {"airtableTokenApi": {"id": "gQtK3HX661rFA6KW", "name": "gaturanjenga account"}}, "typeVersion": 2.1}, {"id": "8358ab12-a0b9-4a21-b9eb-7054716b6f5b", "name": "generate questionnaires", "type": "@n8n/n8n-nodes-langchain.openAi", "position": [1460, -140], "parameters": {"modelId": {"__rl": true, "mode": "list", "value": "gpt-4o-mini", "cachedResultName": "GPT-4O-MINI"}, "options": {}, "messages": {"values": [{"content": "=Given the following job description and candidate CV, create 5 insightful interview questions to gather more information about the candidate's suitability for the role. The questions should focus on:\n\n Specific projects the candidate has worked on.\n Key responsibilities and achievements in their previous roles.\n Skills relevant to the job description.\n Problem-solving abilities and how they handled challenges.\n Alignment with the company\u2019s goals and values.\n\nProvide the questions in a clear, concise format.\n\nJob Description:\nUse the airtable tool to get the job description\n\nCandidate CV:\n{{ $('Extract from File').item.json.text }}"}]}, "jsonOutput": true}, "credentials": {"openAiApi": {"id": "lcpI0YZU9bebg3uW", "name": "OpenAi account"}}, "typeVersion": 1.7}, {"id": "21ffd179-42d9-4da3-9f1b-e2bbeb9cdee7", "name": "questionnaires", "type": "n8n-nodes-base.form", "position": [1820, -140], "webhookId": "3f654280-b5d0-4392-824f-bc384d91a1df", "parameters": {"options": {"formTitle": "Questionnaires", "buttonLabel": "Submit", "formDescription": "Kindly fill in the following questions to proceed."}, "formFields": {"values": [{"fieldLabel": "={{ $json.message.content.interview_questions[0].question }}", "requiredField": true}, {"fieldLabel": "={{ $json.message.content.interview_questions[1].question }}", "requiredField": true}, {"fieldLabel": "={{ $json.message.content.interview_questions[2].question }}", "requiredField": true}, {"fieldLabel": "={{ $json.message.content.interview_questions[3].question }}", "requiredField": true}, {"fieldLabel": "={{ $json.message.content.interview_questions[4].question }}", "requiredField": true}]}}, "typeVersion": 1}, {"id": "29a228ca-6b8e-458f-a030-372b50151a94", "name": "update questionnaires", "type": "n8n-nodes-base.airtable", "position": [2040, -140], "parameters": {"base": {"__rl": true, "mode": "list", "value": "appublMkWVQfHkZ09", "cachedResultUrl": "https://airtable.com/appublMkWVQfHkZ09", "cachedResultName": "Simple applicant tracker"}, "table": {"__rl": true, "mode": "list", "value": "tblllvQaRTSnEr17a", "cachedResultUrl": "https://airtable.com/appublMkWVQfHkZ09/tblllvQaRTSnEr17a", "cachedResultName": "Applicants"}, "columns": {"value": {"id": "={{ $('Airtable').item.json.id }}", "Questonnaires and responses": "={{ $('generate questionnaires').item.json.message.content.interview_questions[0].question }}: {{ $json['Can you describe one of the most complex automation projects you worked on, particularly detailing your role and the technologies you used?'] }}\n\n\n{{ $('generate questionnaires').item.json.message.content.interview_questions[1].question }}: {{ $json['What specific achievements in your previous roles do you believe demonstrate your ability to meet the responsibilities listed in the Automation Specialist position?'] }}\n\n\n{{ $('generate questionnaires').item.json.message.content.interview_questions[2].question }}: {{ $json['Given your experience with automation tools like n8n and APIs, can you provide an example of how you\\'ve successfully integrated different systems to improve operational efficiency?'] }}\n\n\n{{ $('generate questionnaires').item.json.message.content.interview_questions[3].question }}: {{ $json['Describe a challenging situation you faced during a project, how you approached the problem, and what the outcome was.'] }}\n\n\n{{ $('generate questionnaires').item.json.message.content.interview_questions[4].question }}: {{ $json['How do your values and career goals align with our company\\'s mission to optimize and enhance automation solutions?'] }}\n\n"}, "schema": [{"id": "id", "type": "string", "display": true, "removed": false, "readOnly": true, "required": false, "displayName": "id", "defaultMatch": true}, {"id": "Name", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Name", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Email address", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Email address", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Phone", "type": "number", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Phone", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Stage", "type": "options", "display": true, "options": [{"name": "No hire", "value": "No hire"}, {"name": "Interviewing", "value": "Interviewing"}, {"name": "Decision needed", "value": "Decision needed"}, {"name": "Hire", "value": "Hire"}], "removed": true, "readOnly": false, "required": false, "displayName": "Stage", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Applying for", "type": "array", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Applying for", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "CV Link", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "CV Link", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "JD CV score", "type": "number", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "JD CV score", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "CV Score Notes", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "CV Score Notes", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Questonnaires and responses", "type": "string", "display": true, "removed": false, "readOnly": false, "required": false, "displayName": "Questonnaires and responses", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Phone interview", "type": "dateTime", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Phone interview", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Phone interviewer", "type": "array", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Phone interviewer", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Phone interview score", "type": "options", "display": true, "options": [{"name": "0 \u2013 No hire", "value": "0 \u2013 No hire"}, {"name": "1 \u2013 Probably no hire", "value": "1 \u2013 Probably no hire"}, {"name": "2 \u2013 Worth consideration", "value": "2 \u2013 Worth consideration"}, {"name": "3 \u2013 Good candidate", "value": "3 \u2013 Good candidate"}, {"name": "4 \u2013 Please hire this person", "value": "4 \u2013 Please hire this person"}], "removed": true, "readOnly": false, "required": false, "displayName": "Phone interview score", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Phone interview notes", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Phone interview notes", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Onsite interview", "type": "dateTime", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Onsite interview", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Onsite interviewer", "type": "array", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Onsite interviewer", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Onsite interview score", "type": "options", "display": true, "options": [{"name": "0 \u2013 No hire", "value": "0 \u2013 No hire"}, {"name": "1 \u2013 Probably no hire", "value": "1 \u2013 Probably no hire"}, {"name": "2 \u2013 Worth consideration", "value": "2 \u2013 Worth consideration"}, {"name": "3 \u2013 Good candidate", "value": "3 \u2013 Good candidate"}, {"name": "4 \u2013 Please hire this person", "value": "4 \u2013 Please hire this person"}], "removed": true, "readOnly": false, "required": false, "displayName": "Onsite interview score", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Onsite interview notes", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Onsite interview notes", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Attachments", "type": "array", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Attachments", "defaultMatch": false, "canBeUsedToMatch": true}], "mappingMode": "defineBelow", "matchingColumns": ["id"]}, "options": {}, "operation": "update"}, "credentials": {"airtableTokenApi": {"id": "gQtK3HX661rFA6KW", "name": "gaturanjenga account"}}, "typeVersion": 2.1}, {"id": "9a72a172-4272-4715-8e57-75ca010bc0e5", "name": "job_posting", "type": "n8n-nodes-base.airtableTool", "position": [2300, 100], "parameters": {"base": {"__rl": true, "mode": "list", "value": "appublMkWVQfHkZ09", "cachedResultUrl": "https://airtable.com/appublMkWVQfHkZ09", "cachedResultName": "Simple applicant tracker"}, "table": {"__rl": true, "mode": "list", "value": "tbljhmLdPULqSya0d", "cachedResultUrl": "https://airtable.com/appublMkWVQfHkZ09/tbljhmLdPULqSya0d", "cachedResultName": "Positions"}, "options": {}, "operation": "search"}, "credentials": {"airtableTokenApi": {"id": "gQtK3HX661rFA6KW", "name": "gaturanjenga account"}}, "typeVersion": 2.1}, {"id": "28c210c8-5684-4683-a168-5a02b39eb0f2", "name": "candidate_insights", "type": "n8n-nodes-base.airtableTool", "position": [2420, 100], "parameters": {"id": "={{ $('update questionnaires').item.json.id }}", "base": {"__rl": true, "mode": "list", "value": "appublMkWVQfHkZ09", "cachedResultUrl": "https://airtable.com/appublMkWVQfHkZ09", "cachedResultName": "Simple applicant tracker"}, "table": {"__rl": true, "mode": "list", "value": "tblllvQaRTSnEr17a", "cachedResultUrl": "https://airtable.com/appublMkWVQfHkZ09/tblllvQaRTSnEr17a", "cachedResultName": "Applicants"}, "options": {}}, "credentials": {"airtableTokenApi": {"id": "gQtK3HX661rFA6KW", "name": "gaturanjenga account"}}, "typeVersion": 2.1}, {"id": "6e6f43f4-43a7-426f-b3c7-264a7980c771", "name": "Personalize email", "type": "@n8n/n8n-nodes-langchain.openAi", "position": [2260, -140], "parameters": {"modelId": {"__rl": true, "mode": "list", "value": "gpt-4o", "cachedResultName": "GPT-4O"}, "options": {}, "messages": {"values": [{"content": "=Craft a personalized email to the interviewee, expressing interest in continuing the conversation over a phone call. The email should mention strengths or achievements from their CV or questionnaire responses, and include a polite request to have the phone conversation. Ensure the tone is professional and warm.\n\nProvide an output of \nTo:\nSubject:\nEmail Content:\n\nInputs:\n\n The candidate's CV.\n The job description.\n The candidate's questionnaire responses stored in Airtable.\n\n\nExample email:\nDear [Candidate's Name],\n\nThank you for submitting your application and responses to the questionnaire for the [Job Title] position. We were impressed by [specific strength or achievement from their CV or questionnaire, e.g., \"your experience in automating workflows using n8n, which aligns closely with our goals\"].\n\nWe\u2019d love to continue the conversation to discuss your experience further. \n\nLooking forward to speaking with you soon.\n\n\n\nNOTE: \nSign off the email with\n\nRegards,\nFrancis"}]}, "jsonOutput": true}, "credentials": {"openAiApi": {"id": "lcpI0YZU9bebg3uW", "name": "OpenAi account"}}, "typeVersion": 1.7}, {"id": "ee3f1a4e-d262-461d-93c5-9aed81de9825", "name": "Edit Fields", "type": "n8n-nodes-base.set", "position": [2620, -140], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "b3d6e85e-c478-452d-aafc-c325dfbe2c9b", "name": "To", "type": "string", "value": "={{ $json.message.content.To }}"}, {"id": "f24eb1d5-fa61-48ce-8685-a0b2022bf576", "name": "Subject", "type": "string", "value": "={{ $json.message.content.Subject }}"}, {"id": "25de1423-b66a-4389-906f-8b0c9c1d3826", "name": "Email Content", "type": "string", "value": "={{ $json.message.content['Email Content'] }}"}]}}, "typeVersion": 3.4}, {"id": "7454b4ea-1b43-4a4a-8623-7848c13298c7", "name": "Send Email", "type": "n8n-nodes-base.emailSend", "position": [2840, -140], "parameters": {"text": "={{ $json['Email Content'] }}", "options": {"appendAttribution": false}, "subject": "={{ $json.Subject }}", "toEmail": "={{ $json.To }}", "fromEmail": "gatura@bulkbox.co.ke", "emailFormat": "text"}, "credentials": {"smtp": {"id": "FRchTiFJGPeC5YNE", "name": "SMTP account"}}, "typeVersion": 2.1}, {"id": "92be970b-8514-4842-bbc9-f6680681df60", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [2220, -280], "parameters": {"color": 5, "width": 1340, "height": 480, "content": "## Personalize email and send\n\n## Schedule Meeting and update meeting time in AIrtable"}, "typeVersion": 1}, {"id": "38a7f43b-f7b2-4dda-8dea-045d637870e8", "name": "Book Meeting", "type": "@n8n/n8n-nodes-langchain.openAi", "position": [3060, -140], "parameters": {"modelId": {"__rl": true, "mode": "list", "value": "gpt-4o", "cachedResultName": "GPT-4O"}, "options": {}, "messages": {"values": [{"content": "=Check the interviewer's calendar for available 30-minute time slots within working hours (8 AM - 5 PM) the next day. Schedule the meeting and confirm the time with the candidate. Ensure that the meeting time is aligned with the candidate's and interviewer's availability.\n\nInputs:\n\n The interviewer's calendar for scheduling.\n Today's date: {{ $today }}\n\nUse the calendar tool to book the meeting\n\n\nGive back the follwoing information:\nStart time:\nEnd time:"}]}, "jsonOutput": true}, "credentials": {"openAiApi": {"id": "lcpI0YZU9bebg3uW", "name": "OpenAi account"}}, "typeVersion": 1.7}, {"id": "b6a94b8c-8c92-49f2-931b-44d23f627152", "name": "Google Calendar", "type": "n8n-nodes-base.googleCalendarTool", "position": [3160, 80], "parameters": {"end": "={{ $fromAI(\"end_time\", \"The end time for the meeting\", \"string\", \"2025-01-01T09:00:00Z\") }}", "start": "={{ $fromAI(\"start_time\", \"The start time for the meeting\", \"string\", \"2025-01-01T09:00:00Z\") }}\n", "calendar": {"__rl": true, "mode": "list", "value": "gaturanjenga@gmail.com", "cachedResultName": "gaturanjenga@gmail.com"}, "additionalFields": {"location": "=Online"}}, "credentials": {"googleCalendarOAuth2Api": {"id": "nzPOQoEN0ibAA9xT", "name": "Google Calendar account"}}, "typeVersion": 1.2}, {"id": "9ff2433f-c2f8-4716-aa22-92fb1e4028dd", "name": "update phone meeting time", "type": "n8n-nodes-base.airtable", "position": [3440, -140], "parameters": {"base": {"__rl": true, "mode": "list", "value": "appublMkWVQfHkZ09", "cachedResultUrl": "https://airtable.com/appublMkWVQfHkZ09", "cachedResultName": "Simple applicant tracker"}, "table": {"__rl": true, "mode": "list", "value": "tblllvQaRTSnEr17a", "cachedResultUrl": "https://airtable.com/appublMkWVQfHkZ09/tblllvQaRTSnEr17a", "cachedResultName": "Applicants"}, "columns": {"value": {"id": "={{ $('update questionnaires').item.json.id }}", "Phone interview": "={{ $json.message.content['Start time'] }}"}, "schema": [{"id": "id", "type": "string", "display": true, "removed": false, "readOnly": true, "required": false, "displayName": "id", "defaultMatch": true}, {"id": "Name", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Name", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Email address", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Email address", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Phone", "type": "number", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Phone", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Stage", "type": "options", "display": true, "options": [{"name": "No hire", "value": "No hire"}, {"name": "Interviewing", "value": "Interviewing"}, {"name": "Decision needed", "value": "Decision needed"}, {"name": "Hire", "value": "Hire"}], "removed": true, "readOnly": false, "required": false, "displayName": "Stage", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Applying for", "type": "array", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Applying for", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "CV Link", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "CV Link", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "JD CV score", "type": "number", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "JD CV score", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "CV Score Notes", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "CV Score Notes", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Questonnaires and responses", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Questonnaires and responses", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Phone interview", "type": "dateTime", "display": true, "removed": false, "readOnly": false, "required": false, "displayName": "Phone interview", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Phone interviewer", "type": "array", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Phone interviewer", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Phone interview score", "type": "options", "display": true, "options": [{"name": "0 \u2013 No hire", "value": "0 \u2013 No hire"}, {"name": "1 \u2013 Probably no hire", "value": "1 \u2013 Probably no hire"}, {"name": "2 \u2013 Worth consideration", "value": "2 \u2013 Worth consideration"}, {"name": "3 \u2013 Good candidate", "value": "3 \u2013 Good candidate"}, {"name": "4 \u2013 Please hire this person", "value": "4 \u2013 Please hire this person"}], "removed": true, "readOnly": false, "required": false, "displayName": "Phone interview score", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Phone interview notes", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Phone interview notes", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Onsite interview", "type": "dateTime", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Onsite interview", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Onsite interviewer", "type": "array", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Onsite interviewer", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Onsite interview score", "type": "options", "display": true, "options": [{"name": "0 \u2013 No hire", "value": "0 \u2013 No hire"}, {"name": "1 \u2013 Probably no hire", "value": "1 \u2013 Probably no hire"}, {"name": "2 \u2013 Worth consideration", "value": "2 \u2013 Worth consideration"}, {"name": "3 \u2013 Good candidate", "value": "3 \u2013 Good candidate"}, {"name": "4 \u2013 Please hire this person", "value": "4 \u2013 Please hire this person"}], "removed": true, "readOnly": false, "required": false, "displayName": "Onsite interview score", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Onsite interview notes", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Onsite interview notes", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Attachments", "type": "array", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Attachments", "defaultMatch": false, "canBeUsedToMatch": true}], "mappingMode": "defineBelow", "matchingColumns": ["id"]}, "options": {}, "operation": "update"}, "credentials": {"airtableTokenApi": {"id": "gQtK3HX661rFA6KW", "name": "gaturanjenga account"}}, "typeVersion": 2.1}, {"id": "a9233b89-c4a4-4c68-bb88-ce34381f9c99", "name": "Screening Questions", "type": "@n8n/n8n-nodes-langchain.openAi", "position": [3660, -140], "parameters": {"modelId": {"__rl": true, "mode": "list", "value": "gpt-4o", "cachedResultName": "GPT-4O"}, "options": {}, "messages": {"values": [{"content": "=Given the job description, along with the candidate's CV and their responses to the questionnaires, generate a list of screening questions that will help gauge the candidate's suitability for the role. The questions should focus on understanding the candidate\u2019s relevant experience, skills, and cultural fit. The questions should take into account both the job description and the candidate's background and responses. Provide a minimum of 5 questions.\n\nUse the tools to get the job description and the applicant's responses to the questionnaires.\n\nApplicant's CV:\n{{ $('Extract from File').item.json.text }}\n\n\nGive the output as various sentences as a paragraph with every new question in a new line:\nScreening Questions:"}]}, "jsonOutput": true}, "credentials": {"openAiApi": {"id": "lcpI0YZU9bebg3uW", "name": "OpenAi account"}}, "typeVersion": 1.7}, {"id": "de53c452-bd8f-4bdb-88a9-152f287bd796", "name": "job_posting1", "type": "n8n-nodes-base.airtableTool", "position": [3680, 80], "parameters": {"base": {"__rl": true, "mode": "list", "value": "appublMkWVQfHkZ09", "cachedResultUrl": "https://airtable.com/appublMkWVQfHkZ09", "cachedResultName": "Simple applicant tracker"}, "table": {"__rl": true, "mode": "list", "value": "tbljhmLdPULqSya0d", "cachedResultUrl": "https://airtable.com/appublMkWVQfHkZ09/tbljhmLdPULqSya0d", "cachedResultName": "Positions"}, "options": {}, "operation": "search"}, "credentials": {"airtableTokenApi": {"id": "gQtK3HX661rFA6KW", "name": "gaturanjenga account"}}, "typeVersion": 2.1}, {"id": "dcca85af-d194-427c-83a1-3ef686e4e4c4", "name": "candidate_insights1", "type": "n8n-nodes-base.airtableTool", "position": [3880, 80], "parameters": {"id": "={{ $('update questionnaires').item.json.id }}", "base": {"__rl": true, "mode": "list", "value": "appublMkWVQfHkZ09", "cachedResultUrl": "https://airtable.com/appublMkWVQfHkZ09", "cachedResultName": "Simple applicant tracker"}, "table": {"__rl": true, "mode": "list", "value": "tblllvQaRTSnEr17a", "cachedResultUrl": "https://airtable.com/appublMkWVQfHkZ09/tblllvQaRTSnEr17a", "cachedResultName": "Applicants"}, "options": {}}, "credentials": {"airtableTokenApi": {"id": "gQtK3HX661rFA6KW", "name": "gaturanjenga account"}}, "typeVersion": 2.1}, {"id": "092bc9a2-7d22-436c-a625-f182a55caf06", "name": "screening questions", "type": "n8n-nodes-base.airtable", "position": [4240, -140], "parameters": {"base": {"__rl": true, "mode": "list", "value": "appublMkWVQfHkZ09", "cachedResultUrl": "https://airtable.com/appublMkWVQfHkZ09", "cachedResultName": "Simple applicant tracker"}, "table": {"__rl": true, "mode": "list", "value": "tblllvQaRTSnEr17a", "cachedResultUrl": "https://airtable.com/appublMkWVQfHkZ09/tblllvQaRTSnEr17a", "cachedResultName": "Applicants"}, "columns": {"value": {"id": "={{ $('update phone meeting time').item.json.id }}", "Phne interview screening questions": "={{ $json['Screening Questions'] }}"}, "schema": [{"id": "id", "type": "string", "display": true, "removed": false, "readOnly": true, "required": false, "displayName": "id", "defaultMatch": true}, {"id": "Name", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Name", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Email address", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Email address", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Phone", "type": "number", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Phone", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Stage", "type": "options", "display": true, "options": [{"name": "No hire", "value": "No hire"}, {"name": "Interviewing", "value": "Interviewing"}, {"name": "Decision needed", "value": "Decision needed"}, {"name": "Hire", "value": "Hire"}], "removed": true, "readOnly": false, "required": false, "displayName": "Stage", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Applying for", "type": "array", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Applying for", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "CV Link", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "CV Link", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "JD CV score", "type": "number", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "JD CV score", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "CV Score Notes", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "CV Score Notes", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Questonnaires and responses", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Questonnaires and responses", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Phone interview", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Phone interview", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Phne interview screening questions", "type": "string", "display": true, "removed": false, "readOnly": false, "required": false, "displayName": "Phne interview screening questions", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Phone interviewer", "type": "array", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Phone interviewer", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Phone interview score", "type": "options", "display": true, "options": [{"name": "0 \u2013 No hire", "value": "0 \u2013 No hire"}, {"name": "1 \u2013 Probably no hire", "value": "1 \u2013 Probably no hire"}, {"name": "2 \u2013 Worth consideration", "value": "2 \u2013 Worth consideration"}, {"name": "3 \u2013 Good candidate", "value": "3 \u2013 Good candidate"}, {"name": "4 \u2013 Please hire this person", "value": "4 \u2013 Please hire this person"}], "removed": true, "readOnly": false, "required": false, "displayName": "Phone interview score", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Phone interview notes", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Phone interview notes", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Onsite interview", "type": "dateTime", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Onsite interview", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Onsite interviewer", "type": "array", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Onsite interviewer", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Onsite interview score", "type": "options", "display": true, "options": [{"name": "0 \u2013 No hire", "value": "0 \u2013 No hire"}, {"name": "1 \u2013 Probably no hire", "value": "1 \u2013 Probably no hire"}, {"name": "2 \u2013 Worth consideration", "value": "2 \u2013 Worth consideration"}, {"name": "3 \u2013 Good candidate", "value": "3 \u2013 Good candidate"}, {"name": "4 \u2013 Please hire this person", "value": "4 \u2013 Please hire this person"}], "removed": true, "readOnly": false, "required": false, "displayName": "Onsite interview score", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Onsite interview notes", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Onsite interview notes", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Attachments", "type": "array", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Attachments", "defaultMatch": false, "canBeUsedToMatch": true}], "mappingMode": "defineBelow", "matchingColumns": ["id"]}, "options": {}, "operation": "update"}, "credentials": {"airtableTokenApi": {"id": "gQtK3HX661rFA6KW", "name": "gaturanjenga account"}}, "typeVersion": 2.1}, {"id": "c466c71b-ab9d-41f0-9467-975f62a80ad6", "name": "Edit Fields1", "type": "n8n-nodes-base.set", "position": [4020, -140], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "d51edc4a-60cd-41fe-8cc3-afc3c266d588", "name": "Screening Questions", "type": "string", "value": "={{ $json.message.content['Screening Questions'] }}"}]}}, "typeVersion": 3.4}, {"id": "4bfab808-9353-4293-8e21-f8ca64095aaa", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [3640, -200], "parameters": {"width": 720, "height": 420, "content": "## Generate Screening Questions and post to Airtable"}, "typeVersion": 1}, {"id": "9635d334-8ff7-4c16-813e-d91a5765c252", "name": "Sticky Note5", "type": "n8n-nodes-base.stickyNote", "position": [-1300, -300], "parameters": {"width": 580, "height": 460, "content": "## Actions\n- ### Change the `Form Description` with the job description you are hiring for.\n- ### Make sure to check and change the prompts if need be to suit your use case.\n- ### Use the Simple Applicant Tracker template on Airtable to set up the tables required."}, "typeVersion": 1}]
{"AI Agent": {"main": [[{"node": "shortlisted?", "type": "main", "index": 0}]]}, "Airtable": {"main": [[{"node": "download CV", "type": "main", "index": 0}]]}, "Airtable1": {"ai_tool": [[{"node": "AI Agent", "type": "ai_tool", "index": 0}]]}, "Airtable2": {"ai_tool": [[{"node": "generate questionnaires", "type": "ai_tool", "index": 0}]]}, "Send Email": {"main": [[{"node": "Book Meeting", "type": "main", "index": 0}]]}, "Edit Fields": {"main": [[{"node": "Send Email", "type": "main", "index": 0}]]}, "download CV": {"main": [[{"node": "Extract from File", "type": "main", "index": 0}]]}, "job_posting": {"ai_tool": [[{"node": "Personalize email", "type": "ai_tool", "index": 0}]]}, "Book Meeting": {"main": [[{"node": "update phone meeting time", "type": "main", "index": 0}]]}, "Edit Fields1": {"main": [[{"node": "screening questions", "type": "main", "index": 0}]]}, "job_posting1": {"ai_tool": [[{"node": "Screening Questions", "type": "ai_tool", "index": 0}]]}, "shortlisted?": {"main": [[{"node": "Potential Hire", "type": "main", "index": 0}], [{"node": "Rejected", "type": "main", "index": 0}]]}, "Potential Hire": {"main": [[{"node": "generate questionnaires", "type": "main", "index": 0}]]}, "questionnaires": {"main": [[{"node": "update questionnaires", "type": "main", "index": 0}]]}, "Google Calendar": {"ai_tool": [[{"node": "Book Meeting", "type": "ai_tool", "index": 0}]]}, "Extract from File": {"main": [[{"node": "AI Agent", "type": "main", "index": 0}]]}, "OpenAI Chat Model": {"ai_languageModel": [[{"node": "AI Agent", "type": "ai_languageModel", "index": 0}]]}, "Personalize email": {"main": [[{"node": "Edit Fields", "type": "main", "index": 0}]]}, "applicant details": {"main": [[{"node": "Airtable", "type": "main", "index": 0}]]}, "On form submission": {"main": [[{"node": "Upload CV to google drive", "type": "main", "index": 0}]]}, "candidate_insights": {"ai_tool": [[{"node": "Personalize email", "type": "ai_tool", "index": 0}]]}, "Screening Questions": {"main": [[{"node": "Edit Fields1", "type": "main", "index": 0}]]}, "candidate_insights1": {"ai_tool": [[{"node": "Screening Questions", "type": "ai_tool", "index": 0}]]}, "update questionnaires": {"main": [[{"node": "Personalize email", "type": "main", "index": 0}]]}, "generate questionnaires": {"main": [[{"node": "questionnaires", "type": "main", "index": 0}]]}, "Structured Output Parser": {"ai_outputParser": [[{"node": "AI Agent", "type": "ai_outputParser", "index": 0}]]}, "Upload CV to google drive": {"main": [[{"node": "applicant details", "type": "main", "index": 0}]]}, "update phone meeting time": {"main": [[{"node": "Screening Questions", "type": "main", "index": 0}]]}}
Email Subscription Service with n8n Forms, Airtable and AI (1)
[{"id": "4dd52c72-9a9b-4db4-8de5-5b12b1e5c4be", "name": "Schedule Trigger", "type": "n8n-nodes-base.scheduleTrigger", "position": [180, 1480], "parameters": {"rule": {"interval": [{"triggerAtHour": 9}]}}, "typeVersion": 1.2}, {"id": "9226181c-b84c-4ea1-a5b4-eedb6c62037b", "name": "Search daily", "type": "n8n-nodes-base.airtable", "position": [440, 1480], "parameters": {"base": {"__rl": true, "mode": "list", "value": "appL3dptT6ZTSzY9v", "cachedResultUrl": "https://airtable.com/appL3dptT6ZTSzY9v", "cachedResultName": "Scheduled Emails"}, "table": {"__rl": true, "mode": "list", "value": "tblzR9vSuFUzlQNMI", "cachedResultUrl": "https://airtable.com/appL3dptT6ZTSzY9v/tblzR9vSuFUzlQNMI", "cachedResultName": "Table 1"}, "options": {}, "operation": "search", "filterByFormula": "AND({Status} = 'active', {Interval} = 'daily')"}, "credentials": {"airtableTokenApi": {"id": "Und0frCQ6SNVX3VV", "name": "Airtable Personal Access Token account"}}, "typeVersion": 2.1}, {"id": "1a3b6224-2f66-41c6-8b3d-be286cf16370", "name": "Search weekly", "type": "n8n-nodes-base.airtable", "position": [440, 1660], "parameters": {"base": {"__rl": true, "mode": "list", "value": "appL3dptT6ZTSzY9v", "cachedResultUrl": "https://airtable.com/appL3dptT6ZTSzY9v", "cachedResultName": "Scheduled Emails"}, "table": {"__rl": true, "mode": "list", "value": "tblzR9vSuFUzlQNMI", "cachedResultUrl": "https://airtable.com/appL3dptT6ZTSzY9v/tblzR9vSuFUzlQNMI", "cachedResultName": "Table 1"}, "options": {}, "operation": "search", "filterByFormula": "=AND(\n {Status} = 'active', \n {Interval} = 'weekly', \n {Last Sent} <= DATEADD(TODAY(), -7, 'days')\n)"}, "credentials": {"airtableTokenApi": {"id": "Und0frCQ6SNVX3VV", "name": "Airtable Personal Access Token account"}}, "typeVersion": 2.1}, {"id": "1ea47e14-0a28-4780-95c7-31e24eb724d5", "name": "confirmation email1", "type": "n8n-nodes-base.gmail", "position": [620, 820], "webhookId": "dd8bd6df-2013-4f8d-a2cc-cd9b3913e3d2", "parameters": {"sendTo": "={{ $('Subscribe Form').item.json.email }}", "message": "=This is to confirm your request to subscribe to \"Learn something every day!\" - a free service to send you facts about your favourite topics.\n\nTopic: {{ $('Subscribe Form').item.json.topic }}\nSchedule: {{ $('Subscribe Form').item.json.frequency }}", "options": {"appendAttribution": false}, "subject": "Learn something every day confirmation"}, "credentials": {"gmailOAuth2": {"id": "Sf5Gfl9NiFTNXFWb", "name": "Gmail account"}}, "typeVersion": 2.1}, {"id": "d95262af-1b52-4f9c-8346-183b4eee8544", "name": "Execute Workflow", "type": "n8n-nodes-base.executeWorkflow", "position": [1140, 1480], "parameters": {"mode": "each", "options": {"waitForSubWorkflow": false}, "workflowId": {"__rl": true, "mode": "id", "value": "={{ $workflow.id }}"}}, "typeVersion": 1.1}, {"id": "075292af-7a66-4275-ac2d-3c392189a10c", "name": "Create Event", "type": "n8n-nodes-base.set", "position": [980, 1480], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "b28a0142-a028-471a-8180-9883e930feea", "name": "email", "type": "string", "value": "={{ $json.Email }}"}, {"id": "970f5495-05df-42b6-a422-b2ac27f8eb95", "name": "topic", "type": "string", "value": "={{ $json.Topic }}"}, {"id": "e871c431-948f-4b80-aa17-1e4266674663", "name": "interval", "type": "string", "value": "={{ $json.Interval }}"}, {"id": "9b72597d-1446-4ef3-86e5-0a071c69155b", "name": "id", "type": "string", "value": "={{ $json.id }}"}, {"id": "b17039c2-14a2-4811-9528-88ae963e44f7", "name": "created_at", "type": "string", "value": "={{ $json.Created }}"}]}}, "typeVersion": 3.4}, {"id": "28776aaf-6bd9-4f9f-bcf0-3d4401a74219", "name": "Execute Workflow Trigger", "type": "n8n-nodes-base.executeWorkflowTrigger", "position": [1360, 1480], "parameters": {}, "typeVersion": 1}, {"id": "0eb62e75-228b-452b-80ab-f9ef3ad33204", "name": "Unsubscribe Form", "type": "n8n-nodes-base.formTrigger", "position": [180, 1160], "webhookId": "e64db96d-5e61-40d5-88fb-761621a829ab", "parameters": {"options": {"path": "free-factoids-unsubscribe"}, "formTitle": "Unsubscribe from Learn Something Every Day", "formFields": {"values": [{"fieldLabel": "ID", "requiredField": true}, {"fieldType": "dropdown", "fieldLabel": "Reason For Unsubscribe", "multiselect": true, "fieldOptions": {"values": [{"option": "Emails not relevant"}, {"option": "Too many Emails"}, {"option": "I did not sign up to this service"}]}}]}, "formDescription": "We're sorry to see you go! Please take a moment to help us improve the service."}, "typeVersion": 2.2}, {"id": "f889efe9-dc3c-428b-ad8e-4f7d17f23e75", "name": "Set Email Vars", "type": "n8n-nodes-base.set", "position": [2500, 1480], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "62a684fb-16f9-4326-8eeb-777d604b305a", "name": "to", "type": "string", "value": "={{ $('Execute Workflow Trigger').first().json.email }},jim@height.io"}, {"id": "4270849e-c805-4580-9088-e8d1c3ef2fb4", "name": "subject", "type": "string", "value": "=Your {{ $('Execute Workflow Trigger').first().json.interval }} factoid"}, {"id": "81d0e897-2496-4a3c-b16c-9319338f899f", "name": "message", "type": "string", "value": "=<p>\n<strong>You asked about \"{{ $('Execution Data').first().json.topic.replace('\"','') }}\"</strong>\n</p>\n<p>\n<i>{{ $('Content Generation Agent').first().json.output }}</i>\n</p>"}, {"id": "ee05de7b-5342-4deb-8118-edaf235d92cc", "name": "unsubscribe_link", "type": "string", "value": "=https://<MY_HOST>/form/inspiration-unsubscribe?ID={{ $('Execute Workflow Trigger').first().json.id }}"}]}, "includeOtherFields": true}, "typeVersion": 3.4}, {"id": "84741e6d-f5be-440d-8633-4eb30ccce170", "name": "Log Last Sent", "type": "n8n-nodes-base.airtable", "position": [2860, 1480], "parameters": {"base": {"__rl": true, "mode": "list", "value": "appL3dptT6ZTSzY9v", "cachedResultUrl": "https://airtable.com/appL3dptT6ZTSzY9v", "cachedResultName": "Scheduled Emails"}, "table": {"__rl": true, "mode": "list", "value": "tblzR9vSuFUzlQNMI", "cachedResultUrl": "https://airtable.com/appL3dptT6ZTSzY9v/tblzR9vSuFUzlQNMI", "cachedResultName": "Table 1"}, "columns": {"value": {"id": "={{ $('Execute Workflow Trigger').first().json.id }}", "Last Sent": "2024-11-29T13:34:11"}, "schema": [{"id": "id", "type": "string", "display": true, "removed": false, "readOnly": true, "required": false, "displayName": "id", "defaultMatch": true}, {"id": "Name", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Name", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Email", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Email", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Status", "type": "options", "display": true, "options": [{"name": "inactive", "value": "inactive"}, {"name": "active", "value": "active"}], "removed": true, "readOnly": false, "required": false, "displayName": "Status", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Interval", "type": "options", "display": true, "options": [{"name": "daily", "value": "daily"}, {"name": "weekly", "value": "weekly"}, {"name": "surprise", "value": "surprise"}], "removed": true, "readOnly": false, "required": false, "displayName": "Interval", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Start Day", "type": "options", "display": true, "options": [{"name": "Mon", "value": "Mon"}, {"name": "Tue", "value": "Tue"}, {"name": "Wed", "value": "Wed"}, {"name": "Thu", "value": "Thu"}, {"name": "Fri", "value": "Fri"}, {"name": "Sat", "value": "Sat"}, {"name": "Sun", "value": "Sun"}], "removed": true, "readOnly": false, "required": false, "displayName": "Start Day", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Topic", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Topic", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Created", "type": "string", "display": true, "removed": true, "readOnly": true, "required": false, "displayName": "Created", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Last Modified", "type": "string", "display": true, "removed": true, "readOnly": true, "required": false, "displayName": "Last Modified", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Last Sent", "type": "dateTime", "display": true, "removed": false, "readOnly": false, "required": false, "displayName": "Last Sent", "defaultMatch": false, "canBeUsedToMatch": true}], "mappingMode": "defineBelow", "matchingColumns": ["id"]}, "options": {}, "operation": "update"}, "credentials": {"airtableTokenApi": {"id": "Und0frCQ6SNVX3VV", "name": "Airtable Personal Access Token account"}}, "typeVersion": 2.1}, {"id": "88f864d6-13fb-4f09-b22d-030d016678e1", "name": "Search surprise", "type": "n8n-nodes-base.airtable", "position": [440, 1840], "parameters": {"base": {"__rl": true, "mode": "list", "value": "appL3dptT6ZTSzY9v", "cachedResultUrl": "https://airtable.com/appL3dptT6ZTSzY9v", "cachedResultName": "Scheduled Emails"}, "table": {"__rl": true, "mode": "list", "value": "tblzR9vSuFUzlQNMI", "cachedResultUrl": "https://airtable.com/appL3dptT6ZTSzY9v/tblzR9vSuFUzlQNMI", "cachedResultName": "Table 1"}, "options": {}, "operation": "search", "filterByFormula": "=AND(\n {Status} = 'active', \n {Interval} = 'surprise'\n)"}, "credentials": {"airtableTokenApi": {"id": "Und0frCQ6SNVX3VV", "name": "Airtable Personal Access Token account"}}, "typeVersion": 2.1}, {"id": "28238d9a-7bc0-4a22-bb4e-a7a2827e4da3", "name": "Should Send = True", "type": "n8n-nodes-base.filter", "position": [800, 1840], "parameters": {"options": {}, "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "9aaf9ae2-8f96-443a-8294-c04270296b22", "operator": {"type": "boolean", "operation": "true", "singleValue": true}, "leftValue": "={{ $json.should_send }}", "rightValue": ""}]}}, "typeVersion": 2.2}, {"id": "3a46dd3d-48a6-40ca-8823-0516aa9f73a4", "name": "Should Send?", "type": "n8n-nodes-base.code", "position": [620, 1840], "parameters": {"mode": "runOnceForEachItem", "jsCode": "const luckyPick = Math.floor(Math.random() * 10) + 1;\n$input.item.json.should_send = luckyPick == 8;\nreturn $input.item;"}, "typeVersion": 2}, {"id": "3611da19-920b-48e6-84a4-f7be0b3a78fc", "name": "Create Subscriber", "type": "n8n-nodes-base.airtable", "position": [440, 820], "parameters": {"base": {"__rl": true, "mode": "list", "value": "appL3dptT6ZTSzY9v", "cachedResultUrl": "https://airtable.com/appL3dptT6ZTSzY9v", "cachedResultName": "Scheduled Emails"}, "table": {"__rl": true, "mode": "list", "value": "tblzR9vSuFUzlQNMI", "cachedResultUrl": "https://airtable.com/appL3dptT6ZTSzY9v/tblzR9vSuFUzlQNMI", "cachedResultName": "Table 1"}, "columns": {"value": {"Email": "={{ $json.email }}", "Topic": "={{ $json.topic }}", "Status": "active", "Interval": "={{ $json.frequency }}", "Start Day": "={{ $json.submittedAt.toDateTime().format('EEE') }}"}, "schema": [{"id": "Name", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Name", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Email", "type": "string", "display": true, "removed": false, "readOnly": false, "required": false, "displayName": "Email", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Status", "type": "options", "display": true, "options": [{"name": "inactive", "value": "inactive"}, {"name": "active", "value": "active"}], "removed": false, "readOnly": false, "required": false, "displayName": "Status", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Interval", "type": "options", "display": true, "options": [{"name": "daily", "value": "daily"}, {"name": "weekly", "value": "weekly"}, {"name": "surprise", "value": "surprise"}], "removed": false, "readOnly": false, "required": false, "displayName": "Interval", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Start Day", "type": "options", "display": true, "options": [{"name": "Mon", "value": "Mon"}, {"name": "Tue", "value": "Tue"}, {"name": "Wed", "value": "Wed"}, {"name": "Thu", "value": "Thu"}, {"name": "Fri", "value": "Fri"}, {"name": "Sat", "value": "Sat"}, {"name": "Sun", "value": "Sun"}], "removed": false, "readOnly": false, "required": false, "displayName": "Start Day", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Topic", "type": "string", "display": true, "removed": false, "readOnly": false, "required": false, "displayName": "Topic", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Created", "type": "string", "display": true, "removed": true, "readOnly": true, "required": false, "displayName": "Created", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Last Modified", "type": "string", "display": true, "removed": true, "readOnly": true, "required": false, "displayName": "Last Modified", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Last Sent", "type": "dateTime", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Last Sent", "defaultMatch": false, "canBeUsedToMatch": true}], "mappingMode": "defineBelow", "matchingColumns": ["Email"]}, "options": {}, "operation": "upsert"}, "credentials": {"airtableTokenApi": {"id": "Und0frCQ6SNVX3VV", "name": "Airtable Personal Access Token account"}}, "typeVersion": 2.1}, {"id": "2213a81f-53a9-4142-9586-e87b88710eec", "name": "Update Subscriber", "type": "n8n-nodes-base.airtable", "position": [440, 1160], "parameters": {"base": {"__rl": true, "mode": "list", "value": "appL3dptT6ZTSzY9v", "cachedResultUrl": "https://airtable.com/appL3dptT6ZTSzY9v", "cachedResultName": "Scheduled Emails"}, "table": {"__rl": true, "mode": "list", "value": "tblzR9vSuFUzlQNMI", "cachedResultUrl": "https://airtable.com/appL3dptT6ZTSzY9v/tblzR9vSuFUzlQNMI", "cachedResultName": "Table 1"}, "columns": {"value": {"id": "={{ $json.ID }}", "Status": "inactive"}, "schema": [{"id": "id", "type": "string", "display": true, "removed": false, "readOnly": true, "required": false, "displayName": "id", "defaultMatch": true}, {"id": "Name", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Name", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Email", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Email", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Status", "type": "options", "display": true, "options": [{"name": "inactive", "value": "inactive"}, {"name": "active", "value": "active"}], "removed": false, "readOnly": false, "required": false, "displayName": "Status", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Interval", "type": "options", "display": true, "options": [{"name": "daily", "value": "daily"}, {"name": "weekly", "value": "weekly"}], "removed": true, "readOnly": false, "required": false, "displayName": "Interval", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Start Day", "type": "options", "display": true, "options": [{"name": "Mon", "value": "Mon"}, {"name": "Tue", "value": "Tue"}, {"name": "Wed", "value": "Wed"}, {"name": "Thu", "value": "Thu"}, {"name": "Fri", "value": "Fri"}, {"name": "Sat", "value": "Sat"}, {"name": "Sun", "value": "Sun"}], "removed": true, "readOnly": false, "required": false, "displayName": "Start Day", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Topic", "type": "string", "display": true, "removed": true, "readOnly": false, "required": false, "displayName": "Topic", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Created", "type": "string", "display": true, "removed": true, "readOnly": true, "required": false, "displayName": "Created", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Last Modified", "type": "string", "display": true, "removed": true, "readOnly": true, "required": false, "displayName": "Last Modified", "defaultMatch": false, "canBeUsedToMatch": true}], "mappingMode": "defineBelow", "matchingColumns": ["id"]}, "options": {}, "operation": "update"}, "credentials": {"airtableTokenApi": {"id": "Und0frCQ6SNVX3VV", "name": "Airtable Personal Access Token account"}}, "typeVersion": 2.1}, {"id": "c94ec18b-e0cf-4859-8b89-23abdd63739c", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [900, 1280], "parameters": {"color": 7, "width": 335, "height": 173, "content": "### 4. Using Subworkflows to run executions concurrently\nThis configuration is desired when sequential execution is slow and unnecessary. Also if one email fails, it doesn't fail the execution for everyone else."}, "typeVersion": 1}, {"id": "c14cab28-13eb-4d91-8578-8187a95a8909", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [180, 700], "parameters": {"color": 7, "width": 380, "height": 80, "content": "### 1. Subscribe flow\nUse a form to allow users to subscribe to the service."}, "typeVersion": 1}, {"id": "0e44ada0-f8a7-440e-aded-33b446190a08", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [180, 1020], "parameters": {"color": 7, "width": 355, "height": 115, "content": "### 2. Unsubscribe flow\n* Uses Form's pre-fill field feature to identify user\n* Doesn't use \"email\" as identifier so you can't unsubscribe others"}, "typeVersion": 1}, {"id": "e67bdffe-ccfc-4818-990d-b2a5ab613035", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [180, 1340], "parameters": {"color": 7, "width": 347, "height": 114, "content": "### 3. Scheduled Trigger\n* Runs every day at 9am\n* Handles all 3 frequency types\n* Send emails concurrently"}, "typeVersion": 1}, {"id": "ce7d5310-7170-46d3-b8d8-3f97407f9dfd", "name": "Subscribe Form", "type": "n8n-nodes-base.formTrigger", "position": [180, 820], "webhookId": "c6abe3e3-ba87-4124-a227-84e253581b58", "parameters": {"options": {"path": "free-factoids-subscribe", "appendAttribution": false, "respondWithOptions": {"values": {"formSubmittedText": "Thanks! Your factoid is on its way!"}}}, "formTitle": "Learn something every day!", "formFields": {"values": [{"fieldType": "textarea", "fieldLabel": "topic", "placeholder": "What topic(s) would you like to learn about?", "requiredField": true}, {"fieldType": "email", "fieldLabel": "email", "placeholder": "eg. jim@example.com", "requiredField": true}, {"fieldType": "dropdown", "fieldLabel": "frequency", "fieldOptions": {"values": [{"option": "daily"}, {"option": "weekly"}, {"option": "surprise me"}]}, "requiredField": true}]}, "formDescription": "Get a fact a day (or week) about any subject sent to your inbox."}, "typeVersion": 2.2}, {"id": "a5d50886-7d6b-4bf8-b376-b23c12a60608", "name": "Execution Data", "type": "n8n-nodes-base.executionData", "position": [1560, 1480], "parameters": {"dataToSave": {"values": [{"key": "email", "value": "={{ $json.email }}"}]}}, "typeVersion": 1}, {"id": "69b40d8d-7734-47f1-89fe-9ea0378424b7", "name": "Window Buffer Memory", "type": "@n8n/n8n-nodes-langchain.memoryBufferWindow", "position": [1860, 1680], "parameters": {"sessionKey": "=scheduled_send_{{ $json.email }}", "sessionIdType": "customKey"}, "typeVersion": 1.3}, {"id": "f83cff18-f41f-4a63-9d43-7e3947aae386", "name": "Wikipedia", "type": "@n8n/n8n-nodes-langchain.toolWikipedia", "position": [2020, 1680], "parameters": {}, "typeVersion": 1}, {"id": "77457037-e3ab-42f1-948b-b994d42f2f6e", "name": "Content Generation Agent", "type": "@n8n/n8n-nodes-langchain.agent", "position": [1780, 1460], "parameters": {"text": "=Generate an new factoid on the following topic: \"{{ $json.topic.replace('\"','') }}\"\nEnsure it is unique and not one generated previously.", "options": {}, "promptType": "define"}, "typeVersion": 1.7}, {"id": "cdfdd870-48b6-4c7d-a7d1-a22d70423e37", "name": "Groq Chat Model", "type": "@n8n/n8n-nodes-langchain.lmChatGroq", "position": [1720, 1680], "parameters": {"model": "llama-3.3-70b-versatile", "options": {}}, "credentials": {"groqApi": {"id": "02xZ4o87lUMUFmbT", "name": "Groq account"}}, "typeVersion": 1}, {"id": "87df322d-a544-476f-b2ff-83feb619fe7f", "name": "Generate Image", "type": "@n8n/n8n-nodes-langchain.openAi", "position": [2120, 1460], "parameters": {"prompt": "=Generate a child-friendly illustration which compliments the following paragraph:\n{{ $json.output }}", "options": {}, "resource": "image"}, "credentials": {"openAiApi": {"id": "8gccIjcuf3gvaoEr", "name": "OpenAi account"}}, "typeVersion": 1.7}, {"id": "5c8d9e72-4015-44da-b5d5-829864d33672", "name": "Resize Image", "type": "n8n-nodes-base.editImage", "position": [2280, 1460], "parameters": {"width": 480, "height": 360, "options": {}, "operation": "resize"}, "typeVersion": 1}, {"id": "a9939fad-98b3-4894-aae0-c11fa40d09da", "name": "Send Message", "type": "n8n-nodes-base.gmail", "position": [2680, 1480], "webhookId": "dd8bd6df-2013-4f8d-a2cc-cd9b3913e3d2", "parameters": {"sendTo": "={{ $json.to }}", "message": "=<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"UTF-8\">\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n <title>{{ $json.subject }}</title>\n</head>\n<body>\n {{ $json.message }}\n<p>\n<a href=\"{{ $json.unsubscribe_link }}\">Unsubscribe</a>\n</p>\n</body>\n</html>\n", "options": {"attachmentsUi": {"attachmentsBinary": [{}]}, "appendAttribution": false}, "subject": "={{ $json.subject }}"}, "credentials": {"gmailOAuth2": {"id": "Sf5Gfl9NiFTNXFWb", "name": "Gmail account"}}, "typeVersion": 2.1}, {"id": "10b6ad35-fc1c-47a2-b234-5de3557d1164", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [1320, 1660], "parameters": {"color": 7, "width": 335, "height": 113, "content": "### 5. Use Execution Data to Filter Logs\nIf you've registered for community+ or are on n8n cloud, best practice is to use execution node to allow filtering of execution logs."}, "typeVersion": 1}, {"id": "e3563fae-ff35-457b-9fb1-784eda637518", "name": "Sticky Note5", "type": "n8n-nodes-base.stickyNote", "position": [1780, 1280], "parameters": {"color": 7, "width": 340, "height": 140, "content": "### 6. Use AI to Generate Factoid and Image\nUse an AI agent to automate the generation of factoids as requested by the user. This is a simple example but we recommend a adding a unique touch to stand out from the crowd!"}, "typeVersion": 1}, {"id": "d1016c5d-c855-44c5-8ad3-a534bedaa8cf", "name": "Sticky Note6", "type": "n8n-nodes-base.stickyNote", "position": [2500, 1040], "parameters": {"color": 7, "width": 460, "height": 400, "content": "### 7. Send Email to User\nFinally, send a message to the user with both text and image.\nLog the event in the Airtable for later analysis if required.\n\n![Screenshot of email result](https://res.cloudinary.com/daglih2g8/image/upload/f_auto,q_auto/v1/n8n-workflows/dbpctdhohj3vlewy6oyc)"}, "typeVersion": 1}, {"id": "773075fa-e5a2-4d4f-8527-eb07c7038b00", "name": "Sticky Note7", "type": "n8n-nodes-base.stickyNote", "position": [-420, 680], "parameters": {"width": 480, "height": 900, "content": "## Try It Out!\n\n### This n8n templates demonstrates how to build a simple subscriber service entirely in n8n using n8n forms as a frontend, n8n generally as the backend and Airtable as the storage layer.\n\nThis template in particular shows a fully automated service to send automated messages containing facts about a topic the user requested for.\n\n### How it works\n* An n8n form is setup up to allow users to subscribe with a desired topic and interval of which to recieve messages via n8n forms which is then added to the Airtable.\n* A scheduled trigger is executed every morning and searches for subscribers to send messages for based on their desired intervals.\n* Once found, Subscribers are sent to a subworkflow which performs the text content generation via an AI agent and also uses a vision model to generate an image.\n* Both are attached to an email which is sent to the subscriber. This email also includes an unsubscribe link.\n* The unsubscribe flow works similarly via n8n form interface which when submitted disables further scheduled emails to the user.\n\n## How to use\n* Make a copy of sample Airtable here: https://airtable.com/appL3dptT6ZTSzY9v/shrLukHafy5bwDRfD\n* Make sure the workflow is \"activated\" and the forms are available and reachable by your audience.\n\n\n### Need Help?\nJoin the [Discord](https://discord.com/invite/XPKeKXeB7d) or ask in the [Forum](https://community.n8n.io/)!\n\nHappy Hacking!"}, "typeVersion": 1}]
{"Wikipedia": {"ai_tool": [[{"node": "Content Generation Agent", "type": "ai_tool", "index": 0}]]}, "Create Event": {"main": [[{"node": "Execute Workflow", "type": "main", "index": 0}]]}, "Resize Image": {"main": [[{"node": "Set Email Vars", "type": "main", "index": 0}]]}, "Search daily": {"main": [[{"node": "Create Event", "type": "main", "index": 0}]]}, "Send Message": {"main": [[{"node": "Log Last Sent", "type": "main", "index": 0}]]}, "Should Send?": {"main": [[{"node": "Should Send = True", "type": "main", "index": 0}]]}, "Search weekly": {"main": [[{"node": "Create Event", "type": "main", "index": 0}]]}, "Execution Data": {"main": [[{"node": "Content Generation Agent", "type": "main", "index": 0}]]}, "Generate Image": {"main": [[{"node": "Resize Image", "type": "main", "index": 0}]]}, "Set Email Vars": {"main": [[{"node": "Send Message", "type": "main", "index": 0}]]}, "Subscribe Form": {"main": [[{"node": "Create Subscriber", "type": "main", "index": 0}]]}, "Groq Chat Model": {"ai_languageModel": [[{"node": "Content Generation Agent", "type": "ai_languageModel", "index": 0}]]}, "Search surprise": {"main": [[{"node": "Should Send?", "type": "main", "index": 0}]]}, "Schedule Trigger": {"main": [[{"node": "Search surprise", "type": "main", "index": 0}, {"node": "Search daily", "type": "main", "index": 0}, {"node": "Search weekly", "type": "main", "index": 0}]]}, "Unsubscribe Form": {"main": [[{"node": "Update Subscriber", "type": "main", "index": 0}]]}, "Create Subscriber": {"main": [[{"node": "confirmation email1", "type": "main", "index": 0}]]}, "Should Send = True": {"main": [[{"node": "Create Event", "type": "main", "index": 0}]]}, "Window Buffer Memory": {"ai_memory": [[{"node": "Content Generation Agent", "type": "ai_memory", "index": 0}]]}, "Content Generation Agent": {"main": [[{"node": "Generate Image", "type": "main", "index": 0}]]}, "Execute Workflow Trigger": {"main": [[{"node": "Execution Data", "type": "main", "index": 0}]]}}
UnleashedSoftware:SakesOrder:getAll:StockOnHand:getAll get
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "e60708c7-7fc5-4b69-9181-7dd94ce4c511"}, {"parameters": {"limit": 1, "filters": {}}, "name": "Unleashed Software", "type": "n8n-nodes-base.unleashedSoftware", "typeVersion": 1, "position": [500, 230], "credentials": {"unleashedSoftwareApi": {"id": "219", "name": "Unleashed API creds"}}, "id": "76856236-9d00-497b-a162-71621943085d"}, {"parameters": {"resource": "stockOnHand", "limit": 1, "filters": {}}, "name": "Unleashed Software1", "type": "n8n-nodes-base.unleashedSoftware", "typeVersion": 1, "position": [500, 380], "credentials": {"unleashedSoftwareApi": {"id": "219", "name": "Unleashed API creds"}}, "id": "f5f1e555-171a-4a6c-a2c0-52c2cd763a9a"}, {"parameters": {"resource": "stockOnHand", "operation": "get", "productId": "={{$node[\"Unleashed Software1\"].json[\"Guid\"]}}"}, "name": "Unleashed Software2", "type": "n8n-nodes-base.unleashedSoftware", "typeVersion": 1, "position": [650, 380], "credentials": {"unleashedSoftwareApi": {"id": "219", "name": "Unleashed API creds"}}, "id": "f0e49947-de25-46b8-8e00-0cc1967832a1"}]
{"Unleashed Software1": {"main": [[{"node": "Unleashed Software2", "type": "main", "index": 0}]]}, "Start": {"main": [[{"node": "Unleashed Software", "type": "main", "index": 0}, {"node": "Unleashed Software1", "type": "main", "index": 0}]]}}
Vero:User:create alias addTags removeTags unsubscribe resubscribe delete:Event:track
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "b7de37cc-c85a-4eac-beec-1f0c1ea5190a"}, {"parameters": {"id": "={{$node[\"Set id & email\"].json[\"id\"]}}", "additionalFields": {"email": "={{$node[\"Set id & email\"].json[\"email\"]}}"}, "dataAttributesUi": {"dataAttributesValues": []}}, "name": "Vero", "type": "n8n-nodes-base.vero", "typeVersion": 1, "position": [550, 300], "credentials": {"veroApi": {"id": "144", "name": "Vero API creds"}}, "id": "d27a15f1-3855-42b0-b3d9-bca97501ed10"}, {"parameters": {"operation": "alias", "id": "={{$node[\"Set id & email\"].json[\"id\"]}}", "newId": "={{$node[\"Set id & email\"].json[\"email\"]}}"}, "name": "Vero1", "type": "n8n-nodes-base.vero", "typeVersion": 1, "position": [700, 300], "credentials": {"veroApi": {"id": "144", "name": "Vero API creds"}}, "id": "ea140d44-f58b-4d57-9ac3-5bf93cddbe93"}, {"parameters": {"operation": "addTags", "id": "={{$node[\"Set id & email\"].json[\"email\"]}}", "tags": "TEST,"}, "name": "Vero2", "type": "n8n-nodes-base.vero", "typeVersion": 1, "position": [850, 300], "credentials": {"veroApi": {"id": "144", "name": "Vero API creds"}}, "id": "903d206c-c3c4-4d20-81b7-a6ea73aeaebf"}, {"parameters": {"operation": "removeTags", "id": "={{$node[\"Set id & email\"].json[\"email\"]}}", "tags": "TEST,"}, "name": "Vero3", "type": "n8n-nodes-base.vero", "typeVersion": 1, "position": [1000, 300], "credentials": {"veroApi": {"id": "144", "name": "Vero API creds"}}, "id": "1e426c6f-88d4-4c23-8c01-9ffcca7bed76"}, {"parameters": {"operation": "unsubscribe", "id": "={{$node[\"Set id & email\"].json[\"email\"]}}"}, "name": "Vero4", "type": "n8n-nodes-base.vero", "typeVersion": 1, "position": [1150, 300], "credentials": {"veroApi": {"id": "144", "name": "Vero API creds"}}, "id": "a92a41ef-d98b-4ff8-931d-d2488777ecf8"}, {"parameters": {"operation": "resubscribe", "id": "={{$node[\"Set id & email\"].json[\"email\"]}}"}, "name": "Vero5", "type": "n8n-nodes-base.vero", "typeVersion": 1, "position": [1300, 300], "credentials": {"veroApi": {"id": "144", "name": "Vero API creds"}}, "id": "629e08e8-9f31-4824-afc1-f09c7fbfdf1a"}, {"parameters": {"operation": "delete", "id": "={{$node[\"Set id & email\"].json[\"email\"]}}"}, "name": "Vero6", "type": "n8n-nodes-base.vero", "typeVersion": 1, "position": [1600, 300], "credentials": {"veroApi": {"id": "144", "name": "Vero API creds"}}, "id": "5da2dd1f-d40e-490c-bb38-9adaf10ebc92"}, {"parameters": {"keepOnlySet": true, "values": {"string": [{"name": "email", "value": "=fake{{Date.now()}}@email.com"}], "number": [{"name": "id", "value": "={{Math.round(Math.random()*1000)}}"}]}, "options": {}}, "name": "Set id & email", "type": "n8n-nodes-base.set", "typeVersion": 1, "position": [400, 300], "id": "76d32334-89e0-4fc0-aa81-e56eaeb206c2"}, {"parameters": {"resource": "event", "id": "={{$node[\"Set id & email\"].json[\"email\"]}}", "email": "={{$node[\"Set id & email\"].json[\"email\"]}}", "eventName": "=Event{{Date.now()}}", "dataAttributesUi": {"dataAttributesValues": [{"key": "Type", "value": "Test"}]}, "extraAttributesUi": {"extraAttributesValues": []}}, "name": "Vero7", "type": "n8n-nodes-base.vero", "typeVersion": 1, "position": [1450, 400], "credentials": {"veroApi": {"id": "144", "name": "Vero API creds"}}, "id": "89b0e1de-a2b6-4f67-a63b-1d7dafdba2c2"}]
{"Vero1": {"main": [[{"node": "Vero2", "type": "main", "index": 0}]]}, "Start": {"main": [[{"node": "Set id & email", "type": "main", "index": 0}]]}, "Vero": {"main": [[{"node": "Vero1", "type": "main", "index": 0}]]}, "Vero2": {"main": [[{"node": "Vero3", "type": "main", "index": 0}]]}, "Vero3": {"main": [[{"node": "Vero4", "type": "main", "index": 0}]]}, "Vero4": {"main": [[{"node": "Vero5", "type": "main", "index": 0}]]}, "Vero5": {"main": [[{"node": "Vero7", "type": "main", "index": 0}]]}, "Set id & email": {"main": [[{"node": "Vero", "type": "main", "index": 0}]]}, "Vero7": {"main": [[{"node": "Vero6", "type": "main", "index": 0}]]}}
Extract data from resume and create PDF with Gotenberg
[{"id": "79849bb5-00a4-42e6-92c4-b06c7a20eb3e", "name": "OpenAI Chat Model", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [1580, 340], "parameters": {"model": "gpt-4-turbo-preview", "options": {"temperature": 0, "responseFormat": "json_object"}}, "credentials": {"openAiApi": {"id": "jazew1WAaSRrjcHp", "name": "OpenAI (workfloows@gmail.com)"}}, "typeVersion": 1}, {"id": "85df0106-1f78-4412-8751-b84d417c8bf9", "name": "Convert education to HTML", "type": "n8n-nodes-base.code", "position": [2420, 180], "parameters": {"mode": "runOnceForEachItem", "jsCode": "function convertToHTML(list) {\n let html = '';\n\n list.forEach((education, index) => {\n if (index > 0) {\n html += '<br /><br />'; // Add a new line if it's not the first item\n }\n html += `<b>Institution:</b> ${education.institution}<br />\n<b>Start year:</b> ${education.start_year}<br />\n<b>Degree:</b> ${education.degree}`;\n });\n\n return html;\n}\n\n// Assuming payload is already defined\nconst payload = $input.item.json.education;\n\nconst htmlOutput = convertToHTML(payload);\nreturn {\n htmlOutput\n};"}, "typeVersion": 2}, {"id": "da4fc45d-712f-4171-b72a-66b74b4d8e05", "name": "Auto-fixing Output Parser", "type": "@n8n/n8n-nodes-langchain.outputParserAutofixing", "position": [1820, 340], "parameters": {}, "typeVersion": 1}, {"id": "225a7513-6fd4-4672-9b40-b10b00f121a7", "name": "OpenAI Chat Model1", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [1740, 520], "parameters": {"options": {"temperature": 0}}, "credentials": {"openAiApi": {"id": "jazew1WAaSRrjcHp", "name": "OpenAI (workfloows@gmail.com)"}}, "typeVersion": 1}, {"id": "0606c99d-a080-4277-b071-1bc0c93bb2e3", "name": "Structured Output Parser", "type": "@n8n/n8n-nodes-langchain.outputParserStructured", "position": [1960, 520], "parameters": {"jsonSchema": "{\n \"type\": \"object\",\n \"properties\": {\n \"personal_info\": {\n \"type\": \"object\",\n \"properties\": {\n \"name\": { \"type\": \"string\" },\n \"address\": { \"type\": \"string\" },\n \"email\": { \"type\": \"string\", \"format\": \"email\" },\n \"github\": { \"type\": \"string\"},\n \"linkedin\": { \"type\": \"string\" }\n }\n },\n \"employment_history\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"position\": { \"type\": \"string\" },\n \"company\": { \"type\": \"string\" },\n \"duration\": { \"type\": \"string\" },\n \"responsibilities\": {\n \"type\": \"array\",\n \"items\": { \"type\": \"string\" }\n }\n }\n }\n },\n \"education\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"institution\": { \"type\": \"string\" },\n \"start_year\": { \"type\": \"integer\" },\n \"degree\": { \"type\": \"string\" }\n }\n }\n },\n \"projects\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"name\": { \"type\": \"string\" },\n \"year\": { \"type\": \"integer\" },\n \"description\": { \"type\": \"string\" },\n \"technologies\": {\n \"type\": \"array\",\n \"items\": { \"type\": \"string\" }\n }\n }\n }\n },\n \"volunteering\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"activity\": { \"type\": \"string\" },\n \"location\": { \"type\": \"string\" },\n \"date\": { \"type\": \"string\" },\n \"description\": { \"type\": \"string\" }\n }\n }\n },\n \"programming_languages\": {\n \"type\": \"object\",\n \"properties\": {\n \"languages\": {\n \"type\": \"array\",\n \"items\": { \"type\": \"string\" }\n },\n \"tools\": {\n \"type\": \"array\",\n \"items\": { \"type\": \"string\" }\n },\n \"methodologies\": {\n \"type\": \"array\",\n \"items\": { \"type\": \"string\" }\n }\n }\n },\n \"foreign_languages\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"language\": { \"type\": \"string\" },\n \"level\": { \"type\": \"string\" }\n }\n }\n }\n }\n}\n"}, "typeVersion": 1}, {"id": "027975cd-768a-4048-858d-9060f48ab622", "name": "Convert employment history to HTML", "type": "n8n-nodes-base.code", "position": [2420, -20], "parameters": {"mode": "runOnceForEachItem", "jsCode": "function convertToHTML(list) {\n let html = '';\n\n list.forEach((item, index) => {\n if (index > 0) {\n html += '<br />'; // Add a new line if it's not the first item\n }\n html += `<b>Position:</b> ${item.position}\n<b>Company:</b> ${item.company}\n<br />\n<b>Duration:</b> ${item.duration}\n<br />\n<b>Responsibilities:</b>\n`;\n\n item.responsibilities.forEach((responsibility, i) => {\n html += `- ${responsibility}`;\n if (i < item.responsibilities.length - 1 || index < list.length - 1) {\n html += '<br />'; // Add new line if it's not the last responsibility in the last item\n }\n });\n });\n\n return html;\n}\n\n// Assuming payload is already defined\nconst payload = $input.item.json.employment_history;\n\nconst htmlOutput = convertToHTML(payload);\nreturn {\n htmlOutput\n};"}, "typeVersion": 2}, {"id": "823a241d-1c68-40a9-8f2c-f1bdfaab7603", "name": "Convert projects to HTML", "type": "n8n-nodes-base.code", "position": [2420, 380], "parameters": {"mode": "runOnceForEachItem", "jsCode": "function convertToHTML(list) {\n let html = '';\n\n list.forEach((project, index) => {\n if (index > 0) {\n html += '<br />'; // Add a new line if it's not the first project\n }\n html += `<b>Name:</b> ${project.name}<br />\n<b>Year:</b> ${project.year}<br />\n<b>Description:</b> ${project.description}<br /><br />\n<b>Technologies:</b>\n<br />`;\n\n project.technologies.forEach((technology, i) => {\n html += `- ${technology}`;\n if (i < project.technologies.length - 1 || index < list.length - 1) {\n html += '<br />'; // Add new line if it's not the last technology in the last project\n }\n });\n });\n\n return html;\n}\n\n// Assuming payload is already defined\nconst payload = $input.item.json.projects;\n\nconst htmlOutput = convertToHTML(payload);\nreturn {\n htmlOutput\n};\n"}, "typeVersion": 2}, {"id": "a12eb0e1-1cb9-4b83-a1ec-42dd8214f6bc", "name": "Convert volunteering to HTML", "type": "n8n-nodes-base.code", "position": [2420, 580], "parameters": {"mode": "runOnceForEachItem", "jsCode": "function convertToHTML(list) {\n let html = '';\n\n list.forEach((event, index) => {\n if (index > 0) {\n html += '<br />'; // Add a new line if it's not the first volunteering event\n }\n html += `<b>Activity:</b> ${event.activity}<br />\n<b>Location:</b> ${event.location}<br />\n<b>Date:</b> ${event.date}<br />\n<b>Description:</b> ${event.description}<br />`;\n });\n\n return html;\n}\n\n// Assuming payload is already defined\nconst payload = $input.item.json.volunteering;\n\nconst htmlOutput = convertToHTML(payload);\nreturn {\n htmlOutput\n};\n"}, "typeVersion": 2}, {"id": "70b67b80-d22d-4eea-8c97-3d2cb2b9bbfc", "name": "Telegram trigger", "type": "n8n-nodes-base.telegramTrigger", "position": [360, 340], "webhookId": "d6829a55-a01b-44ac-bad3-2349324c8515", "parameters": {"updates": ["message"], "additionalFields": {}}, "credentials": {"telegramApi": {"id": "lStLV4zzcrQO9eAM", "name": "Telegram (Resume Extractor)"}}, "typeVersion": 1.1}, {"id": "21bead1d-0665-44d5-b623-b0403c9abd6c", "name": "Auth", "type": "n8n-nodes-base.if", "position": [600, 340], "parameters": {"options": {}, "conditions": {"options": {"leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "7ca4b4c3-e23b-4896-a823-efc85c419467", "operator": {"type": "number", "operation": "equals"}, "leftValue": "={{ $json.message.chat.id }}", "rightValue": 0}]}}, "typeVersion": 2}, {"id": "de76d6ec-3b0e-44e0-943d-55547aac2e46", "name": "No operation (unauthorized)", "type": "n8n-nodes-base.noOp", "position": [860, 520], "parameters": {}, "typeVersion": 1}, {"id": "439f5e2c-be7d-486b-a1f1-13b09f77c2c8", "name": "Check if start message", "type": "n8n-nodes-base.if", "position": [860, 220], "parameters": {"options": {}, "conditions": {"options": {"leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "1031f14f-9793-488d-bb6b-a021f943a399", "operator": {"type": "string", "operation": "notEquals"}, "leftValue": "={{ $json.message.text }}", "rightValue": "/start"}]}}, "typeVersion": 2}, {"id": "af5f5622-c338-40c0-af72-90e124ed7ce1", "name": "No operation (start message)", "type": "n8n-nodes-base.noOp", "position": [1120, 360], "parameters": {}, "typeVersion": 1}, {"id": "2efae11a-376b-44aa-ab91-9b3dea82ede0", "name": "Get file", "type": "n8n-nodes-base.telegram", "position": [1120, 120], "parameters": {"fileId": "={{ $json.message.document.file_id }}", "resource": "file"}, "credentials": {"telegramApi": {"id": "lStLV4zzcrQO9eAM", "name": "Telegram (Resume Extractor)"}}, "typeVersion": 1.1}, {"id": "88fd1002-ad2c-445f-92d4-11b571db3788", "name": "Extract text from PDF", "type": "n8n-nodes-base.extractFromFile", "position": [1380, 120], "parameters": {"options": {}, "operation": "pdf"}, "typeVersion": 1}, {"id": "9dfc204b-c567-418a-93a3-9b72cf534a8c", "name": "Set parsed fileds", "type": "n8n-nodes-base.set", "position": [2040, 120], "parameters": {"options": {}}, "typeVersion": 3.2}, {"id": "314c771a-5ff2-484f-823b-0eab88f43ea3", "name": "Personal info", "type": "n8n-nodes-base.set", "position": [2420, -380], "parameters": {"fields": {"values": [{"name": "personal_info", "stringValue": "=<b><u>Personal info</u></b>\n<br /><br />\n<b>Name:</b> {{ $json.personal_info.name }}\n<br />\n<b>Address:</b> {{ $json.personal_info.address }}\n<br />\n<b>Email:</b> {{ $json.personal_info.email }}\n<br />\n<b>GitHub:</b> {{ $json.personal_info.github }}\n<br />"}]}, "include": "none", "options": {}}, "typeVersion": 3.2}, {"id": "be6b32e8-6000-4235-a723-0e22828ead45", "name": "Technologies", "type": "n8n-nodes-base.set", "position": [2420, -200], "parameters": {"fields": {"values": [{"name": "technologies", "stringValue": "=<b><u>Technologies</u></b>\n<br /><br />\n<b>Programming languages:</b> {{ $json.programming_languages.languages.join(', ') }}\n<br />\n<b>Tools:</b> {{ $json.programming_languages.tools.join(', ') }}\n<br />\n<b>Methodologies:</b> {{ $json.programming_languages.methodologies.join(', ') }}\n<br />"}]}, "include": "none", "options": {}}, "typeVersion": 3.2}, {"id": "ab726d61-84b8-4af7-a195-33e1add89153", "name": "Employment history", "type": "n8n-nodes-base.set", "position": [2640, -20], "parameters": {"fields": {"values": [{"name": "employment_history", "stringValue": "=<b><u>Employment history</u></b>\n<br /><br />\n{{ $json[\"htmlOutput\"] }}"}]}, "include": "none", "options": {}}, "typeVersion": 3.2}, {"id": "692f9555-6102-4d3c-b0a1-868e27e3c343", "name": "Education", "type": "n8n-nodes-base.set", "position": [2640, 180], "parameters": {"fields": {"values": [{"name": "education", "stringValue": "=<b><u>Education</u></b>\n<br /><br />\n{{ $json[\"htmlOutput\"] }}"}]}, "include": "none", "options": {}}, "typeVersion": 3.2}, {"id": "258728f2-1f03-4786-8197-feb9f1bc4dfe", "name": "Projects", "type": "n8n-nodes-base.set", "position": [2640, 380], "parameters": {"fields": {"values": [{"name": "projects", "stringValue": "=<b><u>Projects</u></b>\n<br /><br />\n{{ $json[\"htmlOutput\"] }}"}]}, "include": "none", "options": {}}, "typeVersion": 3.2}, {"id": "3c819ce4-235a-4b12-a396-d33dca9f80da", "name": "Volunteering", "type": "n8n-nodes-base.set", "position": [2640, 580], "parameters": {"fields": {"values": [{"name": "volunteering", "stringValue": "=<b><u>Volunteering</u></b>\n<br /><br />\n{{ $json[\"htmlOutput\"] }}"}]}, "include": "none", "options": {}}, "typeVersion": 3.2}, {"id": "41bd7506-7330-4c25-8b43-aa3c836736fc", "name": "Merge education and employment history", "type": "n8n-nodes-base.merge", "position": [2880, 100], "parameters": {"mode": "combine", "options": {}, "combinationMode": "multiplex"}, "typeVersion": 2.1}, {"id": "d788da36-360b-4009-82ad-2f206fad8e53", "name": "Merge projects and volunteering", "type": "n8n-nodes-base.merge", "position": [2880, 500], "parameters": {"mode": "combine", "options": {}, "combinationMode": "multiplex"}, "typeVersion": 2.1}, {"id": "57c20e19-3d84-41c0-a415-1d55cb031da1", "name": "Merge personal info and technologies", "type": "n8n-nodes-base.merge", "position": [3140, -160], "parameters": {"mode": "combine", "options": {}, "combinationMode": "multiplex"}, "typeVersion": 2.1}, {"id": "f12be010-8375-4ff7-ba8e-9c2c870f648b", "name": "Merge all", "type": "n8n-nodes-base.merge", "position": [3400, 200], "parameters": {"mode": "combine", "options": {}, "combinationMode": "multiplex"}, "typeVersion": 2.1}, {"id": "d6428167-2c75-42a5-a905-7590ff1d6a25", "name": "Set final data", "type": "n8n-nodes-base.set", "position": [3620, 200], "parameters": {"fields": {"values": [{"name": "output", "stringValue": "={{ $json.personal_info }}\n<br /><br />\n{{ $json.employment_history }}\n<br /><br />\n{{ $json.education }}\n<br /><br />\n{{ $json.projects }}\n<br /><br />\n{{ $json.volunteering }}\n<br /><br />\n{{ $json.technologies }}"}]}, "include": "none", "options": {}}, "typeVersion": 3.2}, {"id": "9ea13c62-2e09-4b37-b889-66edaef1fcf1", "name": "Convert raw to base64", "type": "n8n-nodes-base.code", "position": [3840, 200], "parameters": {"mode": "runOnceForEachItem", "jsCode": "const encoded = Buffer.from($json.output).toString('base64');\n\nreturn { encoded };"}, "typeVersion": 2}, {"id": "c4474fa1-b1b5-432f-b30e-100201c9ec7c", "name": "Convert to HTML", "type": "n8n-nodes-base.convertToFile", "position": [4060, 200], "parameters": {"options": {"fileName": "index.html", "mimeType": "text/html"}, "operation": "toBinary", "sourceProperty": "encoded"}, "typeVersion": 1.1}, {"id": "3c4d2010-1bdc-4f01-bb1a-bd0128017787", "name": "Generate plain PDF doc", "type": "n8n-nodes-base.httpRequest", "position": [4340, 200], "parameters": {"url": "http://gotenberg:3000/forms/chromium/convert/html", "method": "POST", "options": {"response": {"response": {"responseFormat": "file"}}}, "sendBody": true, "contentType": "multipart-form-data", "bodyParameters": {"parameters": [{"name": "files", "parameterType": "formBinaryData", "inputDataFieldName": "data"}]}}, "typeVersion": 4.1}, {"id": "2b3cd55f-21a3-4c14-905f-82b158aa3fd0", "name": "Send PDF to the user", "type": "n8n-nodes-base.telegram", "position": [4640, 200], "parameters": {"chatId": "={{ $('Telegram trigger').item.json[\"message\"][\"chat\"][\"id\"] }}", "operation": "sendDocument", "binaryData": true, "additionalFields": {"fileName": "={{ $('Set parsed fileds').item.json[\"personal_info\"][\"name\"].toLowerCase().replace(' ', '-') }}.pdf"}}, "credentials": {"telegramApi": {"id": "lStLV4zzcrQO9eAM", "name": "Telegram (Resume Extractor)"}}, "typeVersion": 1.1}, {"id": "54fe1d2d-eb9d-4fe1-883f-1826e27ac873", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [540, 180], "parameters": {"width": 226.21234567901217, "height": 312.917333333334, "content": "### Add chat ID\nRemember to set your actual ID to trigger automation from Telegram."}, "typeVersion": 1}, {"id": "b193a904-260b-4d45-8a66-e3cb46fc7ce4", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [800, 83.43940740740783], "parameters": {"width": 229.64938271604922, "height": 293.54824691358016, "content": "### Ignore start message\nWorkflow ignores initial`/start` message sent to the bot."}, "typeVersion": 1}, {"id": "d5c95d8f-b699-4a8e-9460-a4f5856b5e6f", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [1066, -20], "parameters": {"width": 211.00246913580224, "height": 302.41975308642, "content": "### Download resume file\nBased on file ID, node performs downloading of the file uploaded by user."}, "typeVersion": 1}, {"id": "2de0751d-8e11-457e-8c38-a6dcca59190c", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [1320, -20], "parameters": {"width": 217.87654320987633, "height": 302.41975308642, "content": "### Extract text from PDF\nNode extracts readable text form PDF."}, "typeVersion": 1}, {"id": "4b9ccab8-ff6c-408f-93fe-f148034860a0", "name": "Sticky Note5", "type": "n8n-nodes-base.stickyNote", "position": [1580, -20], "parameters": {"width": 410.9479506172837, "height": 302.41975308642, "content": "### Parse resume data\nCreate structured data from text extracted from resume. Chain uses OpenAI `gpt-4-turbo-preview` model and JSON response mode. **Adjust JSON schema in output parser to your needs.**"}, "typeVersion": 1}, {"id": "bfb1d382-90fa-4bff-8c38-04e53bcf5f58", "name": "Parse resume data", "type": "@n8n/n8n-nodes-langchain.chainLlm", "position": [1660, 120], "parameters": {"prompt": "={{ $json.text }}", "messages": {"messageValues": [{"message": "Your task is to extract all necessary data such as first name, last name, experience, known technologies etc. from the provided resume text and return in well-unified JSON format. Do not make things up."}]}}, "typeVersion": 1.3}, {"id": "7e8eb10a-f21c-4a9c-90b1-b71537b78356", "name": "Merge other data", "type": "n8n-nodes-base.merge", "position": [3140, 340], "parameters": {"mode": "combine", "options": {}, "combinationMode": "multiplex"}, "typeVersion": 2.1}, {"id": "7c4398de-7b4d-4095-b38f-eaf099d2991b", "name": "Sticky Note6", "type": "n8n-nodes-base.stickyNote", "position": [2340, -491.4074074074074], "parameters": {"width": 1196.8442469135782, "height": 1260.345679012346, "content": "### Format HTML\nFormat HTML for each resume section (employment history, projects etc.)."}, "typeVersion": 1}, {"id": "9de2f504-6ff0-4b00-8e0d-436c789b4e23", "name": "Sticky Note7", "type": "n8n-nodes-base.stickyNote", "position": [3580, 40], "parameters": {"width": 638.6516543209876, "height": 322.5837037037037, "content": "### Create HTML file\nFrom formatted output create `index.html` file in order to run PDF conversion."}, "typeVersion": 1}, {"id": "11abdff5-377e-490d-9136-15c24ff6a05e", "name": "Sticky Note8", "type": "n8n-nodes-base.stickyNote", "position": [4260, 39.83604938271645], "parameters": {"color": 3, "width": 262.0096790123454, "height": 322.5837037037035, "content": "### Convert file to PDF\nForm `index.html` create PDF using [Gotenberg](https://gotenberg.dev/). If you're not familiar with this software, feel free to check out [my tutorial on YouTube](https://youtu.be/bo15xdjXf1Y?si=hFZMTfjzfSOLOLPK)."}, "typeVersion": 1}, {"id": "73fb81d0-5218-4311-aaec-7fa259d8cbd3", "name": "Sticky Note9", "type": "n8n-nodes-base.stickyNote", "position": [4560, 40], "parameters": {"width": 262.0096790123454, "height": 322.5837037037035, "content": "### Send PDF file to user\nDeliver converted PDF to Telegram user (based on chat ID)."}, "typeVersion": 1}, {"id": "bb5fa375-4cc9-4559-a014-7b618d6c5f32", "name": "Sticky Note10", "type": "n8n-nodes-base.stickyNote", "position": [-280, 128], "parameters": {"width": 432.69769500990674, "height": 364.2150828344463, "content": "## \u26a0\ufe0f Note\n\nThis is *resume extractor* workflow that I had a pleasure to present during [n8n community hangout](https://youtu.be/eZacuxrhCuo?si=KkJQrgQuvLxj-6FM&t=1701\n) on March 7, 2024.\n\n1. Remember to add your credentials and configure nodes.\n2. This node requires installed [Gotenberg](https://gotenberg.dev/) for PDF generation. If you're not familiar with this software, feel free to check out [my tutorial on YouTube](https://youtu.be/bo15xdjXf1Y?si=hFZMTfjzfSOLOLPK). If you don't want to self-host Gotenberg, you use other PDF generation provider (PDFMonkey, ApiTemplate or similar).\n3. If you like this workflow, please subscribe to [my YouTube channel](https://www.youtube.com/@workfloows) and/or [my newsletter](https://workfloows.com/).\n\n**Thank you for your support!**"}, "typeVersion": 1}]
{"Auth": {"main": [[{"node": "Check if start message", "type": "main", "index": 0}], [{"node": "No operation (unauthorized)", "type": "main", "index": 0}]]}, "Get file": {"main": [[{"node": "Extract text from PDF", "type": "main", "index": 0}]]}, "Projects": {"main": [[{"node": "Merge projects and volunteering", "type": "main", "index": 0}]]}, "Education": {"main": [[{"node": "Merge education and employment history", "type": "main", "index": 1}]]}, "Merge all": {"main": [[{"node": "Set final data", "type": "main", "index": 0}]]}, "Technologies": {"main": [[{"node": "Merge personal info and technologies", "type": "main", "index": 1}]]}, "Volunteering": {"main": [[{"node": "Merge projects and volunteering", "type": "main", "index": 1}]]}, "Personal info": {"main": [[{"node": "Merge personal info and technologies", "type": "main", "index": 0}]]}, "Set final data": {"main": [[{"node": "Convert raw to base64", "type": "main", "index": 0}]]}, "Convert to HTML": {"main": [[{"node": "Generate plain PDF doc", "type": "main", "index": 0}]]}, "Merge other data": {"main": [[{"node": "Merge all", "type": "main", "index": 1}]]}, "Telegram trigger": {"main": [[{"node": "Auth", "type": "main", "index": 0}]]}, "OpenAI Chat Model": {"ai_languageModel": [[{"node": "Parse resume data", "type": "ai_languageModel", "index": 0}]]}, "Parse resume data": {"main": [[{"node": "Set parsed fileds", "type": "main", "index": 0}]]}, "Set parsed fileds": {"main": [[{"node": "Convert employment history to HTML", "type": "main", "index": 0}, {"node": "Convert education to HTML", "type": "main", "index": 0}, {"node": "Convert projects to HTML", "type": "main", "index": 0}, {"node": "Personal info", "type": "main", "index": 0}, {"node": "Convert volunteering to HTML", "type": "main", "index": 0}, {"node": "Technologies", "type": "main", "index": 0}]]}, "Employment history": {"main": [[{"node": "Merge education and employment history", "type": "main", "index": 0}]]}, "OpenAI Chat Model1": {"ai_languageModel": [[{"node": "Auto-fixing Output Parser", "type": "ai_languageModel", "index": 0}]]}, "Convert raw to base64": {"main": [[{"node": "Convert to HTML", "type": "main", "index": 0}]]}, "Extract text from PDF": {"main": [[{"node": "Parse resume data", "type": "main", "index": 0}]]}, "Check if start message": {"main": [[{"node": "Get file", "type": "main", "index": 0}], [{"node": "No operation (start message)", "type": "main", "index": 0}]]}, "Generate plain PDF doc": {"main": [[{"node": "Send PDF to the user", "type": "main", "index": 0}]]}, "Convert projects to HTML": {"main": [[{"node": "Projects", "type": "main", "index": 0}]]}, "Structured Output Parser": {"ai_outputParser": [[{"node": "Auto-fixing Output Parser", "type": "ai_outputParser", "index": 0}]]}, "Auto-fixing Output Parser": {"ai_outputParser": [[{"node": "Parse resume data", "type": "ai_outputParser", "index": 0}]]}, "Convert education to HTML": {"main": [[{"node": "Education", "type": "main", "index": 0}]]}, "Convert volunteering to HTML": {"main": [[{"node": "Volunteering", "type": "main", "index": 0}]]}, "Merge projects and volunteering": {"main": [[{"node": "Merge other data", "type": "main", "index": 1}]]}, "Convert employment history to HTML": {"main": [[{"node": "Employment history", "type": "main", "index": 0}]]}, "Merge personal info and technologies": {"main": [[{"node": "Merge all", "type": "main", "index": 0}]]}, "Merge education and employment history": {"main": [[{"node": "Merge other data", "type": "main", "index": 0}]]}}
XML:toJSON:toXML
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "50d8428b-c132-49cb-8f4c-2eeba448d666"}, {"parameters": {"mode": "jsonToxml", "options": {}}, "name": "XML", "type": "n8n-nodes-base.xml", "typeVersion": 1, "position": [650, 300], "id": "664b8c25-5107-4715-a463-9a954965c096"}, {"parameters": {"functionCode": "item= {\n name:'testing xml',\n arr:[{key:'item1'},{key:'item2'}],\n subobj:{\n arr:[1,2,3,4,5],\n secondarr:[{key:'subitem1'},{key:'subitem2'},{key:'subitem3'}]\n }\n};\nreturn item;"}, "name": "FunctionItem", "type": "n8n-nodes-base.functionItem", "typeVersion": 1, "position": [450, 300], "id": "dfb38369-2fb3-4d92-b843-b663b3a4675a"}, {"parameters": {"options": {"explicitRoot": false}}, "name": "XML1", "type": "n8n-nodes-base.xml", "typeVersion": 1, "position": [800, 350], "id": "7085c1d8-a216-47a7-98d1-2f5e9e3eda47"}, {"parameters": {"functionCode": "if(JSON.stringify($node['FunctionItem'].json) !== JSON.stringify($node['XML1'].json) ){\n throw new Error('Problem in XML conversion');\n}\nreturn items;"}, "name": "Function", "type": "n8n-nodes-base.function", "typeVersion": 1, "position": [990, 350], "id": "f03b8331-fa37-4aeb-97c9-0a3514942f96"}]
{"XML": {"main": [[{"node": "XML1", "type": "main", "index": 0}]]}, "FunctionItem": {"main": [[{"node": "XML", "type": "main", "index": 0}]]}, "XML1": {"main": [[{"node": "Function", "type": "main", "index": 0}]]}, "Start": {"main": [[{"node": "FunctionItem", "type": "main", "index": 0}]]}}
MongoDB:insert find update delete
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "a355b2f8-5354-4e3f-9409-c29de450e49c"}, {"parameters": {"operation": "insert", "collection": "TestCollection", "fields": "id,name,valid"}, "name": "MongoDB", "type": "n8n-nodes-base.mongoDb", "typeVersion": 1, "position": [600, 300], "credentials": {"mongoDb": {"id": "90", "name": "MongoDB creds"}}, "id": "2b30fbfb-08dd-48ac-bec7-722457fec924"}, {"parameters": {"values": {"string": [{"name": "name", "value": "=Test{{Date.now()}}"}], "number": [{"name": "id", "value": "={{Math.round(Math.random()*10000)}}"}], "boolean": [{"name": "valid", "value": "={{(Math.random()*100) > 50}}"}]}, "options": {}}, "name": "Set", "type": "n8n-nodes-base.set", "typeVersion": 1, "position": [450, 300], "notesInFlow": true, "notes": "set document", "id": "3a57b5c9-3f2e-43ef-a0ae-3598e1eb54b7"}, {"parameters": {"collection": "TestCollection"}, "name": "MongoDB1", "type": "n8n-nodes-base.mongoDb", "typeVersion": 1, "position": [750, 300], "credentials": {"mongoDb": {"id": "90", "name": "MongoDB creds"}}, "id": "6ede4036-3685-402e-abc3-3f2a95b23cfc"}, {"parameters": {"operation": "update", "collection": "TestCollection", "fields": "name"}, "name": "MongoDB2", "type": "n8n-nodes-base.mongoDb", "typeVersion": 1, "position": [1050, 300], "credentials": {"mongoDb": {"id": "90", "name": "MongoDB creds"}}, "id": "8299beed-7163-4a92-9f41-b8c970bc320b"}, {"parameters": {"operation": "delete", "collection": "TestCollection"}, "name": "MongoDB3", "type": "n8n-nodes-base.mongoDb", "typeVersion": 1, "position": [1200, 300], "credentials": {"mongoDb": {"id": "90", "name": "MongoDB creds"}}, "id": "f77603b7-8d36-46bc-bcc5-604b63294778"}, {"parameters": {"values": {"string": [{"name": "name", "value": "=UpdatedName{{Date.now()}}"}]}, "options": {}}, "name": "Set1", "type": "n8n-nodes-base.set", "typeVersion": 1, "position": [900, 300], "notesInFlow": true, "notes": "update name attribut", "id": "d32afa6f-35a1-492f-8185-21bef87b18f0"}]
{"MongoDB": {"main": [[{"node": "MongoDB1", "type": "main", "index": 0}]]}, "Set": {"main": [[{"node": "MongoDB", "type": "main", "index": 0}]]}, "MongoDB1": {"main": [[{"node": "Set1", "type": "main", "index": 0}]]}, "MongoDB2": {"main": [[{"node": "MongoDB3", "type": "main", "index": 0}]]}, "Set1": {"main": [[{"node": "MongoDB2", "type": "main", "index": 0}]]}, "Start": {"main": [[{"node": "Set", "type": "main", "index": 0}]]}}
Enhance Security Operations with the Qualys Slack Shortcut Bot!
[{"id": "adfda9cb-1d77-4c54-b3ea-e7bf438a48af", "name": "Parse Webhook", "type": "n8n-nodes-base.set", "position": [760, 640], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "e63f9299-a19d-4ba1-93b0-59f458769fb2", "name": "response", "type": "object", "value": "={{ $json.body.payload }}"}]}}, "typeVersion": 3.3}, {"id": "b3e0e490-18e0-44b5-a960-0fdbf8422515", "name": "Qualys Create Report", "type": "n8n-nodes-base.executeWorkflow", "position": [1720, 1740], "parameters": {"options": {}, "workflowId": "icSLX102kSS9zNdK"}, "typeVersion": 1}, {"id": "80ae074b-bda5-4638-b46f-246a1b9530ae", "name": "Required Report Variables", "type": "n8n-nodes-base.set", "position": [1520, 1740], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "47cd1502-3039-4661-a6b1-e20a74056550", "name": "report_title", "type": "string", "value": "={{ $json.response.view.state.values.report_title.report_title_input.value }}"}, {"id": "6a8a0cbf-bf3e-4702-956e-a35966d8b9c5", "name": "base_url", "type": "string", "value": "https://qualysapi.qg3.apps.qualys.com"}, {"id": "9a15f4db-f006-4ad8-a2c0-4002dd3e2655", "name": "output_format", "type": "string", "value": "={{ $json.response.view.state.values.output_format.output_format_select.selected_option.value }}"}, {"id": "13978e05-7e7f-42e9-8645-d28803db8cc9", "name": "template_name", "type": "string", "value": "={{ $json.response.view.state.values.report_template.report_template_select.selected_option.text.text }}"}]}}, "typeVersion": 3.3}, {"id": "b596da86-02c7-4d8e-a267-88933f47ae0c", "name": "Qualys Start Vulnerability Scan", "type": "n8n-nodes-base.executeWorkflow", "position": [1720, 1540], "parameters": {"options": {}, "workflowId": "pYPh5FlGZgb36xZO"}, "typeVersion": 1}, {"id": "61e39516-6558-46ce-a300-b4cbade7a6f6", "name": "Scan Report Task Modal", "type": "n8n-nodes-base.httpRequest", "position": [1620, 720], "parameters": {"url": "https://slack.com/api/views.open", "method": "POST", "options": {}, "jsonBody": "= {\n \"trigger_id\": \"{{ $('Parse Webhook').item.json['response']['trigger_id'] }}\",\n \"external_id\": \"Scan Report Generator\",\n \"view\": {\n\t\"title\": {\n\t\t\"type\": \"plain_text\",\n\t\t\"text\": \"Scan Report Generator\",\n\t\t\"emoji\": true\n\t},\n\t\"submit\": {\n\t\t\"type\": \"plain_text\",\n\t\t\"text\": \"Generate Report\",\n\t\t\"emoji\": true\n\t},\n\t\"type\": \"modal\",\n\t\"close\": {\n\t\t\"type\": \"plain_text\",\n\t\t\"text\": \"Cancel\",\n\t\t\"emoji\": true\n\t},\n\t\"blocks\": [\n\t\t{\n\t\t\t\"type\": \"image\",\n\t\t\t\"image_url\": \"https://upload.wikimedia.org/wikipedia/commons/thumb/2/26/Logo-Qualys.svg/300px-Logo-Qualys.svg.png\",\n\t\t\t\"alt_text\": \"Qualys Logo\"\n\t\t},\n\t\t{\n\t\t\t\"type\": \"section\",\n\t\t\t\"text\": {\n\t\t\t\t\"type\": \"mrkdwn\",\n\t\t\t\t\"text\": \"Select a template and generate a detailed scan report based on the results of your previous scans.\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"type\": \"input\",\n\t\t\t\"block_id\": \"report_template\",\n\t\t\t\"element\": {\n\t\t\t\t\"type\": \"external_select\",\n\t\t\t\t\"placeholder\": {\n\t\t\t\t\t\"type\": \"plain_text\",\n\t\t\t\t\t\"text\": \"Select a report template\",\n\t\t\t\t\t\"emoji\": true\n\t\t\t\t},\n\t\t\t\t\"action_id\": \"report_template_select\"\n\t\t\t},\n\t\t\t\"label\": {\n\t\t\t\t\"type\": \"plain_text\",\n\t\t\t\t\"text\": \"Report Template\",\n\t\t\t\t\"emoji\": true\n\t\t\t},\n\t\t\t\"hint\": {\n\t\t\t\t\"type\": \"plain_text\",\n\t\t\t\t\"text\": \"Choose a report template from your Qualys account to structure the output.\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"type\": \"input\",\n\t\t\t\"block_id\": \"report_title\",\n\t\t\t\"element\": {\n\t\t\t\t\"type\": \"plain_text_input\",\n\t\t\t\t\"action_id\": \"report_title_input\",\n\t\t\t\t\"placeholder\": {\n\t\t\t\t\t\"type\": \"plain_text\",\n\t\t\t\t\t\"text\": \"Enter a custom title for the report\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"label\": {\n\t\t\t\t\"type\": \"plain_text\",\n\t\t\t\t\"text\": \"Report Title\",\n\t\t\t\t\"emoji\": true\n\t\t\t},\n\t\t\t\"hint\": {\n\t\t\t\t\"type\": \"plain_text\",\n\t\t\t\t\"text\": \"Provide a descriptive title for your report. This title will be used in the report header.\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"type\": \"input\",\n\t\t\t\"block_id\": \"output_format\",\n\t\t\t\"element\": {\n\t\t\t\t\"type\": \"static_select\",\n\t\t\t\t\"placeholder\": {\n\t\t\t\t\t\"type\": \"plain_text\",\n\t\t\t\t\t\"text\": \"Select output format\",\n\t\t\t\t\t\"emoji\": true\n\t\t\t\t},\n\t\t\t\t\"options\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"text\": {\n\t\t\t\t\t\t\t\"type\": \"plain_text\",\n\t\t\t\t\t\t\t\"text\": \"PDF\",\n\t\t\t\t\t\t\t\"emoji\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"value\": \"pdf\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"text\": {\n\t\t\t\t\t\t\t\"type\": \"plain_text\",\n\t\t\t\t\t\t\t\"text\": \"HTML\",\n\t\t\t\t\t\t\t\"emoji\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"value\": \"html\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"text\": {\n\t\t\t\t\t\t\t\"type\": \"plain_text\",\n\t\t\t\t\t\t\t\"text\": \"CSV\",\n\t\t\t\t\t\t\t\"emoji\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"value\": \"csv\"\n\t\t\t\t\t}\n\t\t\t\t],\n\t\t\t\t\"action_id\": \"output_format_select\"\n\t\t\t},\n\t\t\t\"label\": {\n\t\t\t\t\"type\": \"plain_text\",\n\t\t\t\t\"text\": \"Output Format\",\n\t\t\t\t\"emoji\": true\n\t\t\t},\n\t\t\t\"hint\": {\n\t\t\t\t\"type\": \"plain_text\",\n\t\t\t\t\"text\": \"Choose the format in which you want the report to be generated.\"\n\t\t\t}\n\t\t}\n\t]\n}\n}", "sendBody": true, "jsonQuery": "{\n \"Content-type\": \"application/json\"\n}", "sendQuery": true, "specifyBody": "json", "specifyQuery": "json", "authentication": "predefinedCredentialType", "nodeCredentialType": "slackApi"}, "credentials": {"slackApi": {"id": "DZJDes1ZtGpqClNk", "name": "Qualys Slack App"}}, "typeVersion": 4.2}, {"id": "29cf716c-9cd6-4bd9-a0f9-c75baca86cc1", "name": "Vuln Scan Modal", "type": "n8n-nodes-base.httpRequest", "position": [1620, 560], "parameters": {"url": "https://slack.com/api/views.open", "method": "POST", "options": {}, "jsonBody": "= {\n \"trigger_id\": \"{{ $('Parse Webhook').item.json['response']['trigger_id'] }}\",\n \"external_id\": \"Scan Report Generator\",\n \"view\": {\n\t\"title\": {\n\t\t\"type\": \"plain_text\",\n\t\t\"text\": \"Vulnerability Scan\",\n\t\t\"emoji\": true\n\t},\n\t\"submit\": {\n\t\t\"type\": \"plain_text\",\n\t\t\"text\": \"Execute Scan\",\n\t\t\"emoji\": true\n\t},\n\t\"type\": \"modal\",\n\t\"close\": {\n\t\t\"type\": \"plain_text\",\n\t\t\"text\": \"Cancel\",\n\t\t\"emoji\": true\n\t},\n\t\"blocks\": [\n\t\t{\n\t\t\t\"type\": \"image\",\n\t\t\t\"image_url\": \"https://upload.wikimedia.org/wikipedia/commons/thumb/2/26/Logo-Qualys.svg/300px-Logo-Qualys.svg.png\",\n\t\t\t\"alt_text\": \"Qualys Logo\"\n\t\t},\n\t\t{\n\t\t\t\"type\": \"section\",\n\t\t\t\"text\": {\n\t\t\t\t\"type\": \"plain_text\",\n\t\t\t\t\"text\": \"Initiate a network-wide scan to detect and assess security vulnerabilities.\",\n\t\t\t\t\"emoji\": true\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"type\": \"input\",\n\t\t\t\"block_id\": \"option_title\",\n\t\t\t\"element\": {\n\t\t\t\t\"type\": \"plain_text_input\",\n\t\t\t\t\"action_id\": \"text_input-action\",\n\t\t\t\t\"initial_value\": \"Initial Options\"\n\t\t\t},\n\t\t\t\"label\": {\n\t\t\t\t\"type\": \"plain_text\",\n\t\t\t\t\"text\": \"Option Title\",\n\t\t\t\t\"emoji\": true\n\t\t\t},\n\t\t\t\"hint\": {\n\t\t\t\t\"type\": \"plain_text\",\n\t\t\t\t\"text\": \"Specify the title of the option profile to use for the scan.\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"type\": \"input\",\n\t\t\t\"block_id\": \"scan_title\",\n\t\t\t\"element\": {\n\t\t\t\t\"type\": \"plain_text_input\",\n\t\t\t\t\"action_id\": \"text_input-action\",\n\t\t\t\t\"placeholder\": {\n\t\t\t\t\t\"type\": \"plain_text\",\n\t\t\t\t\t\"text\": \"Enter your scan title\"\n\t\t\t\t},\n\t\t\t\t\"initial_value\": \"n8n Scan 1\"\n\t\t\t},\n\t\t\t\"label\": {\n\t\t\t\t\"type\": \"plain_text\",\n\t\t\t\t\"text\": \"Scan Title\",\n\t\t\t\t\"emoji\": true\n\t\t\t},\n\t\t\t\"hint\": {\n\t\t\t\t\"type\": \"plain_text\",\n\t\t\t\t\"text\": \"Provide a descriptive title for the scan. Up to 2000 characters.\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"type\": \"input\",\n\t\t\t\"block_id\": \"asset_groups\",\n\t\t\t\"element\": {\n\t\t\t\t\"type\": \"plain_text_input\",\n\t\t\t\t\"action_id\": \"text_input-action\",\n\t\t\t\t\"placeholder\": {\n\t\t\t\t\t\"type\": \"plain_text\",\n\t\t\t\t\t\"text\": \"Enter asset groups\"\n\t\t\t\t},\n\t\t\t\t\"initial_value\": \"Group1\"\n\t\t\t},\n\t\t\t\"label\": {\n\t\t\t\t\"type\": \"plain_text\",\n\t\t\t\t\"text\": \"Asset Groups\",\n\t\t\t\t\"emoji\": true\n\t\t\t},\n\t\t\t\"hint\": {\n\t\t\t\t\"type\": \"plain_text\",\n\t\t\t\t\"text\": \"Specify asset group titles for targeting. Multiple titles must be comma-separated.\"\n\t\t\t}\n\t\t}\n\t]\n}\n}", "sendBody": true, "jsonQuery": "{\n \"Content-type\": \"application/json\"\n}", "sendQuery": true, "specifyBody": "json", "specifyQuery": "json", "authentication": "predefinedCredentialType", "nodeCredentialType": "slackApi"}, "credentials": {"slackApi": {"id": "DZJDes1ZtGpqClNk", "name": "Qualys Slack App"}}, "typeVersion": 4.2}, {"id": "a771704d-4191-4e80-b62f-81b41b047a87", "name": "Route Message", "type": "n8n-nodes-base.switch", "position": [940, 640], "parameters": {"rules": {"values": [{"outputKey": "Vuln Scan Modal", "conditions": {"options": {"leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"operator": {"type": "string", "operation": "equals"}, "leftValue": "={{ $json.response.callback_id }}", "rightValue": "trigger-qualys-vmscan"}]}, "renameOutput": true}, {"outputKey": "Scan Report Modal", "conditions": {"options": {"leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "02868fd8-2577-4c6d-af5e-a1963cb2f786", "operator": {"name": "filter.operator.equals", "type": "string", "operation": "equals"}, "leftValue": "={{ $json.response.callback_id }}", "rightValue": "qualys-scan-report"}]}, "renameOutput": true}, {"outputKey": "Process Submission", "conditions": {"options": {"leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "c320c8b8-947b-433a-be82-d2aa96594808", "operator": {"name": "filter.operator.equals", "type": "string", "operation": "equals"}, "leftValue": "={{ $json.response.type }}", "rightValue": "view_submission"}]}, "renameOutput": true}]}, "options": {"fallbackOutput": "none"}}, "typeVersion": 3}, {"id": "c8346d57-762a-4bbd-8d2b-f13097cb063d", "name": "Required Scan Variables", "type": "n8n-nodes-base.set", "position": [1520, 1540], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "096ff32e-356e-4a85-aad2-01001d69dd46", "name": "platformurl", "type": "string", "value": "https://qualysapi.qg3.apps.qualys.com"}, {"id": "070178a6-73b0-458b-8657-20ab4ff0485c", "name": "option_title", "type": "string", "value": "={{ $json.response.view.state.values.option_title['text_input-action'].value }}"}, {"id": "3605424b-5bfc-44f0-b6e4-e0d6b1130b8e", "name": "scan_title", "type": "string", "value": "={{ $json.response.view.state.values.scan_title['text_input-action'].value }}"}, {"id": "2320d966-b834-46fb-b674-be97cc08682e", "name": "asset_groups", "type": "string", "value": "={{ $json.response.view.state.values.asset_groups['text_input-action'].value }}"}]}}, "typeVersion": 3.3}, {"id": "55589da9-50ce-4d55-a5ff-d62abdf65fa4", "name": "Route Submission", "type": "n8n-nodes-base.switch", "position": [1240, 1140], "parameters": {"rules": {"values": [{"outputKey": "Vuln Scan", "conditions": {"options": {"leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"operator": {"type": "string", "operation": "equals"}, "leftValue": "={{ $json.response.view.title.text }}", "rightValue": "Vulnerability Scan"}]}, "renameOutput": true}, {"outputKey": "Scan Report", "conditions": {"options": {"leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "02868fd8-2577-4c6d-af5e-a1963cb2f786", "operator": {"name": "filter.operator.equals", "type": "string", "operation": "equals"}, "leftValue": "={{ $json.response.view.title.text }}", "rightValue": "Scan Report Generator"}]}, "renameOutput": true}]}, "options": {"fallbackOutput": "none"}}, "typeVersion": 3}, {"id": "d0fc264d-0c48-4aa6-aeab-ed605d96f35a", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [428.3467548314237, 270.6382978723399], "parameters": {"color": 7, "width": 466.8168310000617, "height": 567.6433222116042, "content": "![Imgur](https://uploads.n8n.io/templates/slack.png)\n## Events Webhook Trigger\nThe first node receives all messages from Slack API via Subscription Events API. You can find more information about setting up the subscription events API by [clicking here](https://api.slack.com/apis/connections/events-api). \n\nThe second node extracts the payload from slack into an object that n8n can understand. "}, "typeVersion": 1}, {"id": "acb3fbdc-1fcb-4763-8529-ea2842607569", "name": "Sticky Note15", "type": "n8n-nodes-base.stickyNote", "position": [900, -32.762682645579616], "parameters": {"color": 7, "width": 566.0553219408072, "height": 1390.6748140207737, "content": "![n8n](https://uploads.n8n.io/templates/n8n.png)\n## Efficient Slack Interaction Handling with n8n\n\nThis section of the workflow is designed to efficiently manage and route messages and submissions from Slack based on specific triggers and conditions. When a Slack interaction occurs\u2014such as a user triggering a vulnerability scan or generating a report through a modal\u2014the workflow intelligently routes the message to the appropriate action:\n\n- **Dynamic Routing**: Uses conditions to determine the nature of the Slack interaction, whether it's a direct command to initiate a scan or a request to generate a report.\n- **Modal Management**: Differentiates actions based on modal titles and `callback_id`s, ensuring that each type of submission is processed according to its context.\n- **Streamlined Responses**: After routing, the workflow promptly handles the necessary responses or actions, including closing modal popups and responding to Slack with appropriate confirmation or data.\n\n**Purpose**: This mechanism ensures that all interactions within Slack are handled quickly and accurately, automating responses and actions in real-time to enhance user experience and workflow efficiency."}, "typeVersion": 1}, {"id": "85f370e8-70d2-466e-8f44-45eaf04a0d95", "name": "Sticky Note11", "type": "n8n-nodes-base.stickyNote", "position": [1473.6255461332685, 56.17183602125283], "parameters": {"color": 7, "width": 396.6025898621133, "height": 881.1659905894905, "content": "![Imgur](https://uploads.n8n.io/templates/slack.png)\n## Display Modal Popup\nThis section pops open a modal window that is later used to send data into TheHive. \n\nModals can be customized to perform all sorts of actions. And they are natively mobile! You can see a screenshot of the Slack Modals on the right. \n\nLearn more about them by [clicking here](https://api.slack.com/surfaces/modals)"}, "typeVersion": 1}, {"id": "cae79c1c-47f8-41c0-b1d0-e284359b52a8", "name": "Sticky Note12", "type": "n8n-nodes-base.stickyNote", "position": [1480, 960], "parameters": {"color": 7, "width": 390.82613196003143, "height": 950.1640646001949, "content": "![Imgur](https://i.imgur.com/abGF8EO.png)\n## Modal Submission Payload\nThe data input into the Slack Modal makes its way into these set nodes that then pass that data into the Qualys Sub workflows that handle the heavy lifting. \n\n### Two Trigger Options\n- **Trigger a Vulnerability Scan** in the Slack UI which then sends a slack message to a channel of your choice summarizing and linking to the scan in slack\n- **Trigger report creation** in the Slack UI from the previously generated Vulnerability scan and upload a PDF copy of the report directly in a slack channel of your choice"}, "typeVersion": 1}, {"id": "1017df8b-ff32-47aa-a4c2-a026e6597fa9", "name": "Close Modal Popup", "type": "n8n-nodes-base.respondToWebhook", "position": [1000, 1140], "parameters": {"options": {"responseCode": 204}, "respondWith": "noData"}, "typeVersion": 1.1}, {"id": "6b058f2a-2c0c-4326-aa42-08d840e306f7", "name": "Sticky Note8", "type": "n8n-nodes-base.stickyNote", "position": [-260, 280], "parameters": {"width": 675.1724774900403, "height": 972.8853473866498, "content": "![n8n](https://uploads.n8n.io/templates/n8n.png)\n## Enhance Security Operations with the Qualys Slack Shortcut Bot!\n\nOur **Qualys Slack Shortcut Bot** is strategically designed to facilitate immediate security operations directly from Slack. This powerful tool allows users to initiate vulnerability scans and generate detailed reports through simple Slack interactions, streamlining the process of managing security assessments.\n\n**Workflow Highlights:**\n- **Interactive Modals**: Utilizes Slack modals to gather user inputs for scan configurations and report generation, providing a user-friendly interface for complex operations.\n- **Dynamic Workflow Execution**: Integrates seamlessly with Qualys to execute vulnerability scans and create reports based on user-specified parameters.\n- **Real-Time Feedback**: Offers instant feedback within Slack, updating users about the status of their requests and delivering reports directly through Slack channels.\n\n\n**Operational Flow:**\n- **Parse Webhook Data**: Captures and parses incoming data from Slack to understand user commands accurately.\n- **Execute Actions**: Depending on the user's selection, the workflow triggers other sub-workflows like 'Qualys Start Vulnerability Scan' or 'Qualys Create Report' for detailed processing.\n- **Respond to Slack**: Ensures that every interaction is acknowledged, maintaining a smooth user experience by managing modal popups and sending appropriate responses.\n\n\n**Setup Instructions:**\n- Verify that Slack and Qualys API integrations are correctly configured for seamless interaction.\n- Customize the modal interfaces to align with your organization's operational protocols and security policies.\n- Test the workflow to ensure that it responds accurately to Slack commands and that the integration with Qualys is functioning as expected.\n\n\n**Need Assistance?**\n- Explore our [Documentation](https://docs.qualys.com) or get help from the [n8n Community](https://community.n8n.io) for more detailed guidance on setup and customization.\n\nDeploy this bot within your Slack environment to significantly enhance the efficiency and responsiveness of your security operations, enabling proactive management of vulnerabilities and streamlined reporting."}, "typeVersion": 1}, {"id": "63b537e8-50c9-479d-96a4-54e621689a23", "name": "Webhook", "type": "n8n-nodes-base.webhook", "position": [520, 640], "webhookId": "4f86c00d-ceb4-4890-84c5-850f8e5dec05", "parameters": {"path": "4f86c00d-ceb4-4890-84c5-850f8e5dec05", "options": {}, "httpMethod": "POST", "responseMode": "responseNode"}, "typeVersion": 2}, {"id": "13500444-f2ff-4b77-8f41-8ac52d067ec7", "name": "Respond to Slack Webhook - Vulnerability", "type": "n8n-nodes-base.respondToWebhook", "position": [1280, 560], "parameters": {"options": {}, "respondWith": "noData"}, "typeVersion": 1.1}, {"id": "e64cedf0-948c-43c8-a62c-d0ec2916f3b6", "name": "Respond to Slack Webhook - Report", "type": "n8n-nodes-base.respondToWebhook", "position": [1280, 720], "parameters": {"options": {"responseCode": 200}, "respondWith": "noData"}, "typeVersion": 1.1}, {"id": "d2e53f7b-090a-4330-949d-d66ac0e5849c", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [1494.8207799250774, 1400], "parameters": {"color": 5, "width": 361.46312518523973, "height": 113.6416448104651, "content": "### \ud83d\ude4b Remember to update your Slack Channels\nDon't forget to update the Slack Channels in the Slack nodes in these two subworkflows. \n"}, "typeVersion": 1}, {"id": "2731f910-288f-497a-a71d-d840a63b2930", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [1480, 400], "parameters": {"color": 5, "width": 376.26546828439086, "height": 113.6416448104651, "content": "### \ud83d\ude4b Don't forget your slack credentials!\nThankfully n8n makes it easy, as long as you've added credentials to a normal slack node, these http nodes are a snap to change via the drop down. "}, "typeVersion": 1}, {"id": "72105959-ee9b-4ce6-a7f8-0f5f112c14d2", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [1880, 500], "parameters": {"color": 5, "width": 532.5097590794944, "height": 671.013686767174, "content": "![Imgur](https://uploads.n8n.io/templates/qualysscanreport.png)"}, "typeVersion": 1}, {"id": "49b8ce63-cefd-483a-b802-03e3500d807b", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [1880, -200], "parameters": {"color": 5, "width": 535.8333316661616, "height": 658.907292269235, "content": "![Imgur](https://uploads.n8n.io/templates/qualysmodalscan.png)"}, "typeVersion": 1}, {"id": "3ec8c799-d5a5-4134-891a-59adb3e68e23", "name": "Sticky Note5", "type": "n8n-nodes-base.stickyNote", "position": [280, -158.042446016207], "parameters": {"color": 5, "width": 596.6847639718076, "height": 422.00743613240917, "content": "![Imgur](https://uploads.n8n.io/templates/qualysscanshortcut.png)\n### \ud83e\udd16 Triggering this workflow is as easy as typing a backslash in Slack"}, "typeVersion": 1}]
{"Webhook": {"main": [[{"node": "Parse Webhook", "type": "main", "index": 0}]]}, "Parse Webhook": {"main": [[{"node": "Route Message", "type": "main", "index": 0}]]}, "Route Message": {"main": [[{"node": "Respond to Slack Webhook - Vulnerability", "type": "main", "index": 0}], [{"node": "Respond to Slack Webhook - Report", "type": "main", "index": 0}], [{"node": "Close Modal Popup", "type": "main", "index": 0}]]}, "Route Submission": {"main": [[{"node": "Required Scan Variables", "type": "main", "index": 0}], [{"node": "Required Report Variables", "type": "main", "index": 0}]]}, "Close Modal Popup": {"main": [[{"node": "Route Submission", "type": "main", "index": 0}]]}, "Required Scan Variables": {"main": [[{"node": "Qualys Start Vulnerability Scan", "type": "main", "index": 0}]]}, "Required Report Variables": {"main": [[{"node": "Qualys Create Report", "type": "main", "index": 0}]]}, "Respond to Slack Webhook - Report": {"main": [[{"node": "Scan Report Task Modal", "type": "main", "index": 0}]]}, "Respond to Slack Webhook - Vulnerability": {"main": [[{"node": "Vuln Scan Modal", "type": "main", "index": 0}]]}}
Chat with Postgresql Database
[{"id": "6501a54f-a68c-452d-b353-d7e871ca3780", "name": "When chat message received", "type": "@n8n/n8n-nodes-langchain.chatTrigger", "position": [-300, -80], "webhookId": "cf1de04f-3e38-426c-89f0-3bdb110a5dcf", "parameters": {"options": {}}, "typeVersion": 1.1}, {"id": "cd32221b-2a36-408d-b57e-8115fcd810c9", "name": "AI Agent", "type": "@n8n/n8n-nodes-langchain.agent", "position": [0, -80], "parameters": {"agent": "openAiFunctionsAgent", "options": {"systemMessage": "You are DB assistant. You need to run queries in DB aligned with user requests.\n\nRun custom SQL query to aggregate data and response to user. Make sure every table has schema prefix to it in sql query which you can get from `Get DB Schema and Tables List` tool.\n\nFetch all data to analyse it for response if needed.\n\n## Tools\n\n- Execute SQL query - Executes any sql query generated by AI\n- Get DB Schema and Tables List - Lists all the tables in database with its schema name\n- Get Table Definition - Gets the table definition from db using table name and schema name"}}, "typeVersion": 1.7}, {"id": "8accbeeb-7eaf-4e9e-aabc-de8ab3a0459b", "name": "OpenAI Chat Model", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [-60, 160], "parameters": {"model": {"__rl": true, "mode": "list", "value": "gpt-4o-mini"}, "options": {}}, "credentials": {"openAiApi": {"id": "48uG61Ilo8jndw3r", "name": "Your OpenAI Account Credentials"}}, "typeVersion": 1.2}, {"id": "11f2013f-a080-4c9e-8773-c90492e2c628", "name": "Get Table Definition", "type": "n8n-nodes-base.postgresTool", "position": [780, 140], "parameters": {"query": "select\n c.column_name,\n c.data_type,\n c.is_nullable,\n c.column_default,\n tc.constraint_type,\n ccu.table_name AS referenced_table,\n ccu.column_name AS referenced_column\nfrom\n information_schema.columns c\nLEFT join\n information_schema.key_column_usage kcu\n ON c.table_name = kcu.table_name\n AND c.column_name = kcu.column_name\nLEFT join\n information_schema.table_constraints tc\n ON kcu.constraint_name = tc.constraint_name\n AND tc.constraint_type = 'FOREIGN KEY'\nLEFT join\n information_schema.constraint_column_usage ccu\n ON tc.constraint_name = ccu.constraint_name\nwhere\n c.table_name = '{{ $fromAI(\"table_name\") }}'\n AND c.table_schema = '{{ $fromAI(\"schema_name\") }}'\norder by\n c.ordinal_position", "options": {}, "operation": "executeQuery", "descriptionType": "manual", "toolDescription": "Get table definition to find all columns and types"}, "credentials": {"postgres": {"id": "nGI61D0TEEZz18rr", "name": "Your Postgresql Database Credentials"}}, "typeVersion": 2.5}, {"id": "760bc9bc-0057-4088-b3f0-3ee37b3519df", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [-300, -240], "parameters": {"color": 5, "width": 560, "height": 120, "content": "### \ud83d\udc68\u200d\ud83c\udfa4 Setup\n1. Add your **postgresql** and **OpenAI** credentials.\n2. Click **Chat** button and start asking questions to your database.\n3. Activate the workflow and you can make the chat publicly available."}, "typeVersion": 1}, {"id": "0df33341-c859-4a54-b6d9-a99670e8d76d", "name": "Chat History", "type": "@n8n/n8n-nodes-langchain.memoryBufferWindow", "position": [120, 160], "parameters": {}, "typeVersion": 1.3}, {"id": "4938b22e-f187-4ca0-b9f1-60835e823799", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [360, 300], "parameters": {"color": 7, "width": 562, "height": 156, "content": "\ud83d\udee0\ufe0f Tools Used:\n1. Execute SQL Query: Used to execute any query generated by the agent.\n2. Get DB Schema and Tables List: It returns the list of all the tables with its schema name.\n3. Get Table Definition: It returns table details like column names, foreign keys and more of a particular table in a schema."}, "typeVersion": 1}, {"id": "39780c78-4fbc-403e-a220-aa6a4b06df8c", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [-100, 300], "parameters": {"color": 7, "width": 162, "height": 99, "content": "\ud83d\udc46 You can exchange this with any other chat model of your choice."}, "typeVersion": 1}, {"id": "28a5692c-5003-46cb-9a09-b7867734f446", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [100, 300], "parameters": {"color": 7, "width": 162, "height": 159, "content": "\ud83d\udc46 You can change how many number of messages to keep using `Context Window Length` option. It's 5 by default."}, "typeVersion": 1}, {"id": "c18ced71-6330-4ba0-9c52-1bb5852b3039", "name": "Execute SQL Query", "type": "n8n-nodes-base.postgresTool", "position": [380, 140], "parameters": {"query": "{{ $fromAI(\"sql_query\", \"SQL Query\") }}", "options": {}, "operation": "executeQuery", "descriptionType": "manual", "toolDescription": "Get all the data from Postgres, make sure you append the tables with correct schema. Every table is associated with some schema in the database."}, "credentials": {"postgres": {"id": "nGI61D0TEEZz18rr", "name": "Your Postgresql Database Credentials"}}, "typeVersion": 2.5}, {"id": "557623c6-e499-48a6-a066-744f64f8b6f3", "name": "Get DB Schema and Tables List", "type": "n8n-nodes-base.postgresTool", "position": [580, 140], "parameters": {"query": "SELECT \n table_schema,\n table_name\nFROM information_schema.tables\nWHERE table_type = 'BASE TABLE'\n AND table_schema NOT IN ('pg_catalog', 'information_schema')\nORDER BY table_schema, table_name;", "options": {}, "operation": "executeQuery", "descriptionType": "manual", "toolDescription": "Get list of all tables with their schema in the database"}, "credentials": {"postgres": {"id": "nGI61D0TEEZz18rr", "name": "Your Postgresql Database Credentials"}}, "typeVersion": 2.5}]
{"Chat History": {"ai_memory": [[{"node": "AI Agent", "type": "ai_memory", "index": 0}]]}, "Execute SQL Query": {"ai_tool": [[{"node": "AI Agent", "type": "ai_tool", "index": 0}]]}, "OpenAI Chat Model": {"ai_languageModel": [[{"node": "AI Agent", "type": "ai_languageModel", "index": 0}]]}, "Get Table Definition": {"ai_tool": [[{"node": "AI Agent", "type": "ai_tool", "index": 0}]]}, "When chat message received": {"main": [[{"node": "AI Agent", "type": "main", "index": 0}]]}, "Get DB Schema and Tables List": {"ai_tool": [[{"node": "AI Agent", "type": "ai_tool", "index": 0}]]}}
OpenAI-powered tweet generator
[{"name": "On clicking 'execute'", "type": "n8n-nodes-base.manualTrigger", "position": [250, 300], "parameters": {}, "typeVersion": 1}, {"name": "FunctionItem", "type": "n8n-nodes-base.functionItem", "position": [450, 300], "parameters": {"functionCode": "// hashtag list\nconst Hashtags = [\n \"#techtwitter\",\n \"#n8n\"\n];\n\n// random output function\nconst randomHashtag = Hashtags[Math.floor(Math.random() * Hashtags.length)];\nitem.hashtag = randomHashtag;\nreturn item;"}, "typeVersion": 1}, {"name": "HTTP Request", "type": "n8n-nodes-base.httpRequest", "position": [650, 300], "parameters": {"url": "https://api.openai.com/v1/engines/text-davinci-001/completions", "options": {}, "requestMethod": "POST", "authentication": "headerAuth", "jsonParameters": true, "bodyParametersJson": "={\n \"prompt\": \"Generate a tweet, with under 100 characters, about and including the hashtag {{$node[\"FunctionItem\"].json[\"hashtag\"]}}:\",\n \"temperature\": 0.7,\n \"max_tokens\": 64,\n \"top_p\": 1,\n \"frequency_penalty\": 0,\n \"presence_penalty\": 0\n}"}, "credentials": {"httpHeaderAuth": ""}, "typeVersion": 1}, {"name": "Airtable", "type": "n8n-nodes-base.airtable", "position": [1050, 300], "parameters": {"table": "main", "options": {}, "operation": "append", "application": "appOaG8kEA8FAABOr"}, "credentials": {"airtableApi": ""}, "typeVersion": 1}, {"name": "Set", "type": "n8n-nodes-base.set", "position": [850, 300], "parameters": {"values": {"string": [{"name": "Hashtag", "value": "={{$node[\"FunctionItem\"].json[\"hashtag\"]}}"}, {"name": "Content", "value": "={{$node[\"HTTP Request\"].json[\"choices\"][0][\"text\"]}}"}]}, "options": {}, "keepOnlySet": true}, "typeVersion": 1}]
{"Set": {"main": [[{"node": "Airtable", "type": "main", "index": 0}]]}, "FunctionItem": {"main": [[{"node": "HTTP Request", "type": "main", "index": 0}]]}, "HTTP Request": {"main": [[{"node": "Set", "type": "main", "index": 0}]]}, "On clicking 'execute'": {"main": [[{"node": "FunctionItem", "type": "main", "index": 0}]]}}
Summarize emails with A.I. then send to messenger
[{"id": "50e12e63-df28-45ac-9208-48cbf5116d09", "name": "Read emails (IMAP)", "type": "n8n-nodes-base.emailReadImap", "position": [340, 260], "parameters": {"options": {}, "postProcessAction": "nothing"}, "credentials": {"imap": {"id": "gXtdakU9M02LBQc3", "name": "IMAP account"}}, "typeVersion": 2}, {"id": "6565350b-2269-44e3-8f36-8797f32d3e09", "name": "Send email to A.I. to summarize", "type": "n8n-nodes-base.httpRequest", "position": [700, 260], "parameters": {"url": "https://openrouter.ai/api/v1/chat/completions", "method": "POST", "options": {}, "jsonBody": "={\n \"model\": \"meta-llama/llama-3.1-70b-instruct:free\",\n \"messages\": [\n {\n \"role\": \"user\",\n \"content\": \"I want you to read and summarize all the emails. If it's not rimportant, just give me a short summary with less than 10 words.\\n\\nHighlight as important if it is, add an emoji to indicate it is urgent:\\nFor the relevant content, find any action items and deadlines. Sometimes I need to sign up before a certain date or pay before a certain date, please highlight that in the summary for me.\\n\\nPut the deadline in BOLD at the top. If the email is not important, keep the summary short to 1 sentence only.\\n\\nHere's the email content for you to read:\\nSender email address: {{ encodeURIComponent($json.from) }}\\nSubject: {{ encodeURIComponent($json.subject) }}\\n{{ encodeURIComponent($json.textHtml) }}\"\n }\n ]\n}", "sendBody": true, "specifyBody": "json", "authentication": "genericCredentialType", "genericAuthType": "httpHeaderAuth"}, "credentials": {"httpHeaderAuth": {"id": "WY7UkF14ksPKq3S8", "name": "Header Auth account 2"}}, "typeVersion": 4.2, "alwaysOutputData": false}, {"id": "d04c422a-c000-4e48-82d0-0bf44bcd9fff", "name": "Send summarized content to messenger", "type": "n8n-nodes-base.httpRequest", "position": [1100, 260], "parameters": {"url": "https://api.line.me/v2/bot/message/push", "method": "POST", "options": {}, "jsonBody": "={\n \"to\": \"U3ec262c49811f30cdc2d2f2b0a0df99a\",\n \"messages\": [\n {\n \"type\": \"text\",\n \"text\": \"{{ $json.choices[0].message.content.replace(/\\n/g, \"\\\\n\") }}\"\n }\n ]\n}\n\n\n ", "sendBody": true, "specifyBody": "json", "authentication": "genericCredentialType", "genericAuthType": "httpHeaderAuth"}, "credentials": {"httpHeaderAuth": {"id": "SzcKjO9Nn9vZPL2H", "name": "Header Auth account 5"}}, "typeVersion": 4.2}, {"id": "57a1219c-4f40-407c-855b-86c4c7c468bb", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [180, 0], "parameters": {"width": 361, "height": 90, "content": "## Summarize emails with A.I.\nYou can find out more about the [use case](https://rumjahn.com/how-a-i-saved-my-kids-school-life-and-my-marriage/)"}, "typeVersion": 1}, {"id": "17686264-56ac-419e-a32b-dc5c75f15f1f", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [283, 141], "parameters": {"color": 5, "width": 229, "height": 280, "content": "Find your email server's IMAP Settings. \n- Link for [gmail](https://www.getmailspring.com/setup/access-gmail-via-imap-smtp)"}, "typeVersion": 1}, {"id": "1862abd6-7dca-4c66-90d6-110d4fcf4d99", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [580, 0], "parameters": {"color": 6, "width": 365, "height": 442, "content": "For the A.I. you can use Openrouter.ai. \n- Set up a free account\n- The A.I. model selected is FREE to use.\n## Credentials\n- Use header auth\n- Username: Authorization\n- Password: Bearer {insert your API key}.\n- The password is \"Bearer\" space plus your API key."}, "typeVersion": 1}, {"id": "c4a3a76f-539d-4bbf-8f95-d7aaebf39a55", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [1000, 0], "parameters": {"color": 4, "width": 307, "height": 439, "content": "Don't use the official Line node. It's outdated.\n## Credentials\n- Use header auth\n- Username: Authorization\n- Password: Bearer {channel access token}\n\nYou can find your channel access token at the [Line API console](https://developers.line.biz/console/). Go to Messaging API and scroll to the bottom."}, "typeVersion": 1}]
{"Read emails (IMAP)": {"main": [[{"node": "Send email to A.I. to summarize", "type": "main", "index": 0}]]}, "Send email to A.I. to summarize": {"main": [[{"node": "Send summarized content to messenger", "type": "main", "index": 0}]]}}
Agentic Telegram AI bot with LangChain nodes and new tools
[{"id": "13b3488e-af72-4d89-bef4-e9b895e3bf76", "name": "OpenAI Chat Model", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [1640, 580], "parameters": {"model": "gpt-4o", "options": {"temperature": 0.7, "frequencyPenalty": 0.2}}, "credentials": {"openAiApi": {"id": "rveqdSfp7pCRON1T", "name": "Ted's Tech Talks OpenAi"}}, "typeVersion": 1}, {"id": "864937a1-43f6-4055-bdea-61ab07db9903", "name": "Window Buffer Memory", "type": "@n8n/n8n-nodes-langchain.memoryBufferWindow", "position": [1760, 580], "parameters": {"sessionKey": "=chat_with_{{ $('Listen for incoming events').first().json.message.chat.id }}", "contextWindowLength": 10}, "typeVersion": 1}, {"id": "4ef838d4-feaa-4bd3-b2c7-ccd938be4373", "name": "Listen for incoming events", "type": "n8n-nodes-base.telegramTrigger", "position": [1580, 360], "webhookId": "322dce18-f93e-4f86-b9b1-3305519b7834", "parameters": {"updates": ["*"], "additionalFields": {}}, "credentials": {"telegramApi": {"id": "9dexJXnlVPA6wt8K", "name": "Chat & Sound"}}, "typeVersion": 1}, {"id": "fed51c41-2846-4a1a-a5f5-ce121ee7fe88", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [1460, 180], "parameters": {"color": 7, "width": 926.3188190787038, "height": 553.452795998601, "content": "## Generate an image with Dall-E-3 and send it via Telegram"}, "typeVersion": 1}, {"id": "1c7a204b-3ed7-47bd-a434-202b05272d18", "name": "Send final reply", "type": "n8n-nodes-base.telegram", "onError": "continueErrorOutput", "position": [2140, 360], "parameters": {"text": "={{ $json.output }}", "chatId": "={{ $('Listen for incoming events').first().json.message.from.id }}", "additionalFields": {"appendAttribution": false}}, "credentials": {"telegramApi": {"id": "9dexJXnlVPA6wt8K", "name": "Chat & Sound"}}, "typeVersion": 1.1}, {"id": "bebbe9d4-47ba-4c13-9e1e-d36bfe6e472e", "name": "Send back an image", "type": "n8n-nodes-base.telegramTool", "position": [2020, 580], "parameters": {"file": "={{ $fromAI(\"url\", \"a valid url of an image\", \"string\", \" \") }}", "chatId": "={{ $('Listen for incoming events').first().json.message.from.id }}", "operation": "sendDocument", "additionalFields": {}}, "credentials": {"telegramApi": {"id": "9dexJXnlVPA6wt8K", "name": "Chat & Sound"}}, "typeVersion": 1.2}, {"id": "38f2410d-bd55-4ddf-8aaa-4e28919de78f", "name": "Generate image in Dalle", "type": "@n8n/n8n-nodes-langchain.toolHttpRequest", "position": [1880, 580], "parameters": {"url": "https://api.openai.com/v1/images/generations", "method": "POST", "sendBody": true, "authentication": "predefinedCredentialType", "parametersBody": {"values": [{"name": "model", "value": "dall-e-3", "valueProvider": "fieldValue"}, {"name": "prompt"}]}, "toolDescription": "Call this tool to request a Dall-E-3 model, when the user asks to draw something. If you g\u0435t a response from this tool, forward it to the Telegram tool.", "nodeCredentialType": "openAiApi"}, "credentials": {"openAiApi": {"id": "rveqdSfp7pCRON1T", "name": "Ted's Tech Talks OpenAi"}}, "typeVersion": 1.1}, {"id": "34265eab-9f37-475a-a2ae-a6c37c69c595", "name": "AI Agent", "type": "@n8n/n8n-nodes-langchain.agent", "position": [1780, 360], "parameters": {"text": "={{ $json.message.text }}", "options": {"systemMessage": "=You are a helpful assistant. You are communicating with a user named {{ $json.message.from.first_name }}. Address the user by name every time. If the user asks for an image, always send the link to the image in the final reply."}, "promptType": "define"}, "typeVersion": 1.7}]
{"AI Agent": {"main": [[{"node": "Send final reply", "type": "main", "index": 0}]]}, "OpenAI Chat Model": {"ai_languageModel": [[{"node": "AI Agent", "type": "ai_languageModel", "index": 0}]]}, "Send back an image": {"ai_tool": [[{"node": "AI Agent", "type": "ai_tool", "index": 0}]]}, "Window Buffer Memory": {"ai_memory": [[{"node": "AI Agent", "type": "ai_memory", "index": 0}]]}, "Generate image in Dalle": {"ai_tool": [[{"node": "AI Agent", "type": "ai_tool", "index": 0}]]}, "Listen for incoming events": {"main": [[{"node": "AI Agent", "type": "main", "index": 0}]]}}
Automate Customer Support Issue Resolution using AI Text Classifier
[{"id": "645799b0-7ddb-4acb-a95d-3b04eadff445", "name": "OpenAI Chat Model", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [1480, 20], "parameters": {"model": "gpt-4o-mini", "options": {}}, "credentials": {"openAiApi": {"id": "8gccIjcuf3gvaoEr", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "e2923385-2f73-439c-9d5c-5a3c560993cb", "name": "OpenAI Chat Model1", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [2040, 420], "parameters": {"model": "gpt-4o-mini", "options": {}}, "credentials": {"openAiApi": {"id": "8gccIjcuf3gvaoEr", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "c24728f9-73b9-45f7-9c4e-aee872c59714", "name": "OpenAI Chat Model3", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [3180, -80], "parameters": {"model": "gpt-4o-mini", "options": {}}, "credentials": {"openAiApi": {"id": "8gccIjcuf3gvaoEr", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "0bc19e46-4a65-45fb-9571-d1f00d204c63", "name": "OpenAI Chat Model4", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [2060, -261], "parameters": {"model": "gpt-4o-mini", "options": {}}, "credentials": {"openAiApi": {"id": "8gccIjcuf3gvaoEr", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "0c631234-125d-476b-b97a-2837d6a32f2b", "name": "Schedule Trigger", "type": "n8n-nodes-base.scheduleTrigger", "position": [-272, -180], "parameters": {"rule": {"interval": [{}]}}, "typeVersion": 1.2}, {"id": "96c9931d-d286-42f8-9629-2641eaa368b9", "name": "Get Issue Comments", "type": "n8n-nodes-base.jira", "position": [748, -180], "parameters": {"options": {}, "issueKey": "={{ $json.key }}", "resource": "issueComment", "operation": "getAll"}, "credentials": {"jiraSoftwareCloudApi": {"id": "IH5V74q6PusewNjD", "name": "Jira SW Cloud account"}}, "typeVersion": 1}, {"id": "18a2770d-5240-4837-8837-4821f73ec560", "name": "Close Issue", "type": "n8n-nodes-base.jira", "position": [2660, -741], "parameters": {"issueKey": "={{ $('Get Issue Metadata').item.json.key }}", "operation": "update", "updateFields": {"statusId": {"__rl": true, "mode": "list", "value": "31", "cachedResultName": "Done"}}}, "credentials": {"jiraSoftwareCloudApi": {"id": "IH5V74q6PusewNjD", "name": "Jira SW Cloud account"}}, "typeVersion": 1}, {"id": "83e81448-26c7-4c29-a17a-409c53e05881", "name": "Send Reminder", "type": "n8n-nodes-base.jira", "position": [3500, -220], "parameters": {"comment": "={{ $json.text }}\n(this is an automated message)", "options": {}, "issueKey": "={{ $('Get Issue Metadata').item.json.key }}", "resource": "issueComment"}, "credentials": {"jiraSoftwareCloudApi": {"id": "IH5V74q6PusewNjD", "name": "Jira SW Cloud account"}}, "typeVersion": 1}, {"id": "5fed9245-4af9-4de7-b021-750d2ba39e63", "name": "Join Comments", "type": "n8n-nodes-base.aggregate", "position": [928, -180], "parameters": {"options": {}, "aggregate": "aggregateAllItemData"}, "typeVersion": 1}, {"id": "34712dd3-0348-4709-8a68-07279242910c", "name": "Add Autoclose Message", "type": "n8n-nodes-base.jira", "position": [2460, -561], "parameters": {"comment": "=Autoclosing due to inactivity. Please create a new ticket if you require additional support. Thank you!\n(this is an automated message)", "options": {}, "issueKey": "={{ $('Get Issue Metadata').item.json.key }}", "resource": "issueComment"}, "credentials": {"jiraSoftwareCloudApi": {"id": "IH5V74q6PusewNjD", "name": "Jira SW Cloud account"}}, "typeVersion": 1}, {"id": "c43a3b66-838b-4970-a85f-dc0370437388", "name": "Ask For Feedback Message", "type": "n8n-nodes-base.jira", "position": [2460, -741], "parameters": {"comment": "=[~accountid:{{ $('Get Issue Metadata').item.json.reporter_accountId }}]\n\nWe think the issue is resolved so we're autoclosing it. If you've been satisified with our service, please leave us a 5 start review here: [link](link/to/review_site)\n\nPlease feel free to create another ticket if you need further assistance.\n(this is an automated message)", "options": {}, "issueKey": "={{ $('Get Issue Metadata').item.json.key }}", "resource": "issueComment"}, "credentials": {"jiraSoftwareCloudApi": {"id": "IH5V74q6PusewNjD", "name": "Jira SW Cloud account"}}, "typeVersion": 1}, {"id": "3223ce45-9e5e-471c-9015-75e9f28088e9", "name": "Simplify Thread For AI", "type": "n8n-nodes-base.set", "position": [1108, -180], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "f65c5971-c90d-47f2-823f-37fd03d8e9c7", "name": "thread", "type": "array", "value": "={{\n$json.data.map(comment => {\n const { accountId, displayName } = comment.author;\n\n const message = comment.body.content.map(item =>\n `<${item.type}>${item.content\n .filter(c => c.text || c.content)\n .map(c => c.content\n ? c.content\n .filter(cc => c.text || c.content)\n .map(cc => cc.text)\n .join(' ')\n : c.text\n )}</${item.type}>`\n ).join('');\n return `${displayName} (accountId: ${accountId}) says: ${message}`;\n})\n\n}}"}, {"id": "7b98b2db-3417-472f-bea2-a7aebe30184c", "name": "topic", "type": "string", "value": "={{\n[\n `title: ${$('Get Issue Metadata').item.json.title}`,\n `original message: ${$('Get Issue Metadata').item.json.description.replaceAll(/\\n/g, ' ')}`,\n `reported by: ${$('Get Issue Metadata').item.json.reporter}`\n].join('\\n')\n}}"}]}}, "typeVersion": 3.4}, {"id": "e6f91099-1fe6-4930-8dda-b19330edb599", "name": "Solution Found?", "type": "n8n-nodes-base.if", "position": [2440, 220], "parameters": {"options": {}, "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "0e71783b-3072-421a-852c-58940d0dd7cd", "operator": {"type": "boolean", "operation": "true", "singleValue": true}, "leftValue": "={{ $json.output.solution_found }}", "rightValue": ""}]}}, "typeVersion": 2.2}, {"id": "696348a5-c955-47eb-ab44-f56652587944", "name": "Reply to Issue", "type": "n8n-nodes-base.jira", "position": [2760, 220], "parameters": {"comment": "=Hey there!\n{{ $('KnowledgeBase Agent').item.json.output.response }}\nWe'll close this issue now but feel free to create a new one if needed.\n(this is an automated message)", "options": {}, "issueKey": "={{ $('Get Issue Metadata').item.json.key }}", "resource": "issueComment"}, "credentials": {"jiraSoftwareCloudApi": {"id": "IH5V74q6PusewNjD", "name": "Jira SW Cloud account"}}, "typeVersion": 1}, {"id": "4d4562c7-f5ed-44b8-9292-9c1a75d51173", "name": "Last Message is Not Bot", "type": "n8n-nodes-base.if", "position": [3000, -220], "parameters": {"options": {}, "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "6e07d5dc-01b2-4735-8fc1-983fc57dfaaf", "operator": {"type": "boolean", "operation": "true", "singleValue": true}, "leftValue": "={{ !$('Simplify Thread For AI').item.json.thread.last().includes('this is an automated message') }}", "rightValue": ""}]}}, "typeVersion": 2.2}, {"id": "e1ca19da-c030-478b-a488-dcb08d9be97e", "name": "Structured Output Parser", "type": "@n8n/n8n-nodes-langchain.outputParserStructured", "position": [2400, 420], "parameters": {"schemaType": "manual", "inputSchema": "{\n\t\"type\": \"object\",\n\t\"properties\": {\n\t\t\"solution_found\": {\n\t\t\t\"type\": \"boolean\"\n\t\t},\n \"short_summary_of_issue\": {\n \"type\": \"string\"\n },\n\t\t\"response\": {\n\t\t\t\"type\": \"string\"\n\t\t}\n\t}\n}"}, "typeVersion": 1.2}, {"id": "596ef421-beb0-4523-a313-3f6ccd9e8f0c", "name": "Get Issue Metadata", "type": "n8n-nodes-base.set", "position": [568, -180], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "200706ea-6936-48ae-a46c-38d6e2eff558", "name": "key", "type": "string", "value": "={{ $json.key }}"}, {"id": "3e3584bf-dc5c-408a-896c-1660710860f6", "name": "title", "type": "string", "value": "={{ $json.fields.summary }}"}, {"id": "e1d89014-5e07-4752-9e7c-ae8d4cba6f6e", "name": "url", "type": "string", "value": "={{\n[\n 'https:/',\n $json.self.extractDomain(),\n 'browse',\n $json.key\n ].join('/')\n}}"}, {"id": "df1cca88-1c57-475d-968e-999f6c25dba7", "name": "date", "type": "string", "value": "={{ DateTime.fromISO($json.fields.created).format('yyyy-MM-dd') }}"}, {"id": "7fc9c625-e741-43bb-9223-b8024fc86cc7", "name": "reporter", "type": "string", "value": "={{ $json.fields.reporter.displayName }}"}, {"id": "17bf06ae-fcad-4eb3-add8-11ac85e9a68e", "name": "reporter_url", "type": "string", "value": "={{\n[\n 'https:/',\n $json.fields.reporter.self.extractDomain(),\n 'jira',\n 'people',\n $json.fields.reporter.accountId\n ].join('/')\n}}"}, {"id": "7624642f-f76b-41ec-b402-280b64d46400", "name": "reporter_accountId", "type": "string", "value": "={{ $json.fields.reporter.accountId }}"}, {"id": "0fa1d73f-4e8b-435b-a78d-37e95c85c87c", "name": "description", "type": "string", "value": "={{ $json.fields.description }}"}]}}, "typeVersion": 3.4}, {"id": "23bb0cf8-c682-416c-a809-e9ca6fc480ef", "name": "Notify Slack Channel", "type": "n8n-nodes-base.slack", "position": [2600, 380], "parameters": {"select": "channel", "blocksUi": "={{\n{\n\t\"blocks\": [\n\t\t{\n\t\t\t\"type\": \"section\",\n\t\t\t\"text\": {\n\t\t\t\t\"type\": \"mrkdwn\",\n\t\t\t\t\"text\": \"Hey there \ud83d\udc4b\\nI found a zombie ticket that no one has taken a look at yet.\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"type\": \"section\",\n\t\t\t\"text\": {\n\t\t\t\t\"type\": \"mrkdwn\",\n\t\t\t\t\"text\": `*[${$('Get Issue Metadata').item.json.key}] ${$('Get Issue Metadata').item.json.title}*\\n${$('KnowledgeBase Agent').item.json.output.short_summary_of_issue}\\n\ud83d\udc64 <${$('Get Issue Metadata').item.json.reporter_url}|${$('Get Issue Metadata').item.json.reporter}> \ud83d\udcc5 ${$('Get Issue Metadata').item.json.date} \ud83d\udd17 <${$('Get Issue Metadata').item.json.url}|Link to Issue>\\n`\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"type\": \"divider\"\n\t\t},\n\t\t{\n\t\t\t\"type\": \"section\",\n\t\t\t\"text\": {\n\t\t\t\t\"type\": \"mrkdwn\",\n\t\t\t\t\"text\": \"I couldn't find an answer in the knowledgebase so I've notified the user and closed the ticket. Thanks!\"\n\t\t\t}\n\t\t}\n\t]\n}\n}}", "channelId": {"__rl": true, "mode": "list", "value": "C07S0NQ04D7", "cachedResultName": "n8n-jira"}, "messageType": "block", "otherOptions": {}}, "credentials": {"slackApi": {"id": "VfK3js0YdqBdQLGP", "name": "Slack account"}}, "typeVersion": 2.2}, {"id": "21076f8f-8462-4a5a-8831-709a138639c5", "name": "Close Issue2", "type": "n8n-nodes-base.jira", "position": [2920, 220], "parameters": {"issueKey": "={{ $('Get Issue Metadata').item.json.key }}", "operation": "update", "updateFields": {"statusId": {"__rl": true, "mode": "list", "value": "31", "cachedResultName": "Done"}}}, "credentials": {"jiraSoftwareCloudApi": {"id": "IH5V74q6PusewNjD", "name": "Jira SW Cloud account"}}, "typeVersion": 1}, {"id": "6c9b30c5-d061-4b4d-b4fa-596ca0768297", "name": "Get List of Unresolved Long Lived Issues", "type": "n8n-nodes-base.jira", "position": [-72, -180], "parameters": {"limit": 10, "options": {"jql": "status IN (\"To Do\", \"In Progress\") AND created <= -7d"}, "operation": "getAll"}, "credentials": {"jiraSoftwareCloudApi": {"id": "IH5V74q6PusewNjD", "name": "Jira SW Cloud account"}}, "typeVersion": 1}, {"id": "1c6c2919-c48b-47bb-a975-f184bd9e95dd", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [-337.3183708039286, -425.6402206027777], "parameters": {"color": 7, "width": 640.6500163735489, "height": 484.114789072283, "content": "## 1. Search For Unresolved Long-lived JIRA Issues\n[Learn more about the JIRA node](https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.jira)\n\nIn this demonstration, we'll define \"long-lived\" as any issue which is unresolved after 7 days. Adjust to fit your own criteria.\n\nWe'll also use the Execute Workflow node to run the issues separate in parallel. This is a performance optimisation and if not required, the alternative is to use a loop node instead."}, "typeVersion": 1}, {"id": "f21d95a7-0cef-4110-a3b9-59c562b2ea24", "name": "Execute Workflow", "type": "n8n-nodes-base.executeWorkflow", "position": [128, -180], "parameters": {"mode": "each", "options": {}, "workflowId": {"__rl": true, "mode": "id", "value": "={{ $workflow.id }}"}}, "typeVersion": 1.1}, {"id": "e9f9e6e6-c66d-4e50-b4d4-3931b8cf40c9", "name": "Execute Workflow Trigger", "type": "n8n-nodes-base.executeWorkflowTrigger", "position": [388, -180], "parameters": {}, "typeVersion": 1}, {"id": "91b5e024-6141-47e8-99ff-9ac25df7df48", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [320, -353.43597793972225], "parameters": {"color": 7, "width": 956.5422324510927, "height": 411.91054640922755, "content": "## 2. Retrieves and Combine JIRA Issue Comments\n[Learn more about the JIRA node](https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.jira)\n\nTo provide the necessary information for our AI agents, we'll fetch and combine all the issue's comments along with our issue. This gives a accurate history of the the issues progress (or lack thereof!)."}, "typeVersion": 1}, {"id": "9b545aa8-d2df-4500-8af0-ee55b0fcc736", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [1300, -381.8893508540474], "parameters": {"color": 7, "width": 653.0761795166852, "height": 583.0290516595711, "content": "## 3. Classify the Current State of the Issue\n[Learn more about the Text Classifier node](https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.text-classifier)\n\nToday's AI/LLMs are well suited for solving contextual problems like determining issue state. Here, we can use the text classifier node to analyse the issue as a whole to determine our next move. Almost like a really, really smart Switch node!\n\nThere are 3 branches we want to take: Check if a resolution was reached, blocked issues and auto-resolving when no team member has yet to respond."}, "typeVersion": 1}, {"id": "abe0da8f-4107-4641-b992-1a31f71ce530", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [1980, -820], "parameters": {"color": 7, "width": 896.1509781357872, "height": 726.4699654775604, "content": "## 4. Sentiment Analysis on Issue Resolution\n[Read more about the Sentiment Analysis node](https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.sentimentanalysis)\n\nThe Sentiment Analysis node is a convenient method of assessing\ncustomer satisfaction from resolved issues. Here, when resolution\nis detected as positive, we can ask use the opportunity to\ncapitalise of the favourable experience which in this example,\nis to ask for a review. In the opposite vein, if the exchange has\nbeen negative, we can escalate in an attempt to improve\nthe situation before closing the ticket.\n\nAI can equip teams to provide unrivalled customer support\nwhich can differentiate themselves significantly against\nthe competition."}, "typeVersion": 1}, {"id": "d9c97501-e2cf-4a7e-86cc-c295d69db939", "name": "Customer Satisfaction Agent", "type": "@n8n/n8n-nodes-langchain.sentimentAnalysis", "position": [2060, -400], "parameters": {"options": {}, "inputText": "=issue:\n{{ $('Simplify Thread For AI').item.json.topic }}\n\ncomments:\n{{ $('Simplify Thread For AI').item.json.thread.join('\\n') }}"}, "typeVersion": 1}, {"id": "2829d591-8347-4683-be10-663872c08546", "name": "Sticky Note5", "type": "n8n-nodes-base.stickyNote", "position": [1980, -60], "parameters": {"color": 7, "width": 1120.504487917144, "height": 675.5857025907994, "content": "## 5. Attempt to Resolve The Issue With KnowledgeBase\n[Read more about the AI Agent node](https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent/)\n\nWhen the issue is unaddressed, we can attempt to resolve the issue automatically using AI. Here an AI agent can easily be deployed with\naccess to knowledge tools to research and generate solutions for the user. Since n8n v1.62.1, AI Tools Agents can attach nodes directly as\ntools providing a very easy way to linking documents to the LLM.\n\nHere, we use both the JIRA tool to search for similar issues and the notion tool to query for product pages. If a solution can be generated,\nwe create a new comment with the solution and attach it to the issue. If not, then we can leave a simple message notifying the user that we could not do so. Finally, we close the issue as no further action can likely be taken in this case."}, "typeVersion": 1}, {"id": "112c9fd3-c104-4a68-8e58-96a317fef854", "name": "KnowledgeBase Agent", "type": "@n8n/n8n-nodes-langchain.agent", "position": [2060, 220], "parameters": {"text": "=issue:\n{{ $('Simplify Thread For AI').item.json.topic }}\n\ncomments:\n{{ $('Simplify Thread For AI').item.json.thread.join('\\n') }}", "options": {"systemMessage": "Help the user answer their question using the company's knowledgebase. Your answer must be based factually on documents retrieved from the knowledge. If no relevant information is found or the information is insufficent to answer the user's query, you must tell the user so and not mislead the user. If you don't know the answer, it is okay to say you don't know."}, "promptType": "define", "hasOutputParser": true}, "typeVersion": 1.6}, {"id": "c27e0679-29a0-45d7-ada7-9727975b5069", "name": "Sticky Note6", "type": "n8n-nodes-base.stickyNote", "position": [2900, -421.245651256349], "parameters": {"color": 7, "width": 801.0347525891818, "height": 507.581094640126, "content": "## 6. Notify for Unanswered Questions or Response Waiting\n[Read more about the Basic LLM Chain node](https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainllm/)\n\nIn this step, where signals indicate that the issue is not yet ready to be close, we can try to re-engage issue participants by summarize the conversation so far and sending a reminder comment for any pending actions that were requested. This action can help reduce the number of issues which linger for too long."}, "typeVersion": 1}, {"id": "0a7da82e-789b-401c-80d0-de3ade51942c", "name": "Issue Reminder Agent", "type": "@n8n/n8n-nodes-langchain.chainLlm", "position": [3180, -220], "parameters": {"text": "=issue:\n{{ $('Simplify Thread For AI').item.json.topic }}\n\ncomments:\n{{ $('Simplify Thread For AI').item.json.thread }}", "messages": {"messageValues": [{"message": "=The user has a pending issue and some time has passed since the last update. Analyse the last message in this thread and generate a short reminder message to add to the issue comments which summarizes and reiterates what pending action or information is required. Return only the message."}]}, "promptType": "define"}, "typeVersion": 1.4}, {"id": "2847136e-b95b-4906-89af-ceb180abb9b0", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [-820, -560], "parameters": {"width": 454.99286536248565, "height": 619.151728428442, "content": "## Try It Out!\n\n### This n8n template is designed to assist and improve customer support team member capacity by automating the resolution of long-lived and forgotten JIRA issues.\n\n* Schedule Trigger runs daily to check for long-lived unresolved issues and imports them into the workflow.\n* Each Issue is handled as a separate subworkflow by using an execute workflow node. This allows parallel processing.\n* A report is generated from the issue using its comment history allowing the issue to be classified by AI - determining the state and progress of the issue.\n* If determined to be resolved, sentiment analysis is performed to track customer satisfaction. If negative, a slack message is sent to escalate, otherwise the issue is closed automatically.\n* If no response has been initiated, an AI agent will attempt to search and resolve the issue itself using similar resolved issues or from the notion database. If a solution is found, it is posted to the issue and closed.\n* If the issue is blocked and waiting for responses, then a reminder message is added.\n\n### Need Help?\nJoin the [Discord](https://discord.com/invite/XPKeKXeB7d) or ask in the [Forum](https://community.n8n.io/)!"}, "typeVersion": 1}, {"id": "9edb0847-5dcf-4357-a1d4-537a126e277b", "name": "Find Simlar Issues", "type": "n8n-nodes-base.jiraTool", "position": [2160, 420], "parameters": {"limit": 4, "options": {"jql": "=text ~ \"{{ $fromAI('title', 'the title of the current issue', 'string', '') }}\" AND status IN (\"In Progress\", \"Done\")"}, "operation": "getAll", "descriptionType": "manual", "toolDescription": "Call this tool to search for similar issues in JIRA."}, "credentials": {"jiraSoftwareCloudApi": {"id": "IH5V74q6PusewNjD", "name": "Jira SW Cloud account"}}, "typeVersion": 1}, {"id": "573c1b75-35ae-40f0-aa6e-c1372f83569b", "name": "Query KnowledgeBase", "type": "n8n-nodes-base.notionTool", "position": [2280, 420], "parameters": {"text": "={{ $fromAI('search_terms', 'relevant terms to search for information on the current issue', 'string', '') }}", "limit": 4, "options": {}, "operation": "search", "descriptionType": "manual", "toolDescription": "Search the knowledgebase for information relevant to the issue."}, "credentials": {"notionApi": {"id": "iHBHe7ypzz4mZExM", "name": "Notion account"}}, "typeVersion": 2.2}, {"id": "1274f6ff-16d9-4d86-b75a-59755390a07c", "name": "Report Unhappy Resolution", "type": "n8n-nodes-base.slack", "position": [2660, -400], "parameters": {"text": "=", "select": "channel", "blocksUi": "={{\n{\n\t\"blocks\": [\n\t\t{\n\t\t\t\"type\": \"section\",\n\t\t\t\"text\": {\n\t\t\t\t\"type\": \"mrkdwn\",\n\t\t\t\t\"text\": \"Hey there \ud83d\udc4b\\nI found a unclosed ticket which was resolved but thread overall has a negative sentiment score. Please address or close the ticket.\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"type\": \"section\",\n\t\t\t\"text\": {\n\t\t\t\t\"type\": \"mrkdwn\",\n\t\t\t\t\"text\": `*[${$('Get Issue Metadata').item.json.key}] ${$('Get Issue Metadata').item.json.title}*\\n${$('KnowledgeBase Agent').item.json.output.short_summary_of_issue}\\n\ud83d\udc64 <${$('Get Issue Metadata').item.json.reporter_url}|${$('Get Issue Metadata').item.json.reporter}> \ud83d\udcc5 ${$('Get Issue Metadata').item.json.date} \ud83d\udd17 <${$('Get Issue Metadata').item.json.url}|Link to Issue>\\n`\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"type\": \"divider\"\n\t\t},\n\t\t{\n\t\t\t\"type\": \"section\",\n\t\t\t\"text\": {\n\t\t\t\t\"type\": \"mrkdwn\",\n\t\t\t\t\"text\": \"Thanks!\"\n\t\t\t}\n\t\t}\n\t]\n}\n}}", "channelId": {"__rl": true, "mode": "list", "value": "C07S0NQ04D7", "cachedResultName": "n8n-jira"}, "messageType": "block", "otherOptions": {}}, "credentials": {"slackApi": {"id": "VfK3js0YdqBdQLGP", "name": "Slack account"}}, "typeVersion": 2.2}, {"id": "3226d576-c3ae-444a-b0c5-ac797d25dd2e", "name": "Classify Current Issue State", "type": "@n8n/n8n-nodes-langchain.textClassifier", "position": [1480, -140], "parameters": {"options": {}, "inputText": "=issue:\n{{ $('Simplify Thread For AI').item.json.topic }}\n\ncomments:\n{{ $('Simplify Thread For AI').item.json.thread.join('\\n') || 'There are no comments' }}", "categories": {"categories": [{"category": "resolved", "description": "There are human comments and a resolution was found and/or accepted"}, {"category": "pending more information", "description": "There are human comments but no resolution has been reached yet"}, {"category": "still waiting", "description": "Reporter is still waiting on a response. Ignoring automated messages, there are no comments."}]}}, "executeOnce": false, "typeVersion": 1}]
{"Join Comments": {"main": [[{"node": "Simplify Thread For AI", "type": "main", "index": 0}]]}, "Reply to Issue": {"main": [[{"node": "Close Issue2", "type": "main", "index": 0}]]}, "Solution Found?": {"main": [[{"node": "Reply to Issue", "type": "main", "index": 0}], [{"node": "Notify Slack Channel", "type": "main", "index": 0}]]}, "Schedule Trigger": {"main": [[{"node": "Get List of Unresolved Long Lived Issues", "type": "main", "index": 0}]]}, "OpenAI Chat Model": {"ai_languageModel": [[{"node": "Classify Current Issue State", "type": "ai_languageModel", "index": 0}]]}, "Find Simlar Issues": {"ai_tool": [[{"node": "KnowledgeBase Agent", "type": "ai_tool", "index": 0}]]}, "Get Issue Comments": {"main": [[{"node": "Join Comments", "type": "main", "index": 0}]]}, "Get Issue Metadata": {"main": [[{"node": "Get Issue Comments", "type": "main", "index": 0}]]}, "OpenAI Chat Model1": {"ai_languageModel": [[{"node": "KnowledgeBase Agent", "type": "ai_languageModel", "index": 0}]]}, "OpenAI Chat Model3": {"ai_languageModel": [[{"node": "Issue Reminder Agent", "type": "ai_languageModel", "index": 0}]]}, "OpenAI Chat Model4": {"ai_languageModel": [[{"node": "Customer Satisfaction Agent", "type": "ai_languageModel", "index": 0}]]}, "KnowledgeBase Agent": {"main": [[{"node": "Solution Found?", "type": "main", "index": 0}]]}, "Query KnowledgeBase": {"ai_tool": [[{"node": "KnowledgeBase Agent", "type": "ai_tool", "index": 0}]]}, "Issue Reminder Agent": {"main": [[{"node": "Send Reminder", "type": "main", "index": 0}]]}, "Notify Slack Channel": {"main": [[{"node": "Reply to Issue", "type": "main", "index": 0}]]}, "Add Autoclose Message": {"main": [[{"node": "Close Issue", "type": "main", "index": 0}]]}, "Simplify Thread For AI": {"main": [[{"node": "Classify Current Issue State", "type": "main", "index": 0}]]}, "Last Message is Not Bot": {"main": [[{"node": "Issue Reminder Agent", "type": "main", "index": 0}]]}, "Ask For Feedback Message": {"main": [[{"node": "Close Issue", "type": "main", "index": 0}]]}, "Execute Workflow Trigger": {"main": [[{"node": "Get Issue Metadata", "type": "main", "index": 0}]]}, "Structured Output Parser": {"ai_outputParser": [[{"node": "KnowledgeBase Agent", "type": "ai_outputParser", "index": 0}]]}, "Customer Satisfaction Agent": {"main": [[{"node": "Ask For Feedback Message", "type": "main", "index": 0}], [{"node": "Add Autoclose Message", "type": "main", "index": 0}], [{"node": "Report Unhappy Resolution", "type": "main", "index": 0}]]}, "Classify Current Issue State": {"main": [[{"node": "Customer Satisfaction Agent", "type": "main", "index": 0}], [{"node": "Last Message is Not Bot", "type": "main", "index": 0}], [{"node": "KnowledgeBase Agent", "type": "main", "index": 0}]]}, "Get List of Unresolved Long Lived Issues": {"main": [[{"node": "Execute Workflow", "type": "main", "index": 0}]]}}
MongoDB Agent
[{"id": "d8c07efe-eca0-48cb-80e6-ea8117073c5f", "name": "OpenAI Chat Model", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [1300, 560], "parameters": {"options": {}}, "credentials": {"openAiApi": {"id": "TreGPMKr9hrtCvVp", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "636de178-7b68-429a-9371-41cf2a950076", "name": "MongoDBAggregate", "type": "n8n-nodes-base.mongoDbTool", "position": [1640, 540], "parameters": {"query": "={{ $fromAI(\"pipeline\", \"The MongoDB pipeline to execute\" , \"string\" , [{\"$match\" : { \"rating\" : 5 } }])}}", "operation": "aggregate", "collection": "movies", "descriptionType": "manual", "toolDescription": "Get from AI the MongoDB Aggregation pipeline to get context based on the provided pipeline, the document structure of the documents is : {\n \"plot\": \"A group of bandits stage a brazen train hold-up, only to find a determined posse hot on their heels.\",\n \"genres\": [\n \"Short\",\n \"Western\"\n ],\n \"runtime\": 11,\n \"cast\": [\n \"A.C. Abadie\",\n \"Gilbert M. 'Broncho Billy' Anderson\",\n ...\n ],\n \"poster\": \"...jpg\",\n \"title\": \"The Great Train Robbery\",\n \"fullplot\": \"Among the earliest existing films in American cinema - notable as the ...\",\n \"languages\": [\n \"English\"\n ],\n \"released\": \"date\"\n },\n \"directors\": [\n \"Edwin S. Porter\"\n ],\n \"rated\": \"TV-G\",\n \"awards\": {\n \"wins\": 1,\n \"nominations\": 0,\n \"text\": \"1 win.\"\n },\n \"lastupdated\": \"2015-08-13 00:27:59.177000000\",\n \"year\": 1903,\n \"imdb\": {\n \"rating\": 7.4,"}, "credentials": {"mongoDb": {"id": "8xGgiXzf2o0L4a0y", "name": "MongoDB account"}}, "typeVersion": 1.1}, {"id": "e0f248dc-22b7-40a2-a00e-6298b51e4470", "name": "Window Buffer Memory", "type": "@n8n/n8n-nodes-langchain.memoryBufferWindow", "position": [1500, 540], "parameters": {"contextWindowLength": 10}, "typeVersion": 1.2}, {"id": "da27ee52-43db-4818-9844-3c0a064bf958", "name": "When chat message received", "type": "@n8n/n8n-nodes-langchain.chatTrigger", "position": [1160, 400], "webhookId": "0730df2d-2f90-45e0-83dc-609668260fda", "parameters": {"mode": "webhook", "public": true, "options": {"allowedOrigins": "*"}}, "typeVersion": 1.1}, {"id": "9ad79da9-3145-44be-9026-e37b0e856f5d", "name": "insertFavorite", "type": "@n8n/n8n-nodes-langchain.toolWorkflow", "position": [1860, 520], "parameters": {"name": "insertFavorites", "workflowId": {"__rl": true, "mode": "list", "value": "6QuKnOrpusQVu66Q", "cachedResultName": "insertMongoDB"}, "description": "=Use this tool only to add favorites with the structure of {\"title\" : \"recieved title\" }"}, "typeVersion": 1.2}, {"id": "4d7713d1-d2ad-48bf-971b-b86195e161ca", "name": "AI Agent - Movie Recommendation", "type": "@n8n/n8n-nodes-langchain.agent", "position": [1380, 300], "parameters": {"text": "=Assistant for best movies context, you have tools to search using \"MongoDBAggregate\" and you need to provide a MongoDB aggregation pipeline code array as a \"query\" input param. User input and request: {{ $json.chatInput }}. Only when a user confirms a favorite movie use the insert favorite using the \"insertFavorite\" workflow tool of to insertFavorite as { \"title\" : \"<TITLE>\" }.", "options": {}, "promptType": "define"}, "typeVersion": 1.7}, {"id": "2eac8aed-9677-4d89-bd76-456637f5b979", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [880, 300], "parameters": {"width": 216.0875923062025, "height": 499.89779507612025, "content": "## AI Agent powered by OpenAI and MongoDB \n\nThis flow is designed to work as an AI autonomous agent that can get chat messages, query data from MongoDB using the aggregation framework.\n\nFollowing by augmenting the results from the sample movies collection and allowing storing my favorite movies back to the database using an \"insert\" flow. "}, "typeVersion": 1}, {"id": "4d8130fe-4aed-4e09-9c1d-60fb9ac1a500", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [1300, 720], "parameters": {"content": "## Process\n\nThe message is being processed by the \"Chat Model\" and the correct tool is used according to the message. "}, "typeVersion": 1}]
{"insertFavorite": {"ai_tool": [[{"node": "AI Agent - Movie Recommendation", "type": "ai_tool", "index": 0}]]}, "MongoDBAggregate": {"ai_tool": [[{"node": "AI Agent - Movie Recommendation", "type": "ai_tool", "index": 0}]]}, "OpenAI Chat Model": {"ai_languageModel": [[{"node": "AI Agent - Movie Recommendation", "type": "ai_languageModel", "index": 0}]]}, "Window Buffer Memory": {"ai_memory": [[{"node": "AI Agent - Movie Recommendation", "type": "ai_memory", "index": 0}]]}, "When chat message received": {"main": [[{"node": "AI Agent - Movie Recommendation", "type": "main", "index": 0}]]}}
Microsoft OneDrive:Folder:create getChildren share search delete:File:upload get share download copy delete search
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "8dd4b3f2-e8ad-481a-8a37-6fc5cad4eb8e"}, {"parameters": {"resource": "folder", "operation": "create", "name": "=TestFolder{{Date.now()}}", "options": {}}, "name": "Microsoft OneDrive", "type": "n8n-nodes-base.microsoftOneDrive", "typeVersion": 1, "position": [490, 300], "credentials": {"microsoftOneDriveOAuth2Api": {"id": "69", "name": "Microsoft Drive OAuth2 creds"}}, "id": "60b3c5f1-1a49-4961-9d3b-7a8681b882fc"}, {"parameters": {"resource": "folder", "folderId": "={{$node[\"Microsoft OneDrive\"].json[\"id\"]}}"}, "name": "Microsoft OneDrive1", "type": "n8n-nodes-base.microsoftOneDrive", "typeVersion": 1, "position": [2410, 300], "alwaysOutputData": true, "credentials": {"microsoftOneDriveOAuth2Api": {"id": "69", "name": "Microsoft Drive OAuth2 creds"}}, "id": "1fea4cc3-5693-470e-b04b-630bfc994fce"}, {"parameters": {"resource": "folder", "operation": "search", "query": "TestFolder"}, "name": "Microsoft OneDrive2", "type": "n8n-nodes-base.microsoftOneDrive", "typeVersion": 1, "position": [2850, 150], "alwaysOutputData": true, "credentials": {"microsoftOneDriveOAuth2Api": {"id": "69", "name": "Microsoft Drive OAuth2 creds"}}, "notes": "CAP_RESULTS_LENGTH=1", "id": "d04119ed-853d-421e-a872-c02d3ab34b6d"}, {"parameters": {"resource": "folder", "operation": "share", "folderId": "={{$node[\"Microsoft OneDrive\"].json[\"id\"]}}", "type": "view", "scope": "anonymous"}, "name": "Microsoft OneDrive3", "type": "n8n-nodes-base.microsoftOneDrive", "typeVersion": 1, "position": [2560, 300], "alwaysOutputData": true, "credentials": {"microsoftOneDriveOAuth2Api": {"id": "69", "name": "Microsoft Drive OAuth2 creds"}}, "id": "2fd0be17-d65a-4c47-ada6-ed83a84a8a9c"}, {"parameters": {"fileName": "=FileName{{Date.now()}}", "parentId": "={{$node[\"Microsoft OneDrive\"].json[\"id\"]}}", "fileContent": "=Test written at {{Date()}}"}, "name": "Microsoft OneDrive4", "type": "n8n-nodes-base.microsoftOneDrive", "typeVersion": 1, "position": [770, 450], "credentials": {"microsoftOneDriveOAuth2Api": {"id": "69", "name": "Microsoft Drive OAuth2 creds"}}, "id": "88d28811-6fdc-4d81-8d64-225c857efe27"}, {"parameters": {"operation": "get", "fileId": "={{$node[\"Microsoft OneDrive4\"].json[\"id\"]}}"}, "name": "Microsoft OneDrive5", "type": "n8n-nodes-base.microsoftOneDrive", "typeVersion": 1, "position": [1070, 450], "credentials": {"microsoftOneDriveOAuth2Api": {"id": "69", "name": "Microsoft Drive OAuth2 creds"}}, "id": "cdf9a69d-e4e0-4c8d-a154-e57910ed9c9e"}, {"parameters": {"operation": "share", "fileId": "={{$node[\"Microsoft OneDrive4\"].json[\"id\"]}}", "type": "view", "scope": "anonymous"}, "name": "Microsoft OneDrive6", "type": "n8n-nodes-base.microsoftOneDrive", "typeVersion": 1, "position": [1220, 450], "credentials": {"microsoftOneDriveOAuth2Api": {"id": "69", "name": "Microsoft Drive OAuth2 creds"}}, "id": "35ac9411-ebea-4929-a4b8-5fab696507c0"}, {"parameters": {"operation": "search", "query": "Test"}, "name": "Microsoft OneDrive7", "type": "n8n-nodes-base.microsoftOneDrive", "typeVersion": 1, "position": [2120, 450], "alwaysOutputData": true, "credentials": {"microsoftOneDriveOAuth2Api": {"id": "69", "name": "Microsoft Drive OAuth2 creds"}}, "id": "d4cf2dbf-430b-4af9-a478-78f9d63c0f4e"}, {"parameters": {"operation": "download", "fileId": "={{$node[\"Microsoft OneDrive4\"].json[\"id\"]}}"}, "name": "Microsoft OneDrive8", "type": "n8n-nodes-base.microsoftOneDrive", "typeVersion": 1, "position": [1520, 450], "alwaysOutputData": true, "credentials": {"microsoftOneDriveOAuth2Api": {"id": "69", "name": "Microsoft Drive OAuth2 creds"}}, "id": "b22405f7-c624-4f51-b72f-2cd6fba6055c"}, {"parameters": {"operation": "copy", "fileId": "={{$node[\"Microsoft OneDrive4\"].json[\"id\"]}}", "additionalFields": {"name": "=CopiedFile{{Date.now()}}"}, "parentReference": {"name": "=CopiedFile{{Date.now()}}", "path": "=/drive/root:/{{$node[\"Microsoft OneDrive\"].json[\"name\"]}}"}}, "name": "Microsoft OneDrive9", "type": "n8n-nodes-base.microsoftOneDrive", "typeVersion": 1, "position": [1670, 450], "credentials": {"microsoftOneDriveOAuth2Api": {"id": "69", "name": "Microsoft Drive OAuth2 creds"}}, "id": "0a8c8d20-cc43-4a4d-a1d4-acebd6742cdd"}, {"parameters": {"operation": "delete", "fileId": "={{$node[\"Microsoft OneDrive4\"].json[\"id\"]}}"}, "name": "Microsoft OneDrive10", "type": "n8n-nodes-base.microsoftOneDrive", "typeVersion": 1, "position": [1970, 450], "credentials": {"microsoftOneDriveOAuth2Api": {"id": "69", "name": "Microsoft Drive OAuth2 creds"}}, "id": "9cbe23a3-6e32-45a8-9e9f-60c9ed5cea4e"}, {"parameters": {"resource": "folder", "operation": "delete", "folderId": "={{$node[\"Microsoft OneDrive\"].json[\"id\"]}}"}, "name": "Microsoft OneDrive11", "type": "n8n-nodes-base.microsoftOneDrive", "typeVersion": 1, "position": [2850, 300], "alwaysOutputData": true, "credentials": {"microsoftOneDriveOAuth2Api": {"id": "69", "name": "Microsoft Drive OAuth2 creds"}}, "id": "c33517a8-7045-45c7-8e49-e778313d2ce7"}, {"parameters": {"functionCode": "function sleep(milliseconds) {\n return new Promise(\n resolve => setTimeout(resolve, milliseconds)\n );\n}\n\nawait sleep(800);\n\n// Output data\nreturn items;"}, "name": "Sleep 0.8 second", "type": "n8n-nodes-base.function", "position": [2700, 300], "typeVersion": 1, "id": "47de5dd5-9705-4186-a0f4-9579467897e3"}, {"parameters": {"functionCode": "function sleep(milliseconds) {\n return new Promise(\n resolve => setTimeout(resolve, milliseconds)\n );\n}\n\nawait sleep(800);\n\n// Output data\nreturn items;"}, "name": "Sleep 0.8 second1", "type": "n8n-nodes-base.function", "position": [2280, 300], "typeVersion": 1, "id": "0987168a-7db4-4e81-bde8-4a6961f514a1"}, {"parameters": {"functionCode": "function sleep(milliseconds) {\n return new Promise(\n resolve => setTimeout(resolve, milliseconds)\n );\n}\n\nawait sleep(800);\n\n// Output data\nreturn items;"}, "name": "Sleep 0.8 second2", "type": "n8n-nodes-base.function", "position": [1820, 450], "typeVersion": 1, "id": "eb7f14c0-6925-4c32-89f6-835e09498bce"}, {"parameters": {"functionCode": "function sleep(milliseconds) {\n return new Promise(\n resolve => setTimeout(resolve, milliseconds)\n );\n}\n\nawait sleep(800);\n\n// Output data\nreturn items;"}, "name": "Sleep 0.8 second3", "type": "n8n-nodes-base.function", "position": [1370, 450], "typeVersion": 1, "id": "04e7f940-2bd4-4191-8157-89a3c067fdd1"}, {"parameters": {"functionCode": "function sleep(milliseconds) {\n return new Promise(\n resolve => setTimeout(resolve, milliseconds)\n );\n}\n\nawait sleep(800);\n\n// Output data\nreturn items;"}, "name": "Sleep 0.8 second4", "type": "n8n-nodes-base.function", "position": [920, 450], "typeVersion": 1, "id": "6977a587-99f4-4998-953f-7ea20768a92b"}, {"parameters": {"functionCode": "function sleep(milliseconds) {\n return new Promise(\n resolve => setTimeout(resolve, milliseconds)\n );\n}\n\nawait sleep(800);\n\n// Output data\nreturn items;"}, "name": "Sleep 0.8 second5", "type": "n8n-nodes-base.function", "position": [650, 450], "typeVersion": 1, "id": "7e920caf-326c-44ad-9f49-bb11d8378d12"}]
{"Microsoft OneDrive": {"main": [[{"node": "Sleep 0.8 second5", "type": "main", "index": 0}]]}, "Microsoft OneDrive1": {"main": [[{"node": "Microsoft OneDrive3", "type": "main", "index": 0}]]}, "Microsoft OneDrive3": {"main": [[{"node": "Sleep 0.8 second", "type": "main", "index": 0}]]}, "Microsoft OneDrive4": {"main": [[{"node": "Sleep 0.8 second4", "type": "main", "index": 0}]]}, "Microsoft OneDrive5": {"main": [[{"node": "Microsoft OneDrive6", "type": "main", "index": 0}]]}, "Microsoft OneDrive6": {"main": [[{"node": "Sleep 0.8 second3", "type": "main", "index": 0}]]}, "Microsoft OneDrive7": {"main": [[{"node": "Sleep 0.8 second1", "type": "main", "index": 0}]]}, "Microsoft OneDrive8": {"main": [[{"node": "Microsoft OneDrive9", "type": "main", "index": 0}]]}, "Microsoft OneDrive9": {"main": [[{"node": "Sleep 0.8 second2", "type": "main", "index": 0}]]}, "Microsoft OneDrive10": {"main": [[{"node": "Microsoft OneDrive7", "type": "main", "index": 0}]]}, "Start": {"main": [[{"node": "Microsoft OneDrive", "type": "main", "index": 0}]]}, "Sleep 0.8 second": {"main": [[{"node": "Microsoft OneDrive11", "type": "main", "index": 0}, {"node": "Microsoft OneDrive2", "type": "main", "index": 0}]]}, "Sleep 0.8 second1": {"main": [[{"node": "Microsoft OneDrive1", "type": "main", "index": 0}]]}, "Sleep 0.8 second2": {"main": [[{"node": "Microsoft OneDrive10", "type": "main", "index": 0}]]}, "Sleep 0.8 second3": {"main": [[{"node": "Microsoft OneDrive8", "type": "main", "index": 0}]]}, "Sleep 0.8 second4": {"main": [[{"node": "Microsoft OneDrive5", "type": "main", "index": 0}]]}, "Sleep 0.8 second5": {"main": [[{"node": "Microsoft OneDrive4", "type": "main", "index": 0}]]}}
Static files workflow
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "48c3bb01-34b1-416a-a29a-428f46b0b5a0"}, {"parameters": {"fileName": "=/tmp/{{$node[\"Set files\"].json[\"filename\"]}}", "dataPropertyName": "binaryfile"}, "name": "Write Binary File", "type": "n8n-nodes-base.writeBinaryFile", "typeVersion": 1, "position": [650, 300], "id": "3975413e-bcd6-4e7a-a57d-a6d16d734dcd"}, {"parameters": {"functionCode": "files = [\n {\n mimeType: 'image/png',\n data: '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',\n fileName: 'n8n-logo.png',\n },\n\n {\n mimeType: 'application/pdf',\n data: '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3iVUEWUxQu8Tqou1xDr0TqGR2ExsJbYTO4rdxD7l0TMKxSJxojhNnCU+LtriAnGxuFRcIa4RN4hviJsv1nddIR/7zXgoAawCVgUTwSTwElAGLwWDYAiMgAqogTpogFHwcvAK8EqwOvgn8CqwJlgLvA5MAa8H64I3gDeC9cEG4E1gI7AJ2BRsBt4KtgHbgneC7cEOYCrYGUwDu4BdwW5gd7AH2BPsBfYG+4B9wX7g3WB/cAA4EL/QPwl+B34P/hs8Bf4A/sgYJaAAiqAHlEAv5R9On8tpE06bcNqE0yacNuG0CadNOG3CaRNOm3DahNMmnDbhtAmnTThtwmkTTptw2oTTJpw24bQJp004bcJpE06bcNqE0yacNuG0CadNOG3CaRNOm3DahNMmnDbhtAmnTThtwmkTTptw2oTTJpw24bQJp004bcJpE06bcNqE0yacNuG0CadNOG3CaRNOm3DahNMmnDbhtAmnTThtwmkTTptw2oTTJpw24bQJp004bcJpE06bcNr8w+lzOm3BaQtOW3DagtMWnLbgtAWnLThtwWkLTltw2oLTFpy24LQFpy04bcFpC05bcNqC0xactuC0BactOG3BaQtOW3DagtMWnLbgtAWnLThtwWkLTltw2oLTFpy24LQFpy04bcFpC05bcNqC0xactuC0BactOG3BaQtOW3DagtMWnLbgtAWnLThtwWkLTltw2oLTFpy24LQFpy04bcFpC05bcNqC0xactuC0BactOG3BaQtOW384fU6nHTjtwGkHTjtw2oHTDpx24LQDpx047cBpB047cNqB0w6cduC0A6cdOO3AaQdOO3DagdMOnHbgtAOnHTjtwGkHTjtw2oHTDpx24LQDpx047cBpB047cNqB0w6cduC0A6cdOO3AaQdOO3DagdMOnHbgtAOnHTjtwGkHTjtw2oHTDpx24LQDpx047cBpB047cNqB0w6cduC0A6cdOO3AaQdOO3DagdMOnHbgtAOnHTjtwGnnD6fP6bQLp1047cJpF067cNqF0y6cduG0C6ddOO3CaRdOu3DahdMunHbhtAunXTjtwmkXTrtw2oXTLpx24bQLp1047cJpF067cNqF0y6cduG0C6ddOO3CaRdOu3DahdMunHbhtAunXTjtwmkXTrtw2oXTLpx24bQLp1047cJpF067cNqF0y6cduG0C6ddOO3CaRdOu3DahdMunHbhtAunXTjtwmkXTrtw2oXTLpx24bQLp1047f7enb4Yo7jROmcQ9oQIowR6QR9YBawKJoJ+8BJQBgNgEAyDEVABVdAAo+BlYDXwcvBKsDpYA7wGTAavBeuA14HXg3XBG8AbwfrgTWAjsDHYBGwG3gq2AFuCt4OtwTvAduCdYHvwLrADmAp2BDuBncE0sAvYFewGdgd7gIgfHMW2jSaA2MJRbOEotnA0CcQWjmILRy8FsZ2j2M7REMi29h9On8tpC05bcNqC0xactuC0BactOG3BaQtOW3DagtMWnLbgtAWnLThtwWkLTltw2oLTFpy24LQFpy04bcFpC05bcNqC0xactuC0BactOG3BaQtOW3DagtMWnLbgtAWnLThtwWkLTltw2oLTFpy24LQFpy04bcFpC05bcNqC0xactuC0BactOG3BaQtOW3DagtMWnLbgtAWnLThtwWkLTltw2oLTFpy24LQFpy04bcFpC05bcPp335++SE7bcNqG0zactuG0DadtOG3DaRtO23DahtM2nLbhtA2nbThtw2kbTttw2obTNpy24bQNp204bcNpG07bcNqG0zactuG0DadtOG3DaRtO23DahtM2nLbhtA2nbThtw2kbTttw2obTNpy24bQNp204bcNpG07bcNqG0zactuG0DadtOG3DaRtO23DahtM2nLbhtA2nbThtw2kbTttw2obTNpy24bQNp204bcNpG07bcNqG03b59+GIwhFaHLHY6Ox6hr4CaTpNBZJDGpAFZDFZSlYg8uMbFX6peoKcEqTy54ZrCXWEWmSFUJ9so1ObCq0wnnMPemxkCDls9GP6V0TL2CZMpsfH44JL52K5p4Wlwiq69Dr239vQU6GFtBe9KLSSPWESmUci+A/E5fgPRAr+91AX/3u4Ef97qE9bXorvhUpZ1E/KPLAYHAnafL1ewrt80AULwPngPMyVx8ty+DIO3xazMfU5sAh8Bp+M4/On8/lMnr6ENJfFQkX6AOZaCY7DtAks3ibqmM1rno1RwtkcsdrGY3oR/3wmT0t4OpvFKkUL8D4W1RMp1i2q4l0smmcKiZBmpBWeEe5FBpIMko1IEUV4aiwW27NsH7PnJe4JDyMknB0ezQwJD2QRXikR+zfM+sDs3dDyNDY1GxwCTgRngRMos1BCFi8hC0tm8RKyeAlZKCELJWShhCyU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kYPrt5OXtxSXaxZf+jNV8/IY1Cx6nMM59q+xJrj4U28LwUPKkqiMLlSdsLBPG+x1W7usXXdCsD8qLLTNy2LdXqFSjuSk0+CydwCDYzt/8yB/3Sv+qBSlj27BEMh/ABW4qmINCmVuZHN0cmVhbQ0KZW5kb2JqDQoyMCAwIG9iag0KPDwvVHlwZS9YUmVmL1NpemUgMjAvV1sgMSA0IDJdIC9Sb290IDEgMCBSL0luZm8gOSAwIFIvSURbPDMyMThENkU0QjEwRjNFNDk4MEE3OTdBQUUxRTVCOTZEPjwzMjE4RDZFNEIxMEYzRTQ5ODBBNzk3QUFFMUU1Qjk2RD5dIC9GaWx0ZXIvRmxhdGVEZWNvZGUvTGVuZ3RoIDgxPj4NCnN0cmVhbQ0KeJxjYACC//8ZgaQgAwOIqoVQW8EU42EwxcwPobaDKZZlEOo2mGIVYGBgAmoQYGCGUCwQihVCMUEoqBI2kIZfMB4jkMfeATaFI5eBAQACHwkSDQplbmRzdHJlYW0NCmVuZG9iag0KeHJlZg0KMCAyMQ0KMDAwMDAwMDAxMCA2NTUzNSBmDQowMDAwMDAwMDE3IDAwMDAwIG4NCjAwMDAwMDAxMjUgMDAwMDAgbg0KMDAwMDAwMDE4MSAwMDAwMCBuDQowMDAwMDAwNDUxIDAwMDAwIG4NCjAwMDAwMDA3ODMgMDAwMDAgbg0KMDAwMDAwMDk1MSAwMDAwMCBuDQowMDAwMDAxMTkwIDAwMDAwIG4NCjAwMDAwMDEyNDMgMDAwMDAgbg0KMDAwMDAwMTI5NiAwMDAwMCBuDQowMDAwMDAwMDExIDY1NTM1IGYNCjAwMDAwMDAwMTIgNjU1MzUgZg0KMDAwMDAwMDAxMyA2NTUzNSBmDQowMDAwMDAwMDE0IDY1NTM1IGYNCjAwMDAwMDAwMTUgNjU1MzUgZg0KMDAwMDAwMDAxNiA2NTUzNSBmDQowMDAwMDAwMDE3IDY1NTM1IGYNCjAwMDAwMDAwMDAgNjU1MzUgZg0KMDAwMDAwMTkyOCAwMDAwMCBuDQowMDAwMDAyMTU3IDAwMDAwIG4NCjAwMDAxODU1MTkgMDAwMDAgbg0KdHJhaWxlcg0KPDwvU2l6ZSAyMS9Sb290IDEgMCBSL0luZm8gOSAwIFIvSURbPDMyMThENkU0QjEwRjNFNDk4MEE3OTdBQUUxRTVCOTZEPjwzMjE4RDZFNEIxMEYzRTQ5ODBBNzk3QUFFMUU1Qjk2RD5dID4+DQpzdGFydHhyZWYNCjE4NTc5OQ0KJSVFT0YNCnhyZWYNCjAgMA0KdHJhaWxlcg0KPDwvU2l6ZSAyMS9Sb290IDEgMCBSL0luZm8gOSAwIFIvSURbPDMyMThENkU0QjEwRjNFNDk4MEE3OTdBQUUxRTVCOTZEPjwzMjE4RDZFNEIxMEYzRTQ5ODBBNzk3QUFFMUU1Qjk2RD5dIC9QcmV2IDE4NTc5OS9YUmVmU3RtIDE4NTUxOT4+DQpzdGFydHhyZWYNCjE4NjM3Ng0KJSVFT0Y=',\n fileName: '05-versions-space.pdf',\n },\n\n {\n mimeType: 'image/png',\n data: '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',\n fileName: 'n8n-screenshot.png',\n }\n]\n\nreturn files.map(file => ({json:{filename:file.fileName},binary:{binaryfile:file}}));\n"}, "name": "Set files", "type": "n8n-nodes-base.function", "typeVersion": 1, "position": [450, 300], "id": "3f6a46bd-b5e9-4ff3-9562-335c4f540f02"}]
{"Start": {"main": [[{"node": "Set files", "type": "main", "index": 0}]]}, "Set files": {"main": [[{"node": "Write Binary File", "type": "main", "index": 0}]]}}
Daily Podcast Summary
[{"id": "49ab7596-665e-4a0f-bb8b-9dc04525ce88", "name": "Gmail", "type": "n8n-nodes-base.gmail", "position": [2340, 1440], "parameters": {"message": "={{ $json.html }}", "options": {}, "subject": "Podcast Review"}, "credentials": {"gmailOAuth2": {"id": "1MUdv1HbrQUFABiZ", "name": "Gmail account"}}, "typeVersion": 2.1}, {"id": "40aa23f4-69d6-46e5-84a2-b46a64a3f0af", "name": "TaddyTopDaily", "type": "n8n-nodes-base.httpRequest", "position": [1620, 820], "parameters": {"url": "https://api.taddy.org/", "method": "POST", "options": {}, "sendBody": true, "sendHeaders": true, "bodyParameters": {"parameters": [{"name": "query", "value": "=query { getTopChartsByGenres( limitPerPage:10, filterByCountry:UNITED_STATES_OF_AMERICA, taddyType:PODCASTEPISODE, genres:PODCASTSERIES_{{ $json.genre }}){ topChartsId podcastEpisodes{ uuid name audioUrl podcastSeries{ uuid name } } } }"}]}, "headerParameters": {"parameters": [{"name": "X-USER-ID"}, {"name": "X-API-KEY"}]}}, "typeVersion": 4.2}, {"id": "42eea23b-b09c-49ee-af5b-12abb3960390", "name": "Genre", "type": "n8n-nodes-base.set", "position": [1420, 820], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "e995cd5b-b91c-4a9d-8215-44d7dfe3f52f", "name": "genre", "type": "string", "value": "TECHNOLOGY"}]}}, "typeVersion": 3.4}, {"id": "da256fbf-ed7b-4a26-9fa8-33d1c2b717a5", "name": "Split Out", "type": "n8n-nodes-base.splitOut", "position": [1840, 820], "parameters": {"options": {}, "fieldToSplitOut": "data.getTopChartsByGenres.podcastEpisodes"}, "typeVersion": 1}, {"id": "069ab68c-dcd6-406f-8e7f-2597f62a04f5", "name": "Whisper Transcribe Audio", "type": "n8n-nodes-base.httpRequest", "position": [1880, 1120], "parameters": {"url": "https://api.openai.com/v1/audio/transcriptions", "method": "POST", "options": {}, "sendBody": true, "contentType": "multipart-form-data", "authentication": "predefinedCredentialType", "bodyParameters": {"parameters": [{"name": "model", "value": "whisper-1"}, {"name": "file", "parameterType": "formBinaryData", "inputDataFieldName": "data"}]}, "nodeCredentialType": "openAiApi"}, "credentials": {"openAiApi": {"id": "tTOOlpAaNT3QoKbQ", "name": "OpenAi account"}}, "typeVersion": 3}, {"id": "ffa67b8d-8601-4e1d-8f72-b6266e6b3327", "name": "Final Data", "type": "n8n-nodes-base.set", "position": [2320, 1120], "parameters": {"mode": "raw", "options": {}, "jsonOutput": "={\n\"podcast\": \"{{ $('TaddyTopDaily').item.json.data.getTopChartsByGenres.podcastEpisodes[$itemIndex].podcastSeries.name }}\",\n\"name\": \"{{ $('TaddyTopDaily').item.json.data.getTopChartsByGenres.podcastEpisodes[$itemIndex].name.replace(/\\\"/g,'\\\"') }}\",\n \"url\":\"{{ $('TaddyTopDaily').item.json.data.getTopChartsByGenres.podcastEpisodes[$itemIndex].audioUrl.replace(/\"/g,'') }}\",\n\"summary\":\"{{ $json.message.content.replace(/\\\\/g, '\\\\\\\\').replace(/\"/g, '\\\\\"').replace(/\\n/g, '<br/>').replace(/\\r/g, '\\\\r').replace(/\\t/g, '\\\\t') }}\"\n \n}\n"}, "typeVersion": 3.4}, {"id": "88cd1fa5-07ae-4dcd-b4f8-85cbf7c98d73", "name": "Merge Results", "type": "n8n-nodes-base.code", "position": [1900, 1440], "parameters": {"jsCode": "return [{fields:$input.all().map(x=>x.json)}]"}, "typeVersion": 2}, {"id": "4c2c80d1-750f-42f1-a0f1-343dec325b0f", "name": "HTML", "type": "n8n-nodes-base.html", "position": [2120, 1440], "parameters": {"html": "<!DOCTYPE html>\n<html>\n<head>\n <meta charset=\"UTF-8\" />\n</head>\n<body>\n <table>\n <tr> \n {{ ['Podcast', 'Episode', 'Summary'].map(propname=>'<td><h4>'+propname+'</h4></td>').join('') }}\n </tr>\n {{ $json.fields.map(ep=>{ return `<tr><td>${ep.podcast}</td><td><a href=\"${ep.url}\">${ep.name}</a></td><td>${ep.summary}</td><td></td></tr>`} ) }}\n </table>\n</body>\n</html>\n\n<style>\ntr { \n border: 1px solid #000; \n padding: 8px; \n }\n.container {\n background-color: #ffffff;\n text-align: center;\n padding: 16px;\n border-radius: 8px;\n}\n\nh1 {\n color: #ff6d5a;\n font-size: 24px;\n font-weight: bold;\n padding: 8px;\n}\n\nh2 {\n color: #909399;\n font-size: 18px;\n font-weight: bold;\n padding: 8px;\n}\n</style>\n"}, "executeOnce": true, "typeVersion": 1.2}, {"id": "f1d13556-2c3a-48e5-84a1-5b82f338c6ba", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [340, 760], "parameters": {"color": 4, "width": 547.952991050529, "height": 683.5200847858991, "content": "## Daily Podcast Summary\n### This workflow will summarize the content in the day's top podcasts for a certain genre, then send you the podcasts with summaries by email\n\n## Setup:\n 1. Create a free API key on Taddy here: https://taddy.org/signup/developers\n 2. Input your user number and API key into the `TaddyTopDaily` node in the header parameters X-USER-ID and X-API-KEY respectively.\n 3. Create access credentials for your Gmail as described here: https://developers.google.com/workspace/guides/create-credentials. Use the credentials from your *client_secret.json* in the `Gmail` node.\n 4. In the `Genre` node, set the genre of podcasts you want a summary for. Valid values are: TECHNOLOGY, NEWS, ARTS, COMEDY, SPORTS, FICTION, etc. Look at api.taddy.org for the full list (they will be displayed in the help docs as PODCASTSERIES_TECHNOLOGY, PODCASTSERIES_NEWS, etc.)\n 5. Enter your email address in the `Gmail` node.\n 6. Change the schedule time for sending email from `Schedule` to whichever time you want to receive the email.\n \n\n## Test:\n- Link a `Test Workflow` node in place of the `Schedule` node.\n- Hit Test Workflow.\n- Check your email for the results."}, "typeVersion": 1}, {"id": "5aee7279-349e-47cd-99dc-7a32677b5a20", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [1820, 1060], "parameters": {"width": 651.4454343326669, "height": 252.64899257060446, "content": "### Whisper transcribes and Open AI summarizes the podcast"}, "typeVersion": 1}, {"id": "f8b4a203-b27f-4a11-90ef-a7e1561219f5", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [1100, 760], "parameters": {"width": 1189.7320416038633, "height": 249.2202456997519, "content": "### Get daily list of top podcasts (according to Apple charts) and download audio, then crop for OpenAI"}, "typeVersion": 1}, {"id": "7045c9c8-5509-4dc0-b167-ddd4d6c90c22", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [1825, 1384], "parameters": {"width": 645.0210885124873, "height": 227.94126205257731, "content": "### Finally, send the email!"}, "typeVersion": 1}, {"id": "8dc9583b-cec3-4ac0-a74a-329f6c3b4801", "name": "Summarize Podcast", "type": "n8n-nodes-base.openAi", "position": [2140, 1120], "parameters": {"model": "gpt-4o-mini", "prompt": {"messages": [{"content": "=Summarize the major points of the following podcast: {{ $json.text }}. Start your answer by saying 'This episode focuses on', 'This episode is about', etc. Contain your answer to 3-4 paragraphs max, and focus on only key information. "}]}, "options": {"maxTokens": 500}, "resource": "chat", "requestOptions": {}}, "credentials": {"openAiApi": {"id": "tTOOlpAaNT3QoKbQ", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "e8d122f1-29f9-41ca-9c6b-b72269686fd6", "name": "Schedule", "type": "n8n-nodes-base.scheduleTrigger", "position": [1220, 820], "parameters": {"rule": {"interval": [{"triggerAtHour": 8}]}}, "typeVersion": 1.2}, {"id": "67bc7a5b-8d0a-4de4-918d-410551dad4d7", "name": "Request Audio Crop", "type": "n8n-nodes-base.httpRequest", "position": [1000, 1220], "parameters": {"url": "https://api.products.aspose.app/audio/cutter/api/cutter", "method": "POST", "options": {}, "sendBody": true, "contentType": "multipart-form-data", "sendHeaders": true, "bodyParameters": {"parameters": [{"name": "1", "parameterType": "formBinaryData", "inputDataFieldName": "data"}, {"name": "convertOption", "value": "{\"startTime\":\"00:08:00\",\"endTime\":\"00:24:00\",\"audioFormat\":\"mp3\"}"}]}, "headerParameters": {"parameters": [{"name": "Accept", "value": "*/*("}, {"name": "Connection", "value": "keep-alive"}, {"name": "Origin", "value": "https://products.aspose.app"}, {"name": "Referer", "value": "https://products.aspose.app"}, {"name": "Sec-Fetch-Dest", "value": "empty"}, {"name": "Sec-Fetch-Mode", "value": "cors"}, {"name": "Sec-Fetch-Site", "value": "same-site"}]}}, "typeVersion": 4.2}, {"id": "0dc62507-3fea-45d7-a0dc-e92fb8e2600f", "name": "Get Download Link", "type": "n8n-nodes-base.httpRequest", "position": [1200, 1220], "parameters": {"url": "=https://api.products.aspose.app/audio/cutter/api/cutter/HandleStatus?fileRequestId={{ $('Request Audio Crop').item.json.Data.FileRequestId }}", "options": {}, "sendHeaders": true, "headerParameters": {"parameters": [{"name": "Accept", "value": "application/json, text/javascript, */*; q=0.01"}, {"name": "Connection", "value": "keep-alive"}, {"name": "Origin", "value": "https://products.aspose.app"}, {"name": "Referer", "value": "https://products.aspose.app"}, {"name": "Sec-Fetch-Dest", "value": "empty"}, {"name": "Sec-Fetch-Dest", "value": "cors"}, {"name": "Sec-Fetch-Dest", "value": "same-site"}]}}, "typeVersion": 4.2}, {"id": "8aa65189-2a4b-4ac4-9915-45ccd679a5da", "name": "Download Cut MP3", "type": "n8n-nodes-base.httpRequest", "position": [1660, 1140], "parameters": {"url": "={{ $json.Data.DownloadLink }}", "options": {}}, "typeVersion": 4.2}, {"id": "4e7318df-dbaa-4d9f-858d-4455ead763c1", "name": "Download Podcast", "type": "n8n-nodes-base.httpRequest", "position": [2060, 820], "parameters": {"url": "={{ $json.audioUrl }}", "options": {}}, "typeVersion": 4.2}, {"id": "ab4601c6-7387-4f2f-a2f3-4256f88c0b3e", "name": "Wait", "type": "n8n-nodes-base.wait", "position": [1600, 1360], "webhookId": "bc28bc57-d9ea-430e-88db-78d088a058cb", "parameters": {}, "typeVersion": 1.1}, {"id": "a0b300b9-aaad-48f1-8319-a03700e0d298", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [920, 1100], "parameters": {"width": 898.7483569555845, "height": 387.3779915472271, "content": "### Crop the podcast down before analysis"}, "typeVersion": 1}, {"id": "34ca89fe-4ed1-491f-b3b9-32e97040959b", "name": "If Downloads Ready", "type": "n8n-nodes-base.if", "position": [1380, 1180], "parameters": {"options": {}, "conditions": {"options": {"leftValue": "", "caseSensitive": true, "typeValidation": "loose"}, "combinator": "and", "conditions": [{"id": "49440938-0cb3-41c8-bcab-b7ad96973f77", "operator": {"type": "boolean", "operation": "true", "singleValue": true}, "leftValue": "={{ $input.all().map(x=>x.json.Data.DownloadLink).reduce((accumulator, currentValue) => accumulator && currentValue, true)\n}}", "rightValue": ""}]}, "looseTypeValidation": true}, "typeVersion": 2.1}]
{"HTML": {"main": [[{"node": "Gmail", "type": "main", "index": 0}]]}, "Wait": {"main": [[{"node": "Get Download Link", "type": "main", "index": 0}]]}, "Genre": {"main": [[{"node": "TaddyTopDaily", "type": "main", "index": 0}]]}, "Schedule": {"main": [[{"node": "Genre", "type": "main", "index": 0}]]}, "Split Out": {"main": [[{"node": "Download Podcast", "type": "main", "index": 0}]]}, "Final Data": {"main": [[{"node": "Merge Results", "type": "main", "index": 0}]]}, "Merge Results": {"main": [[{"node": "HTML", "type": "main", "index": 0}]]}, "TaddyTopDaily": {"main": [[{"node": "Split Out", "type": "main", "index": 0}]]}, "Download Cut MP3": {"main": [[{"node": "Whisper Transcribe Audio", "type": "main", "index": 0}]]}, "Download Podcast": {"main": [[{"node": "Request Audio Crop", "type": "main", "index": 0}]]}, "Get Download Link": {"main": [[{"node": "If Downloads Ready", "type": "main", "index": 0}]]}, "Summarize Podcast": {"main": [[{"node": "Final Data", "type": "main", "index": 0}]]}, "If Downloads Ready": {"main": [[{"node": "Download Cut MP3", "type": "main", "index": 0}], [{"node": "Wait", "type": "main", "index": 0}]]}, "Request Audio Crop": {"main": [[{"node": "Get Download Link", "type": "main", "index": 0}]]}, "Whisper Transcribe Audio": {"main": [[{"node": "Summarize Podcast", "type": "main", "index": 0}]]}}
Cortex:Analyzer:execute:Job:report get:Responder:execute
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "746052e5-aa2d-44d8-9868-51eac17d07b2"}, {"parameters": {"analyzer": "f4abc1b633b80f45af165970793fd4fd::Abuse_Finder_3_0", "observableType": "ip", "observableValue": "129.178.188.205", "tlp": 1, "additionalFields": {}}, "name": "Cortex", "type": "n8n-nodes-base.cortex", "typeVersion": 1, "position": [490, 300], "credentials": {"cortexApi": {"id": "103", "name": "Cortex API creds"}}, "id": "a020251f-8fc4-4257-8038-0092bb07209b"}, {"parameters": {"resource": "job", "operation": "report", "jobId": "={{$node[\"Cortex\"].json[\"_id\"]}}"}, "name": "Cortex1", "type": "n8n-nodes-base.cortex", "typeVersion": 1, "position": [640, 300], "credentials": {"cortexApi": {"id": "103", "name": "Cortex API creds"}}, "id": "c32de960-141e-4fdb-8b0f-dfd08fc3b28a"}, {"parameters": {"resource": "job", "jobId": "={{$node[\"Cortex\"].json[\"_id\"]}}"}, "name": "Cortex2", "type": "n8n-nodes-base.cortex", "typeVersion": 1, "position": [800, 300], "credentials": {"cortexApi": {"id": "103", "name": "Cortex API creds"}}, "id": "c2072875-c609-4eb8-88e7-2bba3a8d0a49"}, {"parameters": {"resource": "responder", "responder": "fbe415a38eb649eb7df174aa11a32cfe::KnowBe4_1_0", "entityType": "case_artifact", "parameters": {"values": {"dataType": "ip", "data": "129.178.188.205", "message": "test", "startDate": "2021-03-23T23:00:00.000Z", "ioc": true, "status": "Ok"}}}, "name": "Cortex3", "type": "n8n-nodes-base.cortex", "typeVersion": 1, "position": [950, 300], "credentials": {"cortexApi": {"id": "103", "name": "Cortex API creds"}}, "id": "47ccf815-64bd-469f-b836-6d3749cfc7cb"}, {"parameters": {"resource": "job", "operation": "report", "jobId": "={{$node[\"Cortex3\"].json[\"_id\"]}}"}, "name": "Cortex4", "type": "n8n-nodes-base.cortex", "typeVersion": 1, "position": [1250, 300], "credentials": {"cortexApi": {"id": "103", "name": "Cortex API creds"}}, "disabled": true, "id": "efec07a1-aa91-49e0-9c2c-3f2c222fa90f"}, {"parameters": {"functionCode": "function sleep(milliseconds) {\n return new Promise(\n resolve => setTimeout(resolve, milliseconds)\n );\n}\nawait sleep(10000);\n// Output data\nreturn items;"}, "name": "Sleep 4 seconds", "type": "n8n-nodes-base.function", "position": [1100, 300], "typeVersion": 1, "id": "68f7efca-c385-4642-814f-3123f7e892ee"}]
{"Cortex": {"main": [[{"node": "Cortex1", "type": "main", "index": 0}]]}, "Cortex1": {"main": [[{"node": "Cortex2", "type": "main", "index": 0}]]}, "Cortex2": {"main": [[{"node": "Cortex3", "type": "main", "index": 0}]]}, "Start": {"main": [[{"node": "Cortex", "type": "main", "index": 0}]]}, "Cortex3": {"main": [[{"node": "Sleep 4 seconds", "type": "main", "index": 0}]]}, "Sleep 4 seconds": {"main": [[{"node": "Cortex4", "type": "main", "index": 0}]]}}
🤖🧠 AI Agent Chatbot + LONG TERM Memory + Note Storage + Telegram
[{"id": "20a2d959-5412-447b-a2c4-7736b6b758b3", "name": "When chat message received", "type": "@n8n/n8n-nodes-langchain.chatTrigger", "position": [-320, 1600], "webhookId": "8ba8fa53-2c24-47a8-b4dd-67b88c106e3d", "parameters": {"options": {}}, "typeVersion": 1.1}, {"id": "de79c268-bac5-48ff-be4d-18f522861c22", "name": "Sticky Note7", "type": "n8n-nodes-base.stickyNote", "position": [-100, 1280], "parameters": {"color": 4, "width": 340, "height": 380, "content": "## Retrieve Long Term Memories\nGoogle Docs"}, "typeVersion": 1}, {"id": "000a94d1-57ce-4eec-a021-9123685d22bf", "name": "Sticky Note8", "type": "n8n-nodes-base.stickyNote", "position": [1040, 1840], "parameters": {"width": 280, "height": 380, "content": "## Save To Current Chat Memory (Optional)"}, "typeVersion": 1}, {"id": "1bf1cade-bb3e-450a-a531-9add259069df", "name": "Sticky Note9", "type": "n8n-nodes-base.stickyNote", "position": [1360, 1840], "parameters": {"color": 4, "width": 280, "height": 380, "content": "## Save Long Term Memories\nGoogle Docs"}, "typeVersion": 1}, {"id": "8b30f207-8204-4548-8f51-38c387d98ae9", "name": "gpt-4o-mini", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [820, 1900], "parameters": {"options": {}}, "credentials": {"openAiApi": {"id": "jEMSvKmtYfzAkhe6", "name": "OpenAi account"}}, "typeVersion": 1.1}, {"id": "50271e59-6dd2-4f54-9b28-dd4a9f33ddc5", "name": "Chat Response", "type": "n8n-nodes-base.set", "position": [1440, 1600], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "d6f68b1c-a6a6-44d4-8686-dc4dcdde4767", "name": "output", "type": "string", "value": "={{ $json.output }}"}]}}, "typeVersion": 3.4}, {"id": "1064a2bf-bf74-44cd-ba8a-48f93700e887", "name": "Window Buffer Memory", "type": "@n8n/n8n-nodes-langchain.memoryBufferWindow", "position": [1140, 2000], "parameters": {"sessionKey": "={{ $('When chat message received').item.json.sessionId }}", "sessionIdType": "customKey", "contextWindowLength": 50}, "typeVersion": 1.3}, {"id": "280fe3b1-faca-41b6-be0e-2ab906cd1662", "name": "Save Long Term Memories", "type": "n8n-nodes-base.googleDocsTool", "position": [1460, 2000], "parameters": {"actionsUi": {"actionFields": [{"text": "={ \n \"memory\": \"{{ $fromAI('memory') }}\",\n \"date\": \"{{ $now }}\"\n}", "action": "insert"}]}, "operation": "update", "documentURL": "[Google Doc ID]", "descriptionType": "manual", "toolDescription": "Save Memory"}, "credentials": {"googleDocsOAuth2Api": {"id": "YWEHuG28zOt532MQ", "name": "Google Docs account"}}, "typeVersion": 2}, {"id": "37baa147-120a-40a8-b92f-df319fc4bc46", "name": "Retrieve Long Term Memories", "type": "n8n-nodes-base.googleDocs", "position": [20, 1420], "parameters": {"operation": "get", "documentURL": "[Google Doc ID]"}, "credentials": {"googleDocsOAuth2Api": {"id": "YWEHuG28zOt532MQ", "name": "Google Docs account"}}, "typeVersion": 2, "alwaysOutputData": true}, {"id": "b047a271-d2aa-4a26-b663-6a76d249824a", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [720, 1840], "parameters": {"color": 3, "width": 280, "height": 380, "content": "## LLM"}, "typeVersion": 1}, {"id": "15bb5fd5-7dfe-4da9-830c-e1d905831640", "name": "Telegram Response", "type": "n8n-nodes-base.telegram", "position": [1440, 1260], "parameters": {"text": "={{ $json.output }}", "chatId": "=1234567891", "additionalFields": {"parse_mode": "HTML", "appendAttribution": false}}, "credentials": {"telegramApi": {"id": "pAIFhguJlkO3c7aQ", "name": "Telegram account"}}, "typeVersion": 1.2}, {"id": "8cc38a87-e214-4193-9fe6-ba4adc3d5530", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [1360, 1160], "parameters": {"width": 260, "height": 300, "content": "## Telegram \n(Optional)"}, "typeVersion": 1}, {"id": "38121a81-d768-4bb0-a9e6-39de0906e026", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [680, 1500], "parameters": {"color": 5, "width": 1320, "height": 780, "content": "## AI AGENT with Long Term Memory & Note Storage"}, "typeVersion": 1}, {"id": "7d5d1466-b4c9-4055-a634-ea7025dc370a", "name": "DeepSeek-V3 Chat", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [820, 2060], "parameters": {"model": "=deepseek-chat", "options": {}}, "credentials": {"openAiApi": {"id": "MSl7SdcvZe0SqCYI", "name": "deepseek"}}, "typeVersion": 1.1}, {"id": "68303b67-2203-41e8-b370-220d884d2945", "name": "AI Tools Agent", "type": "@n8n/n8n-nodes-langchain.agent", "position": [1060, 1600], "parameters": {"text": "={{ $('When chat message received').item.json.chatInput }}", "options": {"systemMessage": "=## ROLE \nYou are a friendly, attentive, and helpful AI assistant. Your primary goal is to assist the user while maintaining a personalized and engaging interaction. \n\n---\n\n## RULES \n\n1. **Memory Management**: \n - When the user sends a new message, evaluate whether it contains noteworthy or personal information (e.g., preferences, habits, goals, or important events). \n - If such information is identified, use the **Save Memory** tool to store this data in memory. \n - Always send a meaningful response back to the user, even if your primary action was saving information. This response should not reveal that information was stored but should acknowledge or engage with the user\u2019s input naturally. \n\n2. **Note Management**: \n - If the user provides information that is intended to be stored as a note (e.g., specific instructions, reminders, or standalone pieces of information), use the **Save Note** tool. \n - Notes should not be stored in memory using the **Save Memory** tool. \n - Ensure that notes are clear, concise, and accurately reflect the user\u2019s input. \n\n3. **Context Awareness**: \n - Use stored memories and notes to provide contextually relevant and personalized responses. \n - Always consider the **date and time** when a memory or note was collected to ensure your responses are up-to-date and accurate.\n\n4. **User-Centric Responses**: \n - Tailor your responses based on the user's preferences and past interactions. \n - Be proactive in recalling relevant details from memory or notes when appropriate but avoid overwhelming the user with unnecessary information.\n\n5. **Privacy and Sensitivity**: \n - Handle all user data with care and sensitivity. Avoid making assumptions or sharing stored information unless it directly enhances the conversation or task at hand.\n - Never store passwords or usernames.\n\n6. **Fallback Responses**: \n - **IMPORTANT** If no specific task or question arises from the user\u2019s message (e.g., when only saving information), respond in a way that keeps the conversation flowing naturally. For example: \n - Acknowledge their input: \u201cThanks for sharing that!\u201d \n - Provide a friendly follow-up: \u201cIs there anything else I can help you with today?\u201d \n - DO NOT tell jokes as a fallback response.\n\n---\n\n## TOOLS \n\n### Save Memory \n- Use this tool to store summarized, concise, and meaningful information about the user. \n- Extract key details from user messages that could enhance future interactions (e.g., likes/dislikes, important dates, hobbies). \n- Ensure that the summary is clear and devoid of unnecessary details.\n\n### Save Note \n- Use this tool to store specific instructions, reminders, or standalone pieces of information provided by the user. \n- Notes should not include general personal preferences or habits meant for long-term memory storage. \n- Ensure that notes are concise and accurately reflect what the user wants to store.\n\n---\n\n## MEMORIES \n\n### Recent Noteworthy Memories \nHere are the most recent memories collected from the user, including their date and time of collection: \n\n**{{ $json.data[0].content }}**\n\n### Guidelines for Using Memories: \n- Prioritize recent memories but do not disregard older ones if they remain relevant. \n- Cross-reference memories to maintain consistency in your responses. For example, if a user shares conflicting preferences over time, clarify or adapt accordingly.\n\n---\n\n## NOTES \n\n### Recent Notes Collected from User: \nHere are the most recent notes collected from the user: \n\n**{{ $json.data[1].content }}**\n\n### Guidelines for Using Notes: \n- Use notes for tasks requiring specific instructions or reminders.\n- Do not mix note content with general memory content; keep them distinct.\n\n---\n\n## ADDITIONAL INSTRUCTIONS \n\n- Think critically before responding to ensure your answers are thoughtful and accurate. \n- Strive to build trust with the user by being consistent, reliable, and personable in your interactions. \n- Avoid robotic or overly formal language; aim for a conversational tone that aligns with being \"friendly and helpful.\" \n"}, "promptType": "define"}, "typeVersion": 1.7, "alwaysOutputData": false}, {"id": "a6741133-93a1-42f8-83b4-bc29b9f49ae2", "name": "Sticky Note10", "type": "n8n-nodes-base.stickyNote", "position": [1680, 1840], "parameters": {"color": 4, "width": 280, "height": 380, "content": "## Save Notes\nGoogle Docs"}, "typeVersion": 1}, {"id": "87c88d31-811d-4265-b44e-ab30a45ff88b", "name": "Save Notes", "type": "n8n-nodes-base.googleDocsTool", "position": [1780, 2000], "parameters": {"actionsUi": {"actionFields": [{"text": "={ \n \"note\": \"{{ $fromAI('memory') }}\",\n \"date\": \"{{ $now }}\"\n}", "action": "insert"}]}, "operation": "update", "documentURL": "[Google Doc ID]", "descriptionType": "manual", "toolDescription": "Save Notes"}, "credentials": {"googleDocsOAuth2Api": {"id": "YWEHuG28zOt532MQ", "name": "Google Docs account"}}, "typeVersion": 2}, {"id": "b9b97837-d6f2-4cef-89c4-9301973015df", "name": "Sticky Note11", "type": "n8n-nodes-base.stickyNote", "position": [-100, 1680], "parameters": {"color": 4, "width": 340, "height": 380, "content": "## Retrieve Notes\nGoogle Docs"}, "typeVersion": 1}, {"id": "0002a227-4240-4d3c-9a45-fc6e23fdc7f5", "name": "Retrieve Notes", "type": "n8n-nodes-base.googleDocs", "onError": "continueRegularOutput", "position": [20, 1820], "parameters": {"operation": "get", "documentURL": "[Google Doc ID]"}, "credentials": {"googleDocsOAuth2Api": {"id": "YWEHuG28zOt532MQ", "name": "Google Docs account"}}, "typeVersion": 2, "alwaysOutputData": true}, {"id": "88f7024c-87d4-48b4-b6bb-f68c88202f56", "name": "Aggregate", "type": "n8n-nodes-base.aggregate", "position": [520, 1600], "parameters": {"options": {}, "aggregate": "aggregateAllItemData"}, "typeVersion": 1}, {"id": "48d576fc-870a-441e-a7be-3056ef7e1d7a", "name": "Merge", "type": "n8n-nodes-base.merge", "position": [340, 1600], "parameters": {}, "typeVersion": 3}]
{"Merge": {"main": [[{"node": "Aggregate", "type": "main", "index": 0}]]}, "Aggregate": {"main": [[{"node": "AI Tools Agent", "type": "main", "index": 0}]]}, "Save Notes": {"ai_tool": [[{"node": "AI Tools Agent", "type": "ai_tool", "index": 0}]]}, "gpt-4o-mini": {"ai_languageModel": [[{"node": "AI Tools Agent", "type": "ai_languageModel", "index": 0}]]}, "AI Tools Agent": {"main": [[{"node": "Telegram Response", "type": "main", "index": 0}, {"node": "Chat Response", "type": "main", "index": 0}], []]}, "Retrieve Notes": {"main": [[{"node": "Merge", "type": "main", "index": 1}]]}, "DeepSeek-V3 Chat": {"ai_languageModel": [[]]}, "Telegram Response": {"main": [[]]}, "Window Buffer Memory": {"ai_memory": [[{"node": "AI Tools Agent", "type": "ai_memory", "index": 0}]]}, "Save Long Term Memories": {"ai_tool": [[{"node": "AI Tools Agent", "type": "ai_tool", "index": 0}]]}, "When chat message received": {"main": [[{"node": "Retrieve Long Term Memories", "type": "main", "index": 0}, {"node": "Retrieve Notes", "type": "main", "index": 0}]]}, "Retrieve Long Term Memories": {"main": [[{"node": "Merge", "type": "main", "index": 0}]]}}
LangChain - Example - Code Node Example
[{"id": "ad1a920e-1048-4b58-9c4a-a0469a1f189d", "name": "OpenAI", "type": "@n8n/n8n-nodes-langchain.lmOpenAi", "position": [900, 628], "parameters": {"options": {}}, "credentials": {"openAiApi": {"id": "4jRB4A20cPycBqP5", "name": "OpenAI account - n8n"}}, "typeVersion": 1}, {"id": "7dd04ecd-f169-455c-9c90-140140e37542", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [800, 340], "parameters": {"width": 432, "height": 237, "content": "## Self-coded LLM Chain Node"}, "typeVersion": 1}, {"id": "05ad7d68-5dc8-42f2-8274-fcb5bdeb68cb", "name": "When clicking \"Execute Workflow\"", "type": "n8n-nodes-base.manualTrigger", "position": [280, 428], "parameters": {}, "typeVersion": 1}, {"id": "39e2fd34-3261-44a1-aa55-96f169d55aad", "name": "Set", "type": "n8n-nodes-base.set", "position": [620, 428], "parameters": {"values": {"string": [{"name": "input", "value": "Tell me a joke"}]}, "options": {}}, "typeVersion": 2}, {"id": "42a3184c-0c62-4e79-9220-7a93e313317e", "name": "Set1", "type": "n8n-nodes-base.set", "position": [620, 820], "parameters": {"values": {"string": [{"name": "input", "value": "What year was Einstein born?"}]}, "options": {}}, "typeVersion": 2}, {"id": "4e2af29d-7fc4-484b-8028-1b9a84d60172", "name": "Chat OpenAI", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [731, 1108], "parameters": {"options": {}}, "credentials": {"openAiApi": {"id": "4jRB4A20cPycBqP5", "name": "OpenAI account - n8n"}}, "typeVersion": 1}, {"id": "334e9176-3a18-4838-84cb-70e8154f1a30", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [880, 1028], "parameters": {"width": 320.2172923777021, "height": 231, "content": "## Self-coded Tool Node"}, "typeVersion": 1}, {"id": "05e0d5c6-df18-42ba-99b6-a2b65633a14d", "name": "Custom - Wikipedia", "type": "@n8n/n8n-nodes-langchain.code", "position": [971, 1108], "parameters": {"code": {"supplyData": {"code": "console.log('Custom Wikipedia Node runs');\nconst { WikipediaQueryRun } = require('langchain/tools');\nreturn new WikipediaQueryRun();"}}, "outputs": {"output": [{"type": "ai_tool"}]}}, "typeVersion": 1}, {"id": "9c729e9a-f173-430c-8bcd-74101b614891", "name": "Custom - LLM Chain Node", "type": "@n8n/n8n-nodes-langchain.code", "position": [880, 428], "parameters": {"code": {"execute": {"code": "const { PromptTemplate } = require('langchain/prompts');\n\nconst query = $input.item.json.input;\nconst prompt = PromptTemplate.fromTemplate(query);\nconst llm = await this.getInputConnectionData('ai_languageModel', 0);\nlet chain = prompt.pipe(llm);\nconst output = await chain.invoke();\nreturn [ {json: { output } } ];"}}, "inputs": {"input": [{"type": "main"}, {"type": "ai_languageModel", "required": true, "maxConnections": 1}]}, "outputs": {"output": [{"type": "main"}]}}, "typeVersion": 1}, {"id": "6427bbf0-49a6-4810-9744-87d88151e914", "name": "Agent", "type": "@n8n/n8n-nodes-langchain.agent", "position": [880, 820], "parameters": {"options": {}}, "typeVersion": 1}]
{"Set": {"main": [[{"node": "Custom - LLM Chain Node", "type": "main", "index": 0}]]}, "Set1": {"main": [[{"node": "Agent", "type": "main", "index": 0}]]}, "OpenAI": {"ai_languageModel": [[{"node": "Custom - LLM Chain Node", "type": "ai_languageModel", "index": 0}]]}, "Chat OpenAI": {"ai_languageModel": [[{"node": "Agent", "type": "ai_languageModel", "index": 0}]]}, "Custom - Wikipedia": {"ai_tool": [[{"node": "Agent", "type": "ai_tool", "index": 0}]]}, "When clicking \"Execute Workflow\"": {"main": [[{"node": "Set", "type": "main", "index": 0}, {"node": "Set1", "type": "main", "index": 0}]]}}
Customer Support Channel and Ticketing System with Slack and Linear
[{"id": "2b3112a9-046e-4aae-8fcc-95bddf3bb02e", "name": "Slack", "type": "n8n-nodes-base.slack", "position": [828, 327], "parameters": {"limit": 10, "query": "in:#n8n-tickets has::ticket:", "options": {}, "operation": "search"}, "credentials": {"slackApi": {"id": "VfK3js0YdqBdQLGP", "name": "Slack account"}}, "typeVersion": 2.2}, {"id": "65fd6821-4d19-436c-81d9-9bdb0f5efddd", "name": "OpenAI Chat Model", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [1920, 480], "parameters": {"options": {}}, "credentials": {"openAiApi": {"id": "8gccIjcuf3gvaoEr", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "85125704-7363-40de-af84-f267f8c7e919", "name": "Structured Output Parser", "type": "@n8n/n8n-nodes-langchain.outputParserStructured", "position": [2100, 480], "parameters": {"jsonSchema": "{\n \"type\": \"object\",\n \"properties\": {\n \"title\": { \"type\": \"string\" },\n \"summary\": { \"type\": \"string\" },\n \"ideas\": {\n \"type\": \"array\",\n \"items\": { \"type\": \"string\" }\n },\n \"priority\": { \"type\": \"string\" }\n }\n}"}, "typeVersion": 1.1}, {"id": "eda8851a-1929-4f2f-9149-627c0fe62fbc", "name": "Schedule Trigger", "type": "n8n-nodes-base.scheduleTrigger", "position": [628, 327], "parameters": {"rule": {"interval": [{"field": "minutes"}]}}, "typeVersion": 1.2}, {"id": "ad0d56b5-5caf-4fc0-bdbb-4e6207e4eb03", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [580, 112.87898199907983], "parameters": {"color": 7, "width": 432.4578914269739, "height": 427.09547550768553, "content": "## 1. Query Slack for Messages \n[Read more about the Slack Trigger](https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.slack)\n\nSlack API search uses the same search syntax found in the app. Here, we'll use it to filter the latest messages with the ticket emoji within our designated channel called #n8n-tickets. "}, "typeVersion": 1}, {"id": "d4ebe5b3-6d9a-4547-8af8-0985206c4ca4", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [1040, 180.44851541532478], "parameters": {"color": 7, "width": 711.6907825442045, "height": 632.7258798316449, "content": "## 2. Decide If We Need to Create a New Ticket \n[Read more about using Linear](https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.linear)\n\nFor generated issues, we add the message id to the description of the message so that we can check them at this point in the workflow to avoid duplicates."}, "typeVersion": 1}, {"id": "b2920271-6698-47a4-8cac-ea4cec7b47d6", "name": "Get Values", "type": "n8n-nodes-base.set", "position": [1100, 360], "parameters": {"mode": "raw", "options": {}, "jsonOutput": "={\n \"id\": \"#{{ $json.permalink.split('/').last() }}\",\n \"type\": \"{{ $json.type }}\",\n \"title\": \"__NOT_SET__\",\n \"channel\": \"{{ $json.channel.name }}\",\n \"user\": \"{{ $json.username }} ({{ $json.user }})\",\n \"ts\": \"{{ $json.ts }}\",\n \"permalink\": \"{{ $json.permalink }}\",\n \"message\": \"{{ $json.text.replaceAll('\"','\\\\\"').replaceAll('\\n', '\\\\n') }}\"\n}"}, "typeVersion": 3.3}, {"id": "c4a4db2a-5d1c-4726-8c98-aef57fdcfaa6", "name": "Create New Ticket?", "type": "n8n-nodes-base.if", "position": [1600, 360], "parameters": {"options": {}, "conditions": {"options": {"leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "c11109b6-ee45-4b52-adc3-4be5fe420202", "operator": {"type": "boolean", "operation": "false", "singleValue": true}, "leftValue": "={{ Boolean(($json.hashes ?? []).includes($json.id)) }}", "rightValue": "=false"}]}}, "typeVersion": 2}, {"id": "46acb0de-1df1-4116-8aaf-704ec6644d7c", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [1780, 80], "parameters": {"color": 7, "width": 530.6864600881105, "height": 578.3950618708791, "content": "## 3. Use AI to Generate Ticket Contents\n[Read more about using Basic LLM Chain](https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainllm)\n\nFor this demo, we've instructed the AI to do the following:\n* Generate a descriptive title of the issue\n* Summarise the user message into an actionable request.\n* Determine a prority based on tone and context of the user message. \n* Can offer possible fixes through use of tools or RAG. (not implemented)\n"}, "typeVersion": 1}, {"id": "503d4ae7-9d5b-4dab-94a2-da28bc0e49da", "name": "Sticky Note6", "type": "n8n-nodes-base.stickyNote", "position": [200, 120], "parameters": {"width": 359.6648027457353, "height": 400.4748439127683, "content": "## Try It Out!\n### This workflow does the following:\n* Monitors a Slack channel for new user messages asking for assistance\n* Only user messages which are tagged with the ticket(\ud83c\udfab) emoji are processed.\n* Linear is first checked to see if a ticket was created for the user message.\n* User messages are sent to ChatGPT to generate title, description and priority.\n* Support ticket is created in Linear.\n\n### Need Help?\nJoin the [Discord](https://discord.com/invite/XPKeKXeB7d) or ask in the [Forum](https://community.n8n.io/)!\n\nHappy Hacking!"}, "typeVersion": 1}, {"id": "11e423a4-36b6-4ecd-8bf7-58a7d4a1aa9a", "name": "Get Existing Issues", "type": "n8n-nodes-base.linear", "position": [1260, 360], "parameters": {"operation": "getAll"}, "credentials": {"linearApi": {"id": "Nn0F7T9FtvRUtEbe", "name": "Linear account"}}, "typeVersion": 1, "alwaysOutputData": true}, {"id": "413fde96-346a-468e-80b7-d465bd8add14", "name": "Generate Ticket Using ChatGPT", "type": "@n8n/n8n-nodes-langchain.chainLlm", "position": [1920, 320], "parameters": {"text": "=The \"user issue\" is enclosed by 3 backticks:\n```\n{{ $('Get Values').item.json.message }}\n```\nYou will complete the following 4 tasks:\n1. Generate a title intended for a support ticket based on the user issue only. Be descriptive but use no more than 10 words.\n2. Summarise the user issue only by identifying the key expectations and steps that were taken to reach the conclusion.\n3. Offer at most 3 suggestions to debug or resolve the user issue only. ignore the previous issues for this task.\n4. Identify the urgency of the user issue only and denote the priority as one of \"low\", \"medium\", \"high\" or \"urgent\". If you cannot determine the urgency of the issue, then assign the \"low\" priority. Also consider that requests which require action either today or tomorrow should be prioritised as \"high\".", "promptType": "define", "hasOutputParser": true}, "typeVersion": 1.4}, {"id": "66aecf53-6e8a-4ee8-88c3-be6b7d8d0527", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [2340, 206], "parameters": {"color": 7, "width": 374.7406065828194, "height": 352.3865785298774, "content": "## 4. Create New Ticket in Linear\n[Read more about using Linear](https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.linear)\n\nWith our ticket contents generated, we can now create our ticket in Linear for support to handle.\n"}, "typeVersion": 1}, {"id": "f7898b7b-f60a-4315-a870-8c8ec4ad848f", "name": "Create Ticket", "type": "n8n-nodes-base.linear", "position": [2480, 380], "parameters": {"title": "={{ $json.output.title }}", "teamId": "1c721608-321d-4132-ac32-6e92d04bb487", "additionalFields": {"stateId": "92962324-3d1f-4cf8-993b-0c982cc95245", "priorityId": "={{ { 'urgent': 1, 'high': 2, 'medium': 3, 'low': 4 }[$json.output.priority.toLowerCase()] ?? 0 }}", "description": "=## {{ $json.output.summary }}\n\n### Suggestions\n{{ $json.output.ideas.map(idea => '* ' + idea).join('\\n') }}\n\n## Original Message\n{{ $('Get Values').item.json[\"user\"] }} asks:\n> {{ $('Get Values').item.json[\"message\"] }}\n\n### Metadata\nchannel: {{ $('Get Values').item.json.channel }}\nts: {{ $('Get Values').item.json.ts }}\npermalink: {{ $('Get Values').item.json.permalink }}\nhash: {{ $('Get Values').item.json.id }}\n"}}, "credentials": {"linearApi": {"id": "Nn0F7T9FtvRUtEbe", "name": "Linear account"}}, "typeVersion": 1}, {"id": "0b706c12-6ce0-41af-ad4b-9d98d7d03a41", "name": "Merge", "type": "n8n-nodes-base.merge", "position": [1440, 360], "parameters": {"mode": "combine", "options": {}, "combinationMode": "multiplex"}, "typeVersion": 2.1}, {"id": "d5b30127-f237-459d-860a-2589e3b54fb8", "name": "Get Hashes Only", "type": "n8n-nodes-base.set", "position": [1260, 640], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "9b0e8527-ea17-4b1e-ba62-287111f4b37e", "name": "hashes", "type": "array", "value": "={{ $json.descriptions.map(desc => desc.match(/hash\\:\\s([\\w#]+)/i)[1]) }}"}]}}, "typeVersion": 3.3}, {"id": "9de103e1-b6a4-4454-b1b9-73eff730fcb6", "name": "Collect Descriptions", "type": "n8n-nodes-base.aggregate", "position": [1260, 500], "parameters": {"options": {}, "fieldsToAggregate": {"fieldToAggregate": [{"renameField": true, "outputFieldName": "descriptions", "fieldToAggregate": "description"}]}}, "typeVersion": 1, "alwaysOutputData": true}, {"id": "af34916f-7888-4d41-aee6-752b78e88c0c", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [780, 300], "parameters": {"width": 204.96868508214473, "height": 296.735132421306, "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\ud83d\udea8**Required**\n* Set the Slack channel to monitor here."}, "typeVersion": 1}, {"id": "58ab44f7-5fe5-4804-8bf1-36f351d86528", "name": "Sticky Note5", "type": "n8n-nodes-base.stickyNote", "position": [2440, 360], "parameters": {"width": 183.49787916474958, "height": 296.735132421306, "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\ud83d\udea8**Required**\n* Set the Linear Team Name or ID here."}, "typeVersion": 1}]
{"Merge": {"main": [[{"node": "Create New Ticket?", "type": "main", "index": 0}]]}, "Slack": {"main": [[{"node": "Get Values", "type": "main", "index": 0}]]}, "Get Values": {"main": [[{"node": "Merge", "type": "main", "index": 0}, {"node": "Get Existing Issues", "type": "main", "index": 0}]]}, "Get Hashes Only": {"main": [[{"node": "Merge", "type": "main", "index": 1}]]}, "Schedule Trigger": {"main": [[{"node": "Slack", "type": "main", "index": 0}]]}, "OpenAI Chat Model": {"ai_languageModel": [[{"node": "Generate Ticket Using ChatGPT", "type": "ai_languageModel", "index": 0}]]}, "Create New Ticket?": {"main": [[{"node": "Generate Ticket Using ChatGPT", "type": "main", "index": 0}]]}, "Get Existing Issues": {"main": [[{"node": "Collect Descriptions", "type": "main", "index": 0}]]}, "Collect Descriptions": {"main": [[{"node": "Get Hashes Only", "type": "main", "index": 0}]]}, "Structured Output Parser": {"ai_outputParser": [[{"node": "Generate Ticket Using ChatGPT", "type": "ai_outputParser", "index": 0}]]}, "Generate Ticket Using ChatGPT": {"main": [[{"node": "Create Ticket", "type": "main", "index": 0}]]}}
AWSSQS:sendMessage
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "61c9e1a4-21ab-4146-82ae-4c4388c1da30"}, {"parameters": {"queue": "https://sqs.us-east-1.amazonaws.com/589875339869/StandardTestQueue", "sendInputData": false, "message": "=StandardMessage{{Date.now()}}", "options": {"messageAttributes": {"string": [{"name": "type", "value": "test"}]}}}, "name": "AWS SQS", "type": "n8n-nodes-base.awsSqs", "typeVersion": 1, "position": [550, 200], "credentials": {"aws": {"id": "124", "name": "AWS creds"}}, "id": "0194b047-c629-4f68-a629-12455de6ecf6"}, {"parameters": {"queue": "https://sqs.us-east-1.amazonaws.com/589875339869/FifoTestQueue.fifo", "queueType": "fifo", "sendInputData": false, "message": "=FIFOMessage{{Date.now()}}", "messageGroupId": "TestMessageGroupId", "options": {"messageAttributes": {"string": [{"name": "type", "value": "test"}]}, "messageDeduplicationId": "DedupTestMessageGroupId"}}, "name": "AWS SQS1", "type": "n8n-nodes-base.awsSqs", "typeVersion": 1, "position": [550, 380], "credentials": {"aws": {"id": "124", "name": "AWS creds"}}, "id": "25bc7b70-06c8-4605-8744-f27ab8765761"}]
{"Start": {"main": [[{"node": "AWS SQS1", "type": "main", "index": 0}, {"node": "AWS SQS", "type": "main", "index": 0}]]}}
Selenium Ultimate Scraper Workflow
[{"id": "20d35d68-db49-4183-a913-85ad06c13912", "name": "Extract First Url Match", "type": "n8n-nodes-base.html", "position": [1820, 540], "parameters": {"options": {}, "operation": "extractHtmlContent", "extractionValues": {"values": [{"key": "Url Find ", "attribute": "href", "cssSelector": "=a[href*=\"https://\"][href*=\"{{ $('Edit Fields (For testing prupose )').item.json['Website Domaine'] }}\"]\n", "returnArray": true, "returnValue": "attribute"}]}}, "typeVersion": 1.2}, {"id": "9167ea20-fc9c-4d75-bf4d-bb2016079dd0", "name": "OpenAI Chat Model", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [2060, 700], "parameters": {"model": "gpt-4o", "options": {}}, "credentials": {"openAiApi": {"id": "FmszNHDDVS32ud21", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "42a8646d-1b0b-4309-a87d-9c8aeb355a28", "name": "Clean Webdriver ", "type": "n8n-nodes-base.httpRequest", "notes": "Script to delete traces of selenium in the browser ", "position": [3120, 560], "parameters": {"url": "=http://selenium_chrome:4444/wd/hub/session/{{ $('Create Selenium Session').item.json.value.sessionId }}/execute/sync", "method": "POST", "options": {}, "jsonBody": "{\n \"script\": \"Object.defineProperty(navigator, 'webdriver', { get: () => undefined }); window.navigator.chrome = { runtime: {} }; Object.defineProperty(navigator, 'languages', { get: () => ['en-US', 'en'] }); Object.defineProperty(navigator, 'plugins', { get: () => [1, 2, 3, 4, 5] });\",\n \"args\": []\n}\n", "sendBody": true, "specifyBody": "json"}, "notesInFlow": false, "typeVersion": 4.2}, {"id": "107dd8de-e341-4819-a493-94ed57fd0f33", "name": "Delete Session", "type": "n8n-nodes-base.httpRequest", "position": [5180, 920], "parameters": {"url": "=http://selenium_chrome:4444/wd/hub/session/{{ $('Create Selenium Session').item.json.value.sessionId }}", "method": "DELETE", "options": {}}, "typeVersion": 4.2}, {"id": "8c7ec6bc-d417-48c2-a6f2-ecce27803671", "name": "Delete Session2", "type": "n8n-nodes-base.httpRequest", "position": [6740, -160], "parameters": {"url": "=http://selenium_chrome:4444/wd/hub/session/{{ $('Create Selenium Session').item.json.value.sessionId }}", "method": "DELETE", "options": {}}, "typeVersion": 4.2}, {"id": "e43ecd94-b7f2-4f73-a9fa-b829de9e0296", "name": "If Block1", "type": "n8n-nodes-base.if", "position": [6520, -20], "parameters": {"options": {}, "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "e6e6e15d-1cfe-48be-8ea0-f112e9781c9d", "operator": {"name": "filter.operator.equals", "type": "string", "operation": "equals"}, "leftValue": "={{ $json.content }}", "rightValue": "BLOCK"}]}}, "typeVersion": 2.2}, {"id": "08e46f63-41b5-4606-8f2c-df9e96c9c34e", "name": "Delete Session3", "type": "n8n-nodes-base.httpRequest", "position": [6740, 60], "parameters": {"url": "=http://selenium_chrome:4444/wd/hub/session/{{ $('Create Selenium Session').item.json.value.sessionId }}", "method": "DELETE", "options": {}}, "typeVersion": 4.2}, {"id": "b47d9b22-9a59-4c7a-8cba-9487f18207ee", "name": "Limit", "type": "n8n-nodes-base.limit", "position": [5120, -100], "parameters": {}, "typeVersion": 1}, {"id": "541622f7-562b-4e8a-93e5-61e6e918ff52", "name": "Delete Session1", "type": "n8n-nodes-base.httpRequest", "position": [5180, 720], "parameters": {"url": "=http://selenium_chrome:4444/wd/hub/session/{{ $('Create Selenium Session').item.json.value.sessionId }}", "method": "DELETE", "options": {}}, "typeVersion": 4.2}, {"id": "825be0d7-9dd3-4a2f-8c3d-fd405f59a5d6", "name": "Delete Session4", "type": "n8n-nodes-base.httpRequest", "onError": "continueRegularOutput", "position": [5780, 260], "parameters": {"url": "=http://selenium_chrome:4444/wd/hub/session/{{ $('Create Selenium Session').item.json.value.sessionId }}", "method": "DELETE", "options": {}}, "retryOnFail": false, "typeVersion": 4.2}, {"id": "56f6f4f6-f737-4de8-bdfe-029546909677", "name": "Success with cookie", "type": "n8n-nodes-base.respondToWebhook", "position": [7260, 60], "parameters": {"options": {"responseCode": 200}}, "typeVersion": 1.1}, {"id": "c6939773-e230-45e1-bf76-d0299c2c7066", "name": "Respond to Webhook2", "type": "n8n-nodes-base.respondToWebhook", "position": [6920, -160], "parameters": {"options": {"responseCode": 200}, "respondWith": "json", "responseBody": "{\n \"Success \": \"Request has been block by the targeted website\"\n}"}, "typeVersion": 1.1}, {"id": "ea921f11-323f-4c79-8cc6-779b39498b05", "name": "Code", "type": "n8n-nodes-base.code", "position": [4700, -100], "parameters": {"jsCode": "// R\u00e9cup\u00e8re les donn\u00e9es du n\u0153ud Webhook (en rempla\u00e7ant \"Webhook\" par le nom du n\u0153ud Webhook dans votre workflow)\nconst webhookData = $node[\"Webhook\"].json;\n\n// Fonction pour convertir la valeur de sameSite\nfunction convertSameSite(value) {\n // Conversion sp\u00e9cifique des valeurs de sameSite\n const conversionMap = {\n \"unspecified\": \"None\",\n \"lax\": \"Lax\",\n \"strict\": \"Strict\"\n };\n \n // Si la valeur existe dans le tableau de conversion, on la convertit\n if (value in conversionMap) {\n return conversionMap[value];\n }\n \n // Si la valeur est d\u00e9j\u00e0 une des valeurs accept\u00e9es par Selenium\n const allowedValues = [\"Strict\", \"Lax\", \"None\"];\n if (allowedValues.includes(value)) {\n return value;\n } else {\n // Si la valeur n'est pas reconnue, on la remplace par \"Lax\" (par d\u00e9faut)\n return \"Lax\";\n }\n}\n\n// V\u00e9rifiez et traitez les donn\u00e9es des cookies\nif (webhookData.body && webhookData.body.cookies) {\n let items = [];\n for (const cookieObject of webhookData.body.cookies) {\n if (cookieObject.cookie) {\n // Convertir la valeur de sameSite\n cookieObject.cookie.sameSite = convertSameSite(cookieObject.cookie.sameSite);\n \n // Ajouter le cookie \u00e0 la liste des items\n items.push({\n json: cookieObject.cookie\n });\n }\n }\n return items;\n}\n\n// Si les cookies ne sont pas trouv\u00e9s, renvoyer un tableau vide\nreturn [];\n"}, "typeVersion": 2}, {"id": "c3d77928-eefc-4903-9b4f-b14bd6f34e3c", "name": "Delete Session5", "type": "n8n-nodes-base.httpRequest", "onError": "continueRegularOutput", "position": [3940, 360], "parameters": {"url": "=http://selenium_chrome:4444/wd/hub/session/{{ $('Create Selenium Session').item.json.value.sessionId }}", "method": "DELETE", "options": {}}, "retryOnFail": false, "typeVersion": 4.2}, {"id": "036cfce6-8082-4539-bb0e-980368679fe5", "name": "Error", "type": "n8n-nodes-base.respondToWebhook", "position": [4120, 360], "parameters": {"options": {"responseCode": 404}, "respondWith": "json", "responseBody": "{\n \"Error\": \"Cookies are note for the targeted url\"\n}"}, "typeVersion": 1.1}, {"id": "09d6a99b-d8b3-40c9-b74a-14014e3647e2", "name": "Error1", "type": "n8n-nodes-base.respondToWebhook", "position": [6000, 260], "parameters": {"options": {"responseCode": 500}}, "typeVersion": 1.1}, {"id": "0b1f3442-6b70-405f-b597-642e9c982b82", "name": "Error2", "type": "n8n-nodes-base.respondToWebhook", "position": [3060, 780], "parameters": {"options": {"responseCode": 500}}, "typeVersion": 1.1}, {"id": "4d0112bb-cbfd-45c6-961a-964bd8f59cac", "name": "If", "type": "n8n-nodes-base.if", "position": [3760, 200], "parameters": {"options": {}, "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "1bffbc80-9913-46e7-a594-ebc26948c83b", "operator": {"type": "string", "operation": "contains"}, "leftValue": "={{ $('Webhook').item.json.body.cookies[0].cookie.domain }}", "rightValue": "={{ $('Webhook').item.json.body.Url }}"}]}}, "typeVersion": 2.2}, {"id": "58a50b80-df4c-4b6f-a682-72237f4dbdef", "name": "Inject Cookie", "type": "n8n-nodes-base.httpRequest", "onError": "continueRegularOutput", "position": [4900, -100], "parameters": {"url": "=http://selenium_chrome:4444/wd/hub/session/{{ $('Create Selenium Session').item.json.value.sessionId }}/cookie", "method": "POST", "options": {}, "jsonBody": "={\n \"cookie\": {\n \"name\": \"{{ $json.name }}\",\n \"value\": \"{{ $json.value }}\",\n \"domain\": \"{{ $json.domain }}\",\n \"path\": \"{{ $json.path }}\",\n \"secure\": {{ $json.secure }},\n \"httpOnly\": {{ $json.httpOnly }},\n \"sameSite\": \"{{ $json.sameSite }}\",\n \"expirationDate\": {{ $json.expirationDate }}\n }\n}", "sendBody": true, "specifyBody": "json"}, "typeVersion": 4.2}, {"id": "39f7401b-b6b7-4f0c-9afc-8f144d394350", "name": "Respond to Webhook3", "type": "n8n-nodes-base.respondToWebhook", "position": [5400, 720], "parameters": {"options": {"responseCode": 200}, "respondWith": "json", "responseBody": "{\n \"Success \": \"Request has been block by the targeted website\"\n}"}, "typeVersion": 1.1}, {"id": "80b107cc-2f6c-46f0-a597-e85594634492", "name": "Success", "type": "n8n-nodes-base.respondToWebhook", "position": [5740, 920], "parameters": {"options": {"responseKey": "={{ $json.output }}", "responseCode": 200}}, "typeVersion": 1.1}, {"id": "94a97354-07d9-428e-989c-ef066f9b4d8a", "name": "Go on url", "type": "n8n-nodes-base.httpRequest", "onError": "continueErrorOutput", "position": [3900, 780], "parameters": {"url": "=http://selenium_chrome:4444/wd/hub/session/{{ $('Create Selenium Session').item.json.value.sessionId }}/url", "method": "POST", "options": {}, "jsonBody": "={\n \"url\": \"{{ $('Webhook').item.json.body['Target Url'] }}\"\n}\n", "sendBody": true, "specifyBody": "json"}, "retryOnFail": true, "typeVersion": 4.2}, {"id": "fd044cf3-594d-48af-bbd1-f2d9adedcbc1", "name": "Delete Session6", "type": "n8n-nodes-base.httpRequest", "onError": "continueRegularOutput", "position": [4360, 1200], "parameters": {"url": "=http://selenium_chrome:4444/wd/hub/session/{{ $('Create Selenium Session').item.json.value.sessionId }}", "method": "DELETE", "options": {}}, "retryOnFail": false, "typeVersion": 4.2}, {"id": "7c28c3b6-1141-4609-8774-cb6b4d842b97", "name": "Error3", "type": "n8n-nodes-base.respondToWebhook", "position": [4520, 1200], "parameters": {"options": {"responseCode": 500}, "respondWith": "json", "responseBody": "{\n \"Error\": \"Page crash on the extracted url\"\n}"}, "typeVersion": 1.1}, {"id": "52f78923-156f-4861-88ba-f0253c483bd9", "name": "Information Extractor", "type": "@n8n/n8n-nodes-langchain.informationExtractor", "position": [2040, 540], "parameters": {"text": "={{ $json['Url Find '][1] }}{{ $json['Url Find '][2] }}{{ $json['Url Find '][3] }}", "options": {"systemPromptTemplate": "=You are an expert extraction algorithm.\nOnly extract relevant url from the unstructured urls array.\nA relevant url is a url whre you can find relevant information about this subject : {{ $('Edit Fields (For testing prupose )').item.json.Subject }}, on this domaine name : {{ $('Edit Fields (For testing prupose )').item.json['Website Domaine'] }}.\nIf you do not know the value of an attribute asked to extract, you need \\ attribute's value as NA."}, "attributes": {"attributes": [{"name": "Good_url_for_etract_information", "required": true, "description": "=The url where I can extract relevant infroamtion on this subject : {{ $('Edit Fields (For testing prupose )').item.json.Subject }} on this domaine name : {{ $('Edit Fields (For testing prupose )').item.json['Website Domaine'] }}"}]}}, "typeVersion": 1}, {"id": "6ac249e2-a9d8-4590-b050-3a0a2472fa3c", "name": "Check if empty of NA", "type": "n8n-nodes-base.if", "position": [2440, 540], "parameters": {"options": {}, "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "or", "conditions": [{"id": "9470fb6c-e367-4af7-a697-275e724fe771", "operator": {"type": "string", "operation": "empty", "singleValue": true}, "leftValue": "={{ $json.output.Good_url_for_etract_information }}", "rightValue": ""}, {"id": "8518e9a9-5b0c-4699-97c5-d9b7b1943918", "operator": {"name": "filter.operator.equals", "type": "string", "operation": "equals"}, "leftValue": "={{ $json.output.Good_url_for_etract_information }}", "rightValue": "NA"}]}}, "typeVersion": 2.2}, {"id": "f380eff7-3d18-4791-9dac-8a88d3fdcc4f", "name": "If Block", "type": "n8n-nodes-base.if", "position": [4960, 840], "parameters": {"options": {}, "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "e6e6e15d-1cfe-48be-8ea0-f112e9781c9d", "operator": {"type": "string", "operation": "contains"}, "leftValue": "={{ $json.content }}", "rightValue": "BLOCK"}]}}, "typeVersion": 2.2}, {"id": "43382397-89b5-4b90-9016-49109ec04baf", "name": "Google search Query ", "type": "n8n-nodes-base.httpRequest", "position": [1600, 540], "parameters": {"url": "=https://www.google.com/search?q=site:{{ $json['Website Domaine'] }}+{{$json.Subject}}&oq=site&gs_lcrp=EgZjaHJvbWUqCAgAEEUYJxg7MggIABBFGCcYOzIICAEQRRgnGDsyBggCEEUYOzIRCAMQRRg5GEMYyQMYgAQYigUyBggEEEUYQDIGCAUQRRg9MgYIBhBFGD0yBggHEEUYPdIBCDEwNTRqMGo3qAIAsAIA&sourceid=chrome&ie=UTF-8", "options": {}}, "typeVersion": 4.2}, {"id": "d34256af-1b43-4f64-853c-cf063b8c6b68", "name": "Create Selenium Session", "type": "n8n-nodes-base.httpRequest", "onError": "continueErrorOutput", "position": [2680, 640], "parameters": {"url": "http://selenium_chrome:4444/wd/hub/session", "method": "POST", "options": {"timeout": 5000}, "jsonBody": "{\n \"capabilities\": {\n \"alwaysMatch\": {\n \"browserName\": \"chrome\",\n \"goog:chromeOptions\": {\n \"args\": [ \n \"--disable-blink-features=AutomationControlled\",\n \"--user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3\"\n ]\n }\n }\n }\n}\n", "sendBody": true, "specifyBody": "json"}, "retryOnFail": true, "typeVersion": 4.2}, {"id": "4f0f696c-9637-4c7d-82ae-1f5c36bb9cd1", "name": "Get ScreenShot 1", "type": "n8n-nodes-base.httpRequest", "onError": "continueErrorOutput", "position": [4420, 840], "parameters": {"url": "=http://selenium_chrome:4444/wd/hub/session/{{ $('Create Selenium Session').item.json.value.sessionId }}/screenshot", "options": {}}, "typeVersion": 4.2}, {"id": "ba72c0cf-217a-4411-80f6-ca28ccdb0151", "name": "Refresh browser", "type": "n8n-nodes-base.httpRequest", "onError": "continueErrorOutput", "position": [5320, -100], "parameters": {"url": "=http:///selenium_chrome:4444/wd/hub/session/{{ $('Create Selenium Session').item.json.value.sessionId }}/refresh", "method": "POST", "options": {}, "jsonBody": "{}", "sendBody": true, "specifyBody": "json"}, "typeVersion": 4.2}, {"id": "b6ba7068-399a-467d-ba58-7f47d650e2f1", "name": "Get ScreenShot ", "type": "n8n-nodes-base.httpRequest", "onError": "continueErrorOutput", "position": [5880, -20], "parameters": {"url": "=http://selenium_chrome:4444/wd/hub/session/{{ $('Create Selenium Session').item.json.value.sessionId }}/screenshot", "options": {}}, "typeVersion": 4.2}, {"id": "792649be-0ee2-442f-bc21-d0c297cea227", "name": "Convert to File", "type": "n8n-nodes-base.convertToFile", "onError": "continueErrorOutput", "position": [6160, -20], "parameters": {"options": {}, "operation": "toBinary", "sourceProperty": "value"}, "typeVersion": 1.1}, {"id": "49e58759-bedf-4f38-a96c-bd18e67b8aaf", "name": "Convert to File1", "type": "n8n-nodes-base.convertToFile", "onError": "continueErrorOutput", "position": [4600, 840], "parameters": {"options": {}, "operation": "toBinary", "sourceProperty": "value"}, "typeVersion": 1.1}, {"id": "3735f5f5-665e-4649-b1c2-84a4a8699f70", "name": "Delete Session7", "type": "n8n-nodes-base.httpRequest", "onError": "continueRegularOutput", "position": [2920, 780], "parameters": {"url": "=http://selenium_chrome:4444/wd/hub/session/{{ $('Create Selenium Session').item.json.value.sessionId }}", "method": "DELETE", "options": {}}, "retryOnFail": false, "typeVersion": 4.2}, {"id": "1b8b1e0c-f465-4963-869c-0e7086922151", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [920, -1023.3944834469928], "parameters": {"color": 4, "width": 851.2111300888805, "height": 1333.3079943516484, "content": "## N8N Ultimate Scraper - Workflow\n\nThis workflow's objective is to collect data from any website page, whether it requires login or not.\n\nFor example, you can collect the number of stars of the n8n-ultimate-scraper project on GitHub.\n\n## Requirements\n**Selenium Container**: Selenium is an open-source automation framework for web applications, enabling browser control and interaction through scripts in various programming languages.\nYou can deploy the Docker Compose file from the associated GitHub project to set up your Selenium container and configuration: https://github.com/Touxan/n8n-ultimate-scraper\n\n**Residential Proxy Server**: To scrape data at scale without being blocked, I personally recommend GeoNode. They offer affordable, high-quality residential proxies: https://geonode.com/invite/98895\n\n**OpenAI API Key**: For using GPT-4.\n\n## Optional\nSession Cookies Collection: To use login functionality with the n8n Ultimate Scraper, you need to collect session cookies from the target website. You can do this using the extension created for this application in the GitHub project: https://github.com/Touxan/n8n-ultimate-scraper. Follow the installation procedure to use it.\n\n## How to use \nDeploy the project with all the requiremnts and request your webhook.\n\n**Example of request**:\ncurl -X POST http://localhost:5678/webhook-test/yourwebhookid \\\n-H \"Content-Type: application/json\" \\\n-d '{\n \"subject\": \"Hugging Face\",\n \"Url\": \"github.com\",\n \"Target data\": [\n {\n \"DataName\": \"Followers\",\n \"description\": \"The number of followers of the GitHub page\"\n },\n {\n \"DataName\": \"Total Stars\",\n \"description\": \"The total numbers of stars on the different repos\"\n }\n ],\n \"cookies\": []\n}'\n\nYou can also scrape link like this : \ncurl -X POST http://localhost:5678/webhook-test/67d77918-2d5b-48c1-ae73-2004b32125f0 \\\n-H \"Content-Type: application/json\" \\\n-d '{\n \"Target Url\": \"https://github.com\",\n \"Target data\": [\n {\n \"DataName\": \"Followers\",\n \"description\": \"The number of followers of the GitHub page\"\n },\n {\n \"DataName\": \"Total Stars\",\n \"description\": \"The total numbers of stars on the different repo\"\n }\n]\n}'\n\n**Note**\nThe maximum nimber of Target data is 5."}, "typeVersion": 1}, {"id": "4d743518-4fcb-4e9f-aff7-a8959a78ccaf", "name": "Edit Fields (For testing prupose )", "type": "n8n-nodes-base.set", "position": [1160, 540], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "3895040f-0a21-47ee-a73f-d3c7fd6edf36", "name": "Subject", "type": "string", "value": "={{ $json.body.subject }}"}, {"id": "304e4240-513f-4c87-ae9d-4efda7d0c4ab", "name": "Website Domaine", "type": "string", "value": "={{ $json.body.Url }}"}]}}, "typeVersion": 3.4}, {"id": "62b0a416-71a2-4d2b-83f9-8c5465c72006", "name": "Get ScreenShot 2", "type": "n8n-nodes-base.httpRequest", "onError": "continueErrorOutput", "position": [6200, 851], "parameters": {"url": "=http://selenium_chrome:4444/wd/hub/session/{{ $('Create Selenium Session').item.json.value.sessionId }}/screenshot", "options": {}}, "typeVersion": 4.2}, {"id": "6a5b1a08-c47a-435e-8e0b-648cb8282a90", "name": "Convert to File2", "type": "n8n-nodes-base.convertToFile", "onError": "continueErrorOutput", "position": [6440, 851], "parameters": {"options": {}, "operation": "toBinary", "sourceProperty": "value"}, "typeVersion": 1.1}, {"id": "a2aa5d45-5f41-41f7-a8ee-07c145b73d89", "name": "Go on ip-api.com", "type": "n8n-nodes-base.httpRequest", "onError": "continueErrorOutput", "position": [5960, 851], "parameters": {"url": "=http://selenium_chrome:4444/wd/hub/session/{{ $('Create Selenium Session').item.json.value.sessionId }}/url", "method": "POST", "options": {}, "jsonBody": "={\n \"url\": \"https://ip-api.com/\"\n}\n", "sendBody": true, "specifyBody": "json"}, "retryOnFail": true, "typeVersion": 4.2}, {"id": "8ddde1d2-0b09-45ca-88ef-db24352b095e", "name": "Delete Session8", "type": "n8n-nodes-base.httpRequest", "onError": "continueRegularOutput", "position": [6440, 1071], "parameters": {"url": "=http://selenium_chrome:4444/wd/hub/session/{{ $('Create Selenium Session').item.json.value.sessionId }}", "method": "DELETE", "options": {}}, "retryOnFail": false, "typeVersion": 4.2}, {"id": "78ffd8e1-b4b8-444c-8a7d-410172d3a7f8", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [5920, 727], "parameters": {"color": 6, "width": 784.9798841202522, "height": 520.0741248156677, "content": "## Debug IP\n\nThis small debug flow aims to check the IP you're requesting with, in case you're using a proxy"}, "typeVersion": 1}, {"id": "be5de434-5f07-40bc-a1e6-aece9ad211b4", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [1580, 420], "parameters": {"width": 751.8596006980003, "height": 430.433007240277, "content": "## Search\n\n**Description** :\nThis part aims to search on Google for the subject and find the URL of the subject page based on the input URL."}, "typeVersion": 1}, {"id": "ffbb3c92-245b-4635-9adf-17d24f236bff", "name": "Error can't find url", "type": "n8n-nodes-base.respondToWebhook", "position": [2800, 280], "parameters": {"options": {"responseCode": 404}, "respondWith": "json", "responseBody": "{\n \"Error\": \"Can't find url\"\n}"}, "typeVersion": 1.1}, {"id": "088ad72c-907a-409a-9fa4-00a16d396e1b", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [2420, 420], "parameters": {"width": 827.9448220213314, "height": 502.0185388323068, "content": "## Selenium Session\n\n**Description**:\nCreation and configuration of the Selenium session."}, "typeVersion": 1}, {"id": "00b8bf19-b34e-42ed-bb2a-3fbfa5f02a25", "name": "Resize browser window", "type": "n8n-nodes-base.httpRequest", "position": [2920, 560], "parameters": {"url": "=http://selenium_chrome:4444/wd/hub/session/{{ $json.value.sessionId }}/window/rect", "method": "POST", "options": {}, "jsonBody": "{\n \"width\": 1920,\n \"height\": 1080,\n \"x\": 0,\n \"y\": 0\n}\n", "sendBody": true, "specifyBody": "json"}, "typeVersion": 4.2}, {"id": "007354a1-3f00-4ae9-ab53-54ded5eed563", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [3500, -300], "parameters": {"width": 3939.555135735299, "height": 821.0847869745435, "content": "## Scrape with cookies session\n\n**Description**\nThis part goes to the extracted URL, injects the cookies passed into the webhook, takes a screenshot of the webpage, and analyzes the image with GPT to extract the targeted data."}, "typeVersion": 1}, {"id": "5ab44e1b-6878-4af5-bfd8-1f1e5cbee3a7", "name": "Sticky Note5", "type": "n8n-nodes-base.stickyNote", "position": [3500, 580], "parameters": {"width": 3336.952424000919, "height": 821.0847869745435, "content": "## Scrape without cookies session\n\n**Description**\nSame as the 'Scrape with cookies session' flow, but without the cookie injection"}, "typeVersion": 1}, {"id": "4fc7e290-0c60-4efe-ac3f-eb71ce5e457b", "name": "OpenAI", "type": "@n8n/n8n-nodes-langchain.openAi", "position": [6340, -20], "parameters": {"text": "=Analyse this image and extract revlant infromation about this subject : {{ $('Webhook').item.json.body.subject }}. \n\nIf the webpage seem block by waf, or don't have any relant information about the subject reurn BLOCK with out any aditinonal information.", "modelId": {"__rl": true, "mode": "list", "value": "gpt-4o", "cachedResultName": "GPT-4O"}, "options": {"detail": "auto", "maxTokens": 300}, "resource": "image", "inputType": "base64", "operation": "analyze"}, "credentials": {"openAiApi": {"id": "FmszNHDDVS32ud21", "name": "OpenAi account"}}, "typeVersion": 1.5}, {"id": "b039ed2a-94da-4a37-b794-7fb1721a8ab3", "name": "OpenAI1", "type": "@n8n/n8n-nodes-langchain.openAi", "onError": "continueErrorOutput", "position": [4780, 840], "parameters": {"text": "=Analyse this image and extract revlant infromation about this subject : {{ $('Webhook').item.json.body.subject }}. \n\nIf the webpage seem block by waf, or don't have any relant information about the subject reurn BLOCK with out any aditinonal information.", "modelId": {"__rl": true, "mode": "list", "value": "gpt-4o", "cachedResultName": "GPT-4O"}, "options": {"detail": "auto", "maxTokens": 300}, "resource": "image", "inputType": "base64", "operation": "analyze"}, "credentials": {"openAiApi": {"id": "FmszNHDDVS32ud21", "name": "OpenAi account"}}, "typeVersion": 1.5}, {"id": "c69364ce-c7e3-4f7a-ae0c-bad97643da30", "name": "Information Extractor1", "type": "@n8n/n8n-nodes-langchain.informationExtractor", "position": [5400, 920], "parameters": {"text": "={{ $('OpenAI1').item.json.content }}", "options": {"systemPromptTemplate": "You are an expert extraction algorithm.\nOnly extract relevant information from the text.\nIf you do not know the value of an attribute asked to extract, set the attribute's value to NA."}, "attributes": {"attributes": [{"name": "={{ $('Webhook').item.json.body['Target data'][0].DataName }}", "description": "={{ $('Webhook').item.json.body['Target data'][0].description }}"}, {"name": "={{ $('Webhook').item.json.body['Target data'][1].DataName }}", "description": "=The total number of stars on all project"}, {"name": "={{ $('Webhook').item.json.body['Target data'][2].DataName }}", "description": "={{ $('Webhook').item.json.body['Target data'][2].description }}"}, {"name": "={{ $('Webhook').item.json.body['Target data'][3].DataName }}", "description": "={{ $('Webhook').item.json.body['Target data'][3].description }}"}, {"name": "={{ $('Webhook').item.json.body['Target data'][4].DataName }}", "description": "={{ $('Webhook').item.json.body['Target data'][4].description }}"}]}}, "typeVersion": 1}, {"id": "0e756adb-a6ba-421f-9d21-374e7fa74781", "name": "OpenAI Chat Model1", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [5400, 1140], "parameters": {"model": "gpt-4o-mini", "options": {}}, "credentials": {"openAiApi": {"id": "FmszNHDDVS32ud21", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "920e9315-7de4-4a23-adbe-36338ea18097", "name": "Information Extractor2", "type": "@n8n/n8n-nodes-langchain.informationExtractor", "position": [6920, 60], "parameters": {"text": "={{ $('OpenAI').item.json.content }}", "options": {"systemPromptTemplate": "You are an expert extraction algorithm.\nOnly extract relevant information from the text.\nIf you do not know the value of an attribute asked to extract, set the attribute's value to NA. If the attribute is empty you can omit it."}, "attributes": {"attributes": [{"name": "={{ $('Webhook').item.json.body['Target data'][0].DataName }}", "description": "={{ $('Webhook').item.json.body['Target data'][0].description }}"}, {"name": "={{ $('Webhook').item.json.body['Target data'][1].DataName }}", "description": "=The total number of stars on all project"}, {"name": "={{ $('Webhook').item.json.body['Target data'][2].DataName }}", "description": "={{ $('Webhook').item.json.body['Target data'][2].description }}"}, {"name": "={{ $('Webhook').item.json.body['Target data'][3].DataName }}", "description": "={{ $('Webhook').item.json.body['Target data'][3].description }}"}, {"name": "={{ $('Webhook').item.json.body['Target data'][4].DataName }}", "description": "={{ $('Webhook').item.json.body['Target data'][4].description }}"}]}}, "typeVersion": 1}, {"id": "aa98d16e-d20c-4a8f-8eaf-1f64751dd8ea", "name": "OpenAI Chat Model2", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [6940, 220], "parameters": {"model": "gpt-4o-mini", "options": {}}, "credentials": {"openAiApi": {"id": "FmszNHDDVS32ud21", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "ba41b87e-feb7-4753-95b3-d569d54d8756", "name": "Sticky Note6", "type": "n8n-nodes-base.stickyNote", "position": [1820, -680], "parameters": {"color": 3, "width": 813.0685668942513, "height": 507.4126722815008, "content": "## Proxy\n\n**Configuration**\n\nTo configure your proxy with the project, follow the instructions on the GitHub project: https://github.com/Touxan/n8n-ultimate-scraper. To configure the docker-compose, you also need to add this argument to the 'Create Selenium Session' node : --proxy-server=address:port.\n\n### \u26a0\ufe0fWarning\u26a0\ufe0f\n Selenium does not support proxy authentication, so you need to add your server IP to the proxy whitelist. On GeoNode, it's here: https://app.geonode.com/whitelist-ip!"}, "typeVersion": 1}, {"id": "194bbecc-a5b3-4c5f-a17f-94703a44f196", "name": "Webhook", "type": "n8n-nodes-base.webhook", "position": [940, 540], "webhookId": "67d77918-2d5b-48c1-ae73-2004b32125f0", "parameters": {"path": "67d77918-2d5b-48c1-ae73-2004b32125f0", "options": {}, "httpMethod": "POST", "responseMode": "responseNode"}, "typeVersion": 2}, {"id": "513389b0-0930-48d8-8cbb-e3575a0276ae", "name": "If Target Url", "type": "n8n-nodes-base.if", "position": [1380, 620], "parameters": {"options": {}, "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "4b608dcd-a175-4019-82c2-560320a2abce", "operator": {"type": "string", "operation": "empty", "singleValue": true}, "leftValue": "={{ $('Webhook').item.json.body['Target Url'] }}", "rightValue": ""}]}}, "typeVersion": 2.2}, {"id": "4ca0aee7-0dd2-4c78-b99b-8c188a3917f4", "name": "If1", "type": "n8n-nodes-base.if", "position": [3700, 900], "parameters": {"options": {}, "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "ff919945-b8c2-492a-b496-8617e9147389", "operator": {"type": "string", "operation": "notEmpty", "singleValue": true}, "leftValue": "={{ $('Webhook').item.json.body['Target Url'] }}", "rightValue": ""}]}}, "typeVersion": 2.2}, {"id": "baa4dc94-67f3-4683-b8c7-6b6e856e7c64", "name": "Go on url1", "type": "n8n-nodes-base.httpRequest", "onError": "continueErrorOutput", "position": [3900, 960], "parameters": {"url": "=http://selenium_chrome:4444/wd/hub/session/{{ $('Create Selenium Session').item.json.value.sessionId }}/url", "method": "POST", "options": {}, "jsonBody": "={\n \"url\": \"{{ $('Information Extractor').item.json.output.Good_url_for_etract_information }}\"\n}\n", "sendBody": true, "specifyBody": "json"}, "retryOnFail": true, "typeVersion": 4.2}, {"id": "2c439b0e-7c78-4ae8-b653-3f02b3834aa8", "name": "If2", "type": "n8n-nodes-base.if", "position": [3340, 560], "parameters": {"options": {}, "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "loose"}, "combinator": "and", "conditions": [{"id": "2a1bfc1e-28a6-45d1-9581-53b632af90e0", "operator": {"type": "string", "operation": "notEmpty", "singleValue": true}, "leftValue": "={{ $('Webhook').item.json.body.cookies }}", "rightValue": ""}]}, "looseTypeValidation": true}, "typeVersion": 2.2}, {"id": "fc3260da-9131-4850-a581-55a27ce4428d", "name": "Go on url2", "type": "n8n-nodes-base.httpRequest", "onError": "continueErrorOutput", "position": [4260, -20], "parameters": {"url": "=http://selenium_chrome:4444/wd/hub/session/{{ $('Create Selenium Session').item.json.value.sessionId }}/url", "method": "POST", "options": {}, "jsonBody": "={\n \"url\": \"{{ $('Webhook').item.json.body['Target Url'] }}\"\n}\n", "sendBody": true, "specifyBody": "json"}, "retryOnFail": true, "typeVersion": 4.2}, {"id": "fe345010-1fa3-4d2c-8bc2-e87f6aeeb0d9", "name": "If3", "type": "n8n-nodes-base.if", "position": [4060, 100], "parameters": {"options": {}, "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "ff919945-b8c2-492a-b496-8617e9147389", "operator": {"type": "string", "operation": "notEmpty", "singleValue": true}, "leftValue": "={{ $('Webhook').item.json.body['Target Url'] }}", "rightValue": ""}]}}, "typeVersion": 2.2}, {"id": "1aae02ec-3a22-4dd5-aea4-819758f130c1", "name": "Go on url3", "type": "n8n-nodes-base.httpRequest", "onError": "continueErrorOutput", "position": [4260, 160], "parameters": {"url": "=http://selenium_chrome:4444/wd/hub/session/{{ $('Create Selenium Session').item.json.value.sessionId }}/url", "method": "POST", "options": {}, "jsonBody": "={\n \"url\": \"{{ $('Information Extractor').item.json.output.Good_url_for_etract_information }}\"\n}\n", "sendBody": true, "specifyBody": "json"}, "retryOnFail": true, "typeVersion": 4.2}]
{"If": {"main": [[{"node": "If3", "type": "main", "index": 0}], [{"node": "Delete Session5", "type": "main", "index": 0}]]}, "If1": {"main": [[{"node": "Go on url", "type": "main", "index": 0}], [{"node": "Go on url1", "type": "main", "index": 0}]]}, "If2": {"main": [[{"node": "If", "type": "main", "index": 0}], [{"node": "If1", "type": "main", "index": 0}]]}, "If3": {"main": [[{"node": "Go on url2", "type": "main", "index": 0}], [{"node": "Go on url3", "type": "main", "index": 0}]]}, "Code": {"main": [[{"node": "Inject Cookie", "type": "main", "index": 0}]]}, "Limit": {"main": [[{"node": "Refresh browser", "type": "main", "index": 0}]]}, "OpenAI": {"main": [[{"node": "If Block1", "type": "main", "index": 0}]]}, "OpenAI1": {"main": [[{"node": "If Block", "type": "main", "index": 0}], [{"node": "Delete Session6", "type": "main", "index": 0}]]}, "Webhook": {"main": [[{"node": "Edit Fields (For testing prupose )", "type": "main", "index": 0}]]}, "If Block": {"main": [[{"node": "Delete Session1", "type": "main", "index": 0}], [{"node": "Delete Session", "type": "main", "index": 0}]]}, "Go on url": {"main": [[{"node": "Get ScreenShot 1", "type": "main", "index": 0}], [{"node": "Delete Session6", "type": "main", "index": 0}]]}, "If Block1": {"main": [[{"node": "Delete Session2", "type": "main", "index": 0}], [{"node": "Delete Session3", "type": "main", "index": 0}]]}, "Go on url1": {"main": [[{"node": "Get ScreenShot 1", "type": "main", "index": 0}], [{"node": "Delete Session6", "type": "main", "index": 0}]]}, "Go on url2": {"main": [[{"node": "Code", "type": "main", "index": 0}], [{"node": "Delete Session4", "type": "main", "index": 0}]]}, "Go on url3": {"main": [[{"node": "Code", "type": "main", "index": 0}], [{"node": "Delete Session4", "type": "main", "index": 0}]]}, "If Target Url": {"main": [[{"node": "Google search Query ", "type": "main", "index": 0}], [{"node": "Create Selenium Session", "type": "main", "index": 0}]]}, "Inject Cookie": {"main": [[{"node": "Limit", "type": "main", "index": 0}]]}, "Delete Session": {"main": [[{"node": "Information Extractor1", "type": "main", "index": 0}]]}, "Convert to File": {"main": [[{"node": "OpenAI", "type": "main", "index": 0}], [{"node": "Delete Session4", "type": "main", "index": 0}]]}, "Delete Session1": {"main": [[{"node": "Respond to Webhook3", "type": "main", "index": 0}]]}, "Delete Session2": {"main": [[{"node": "Respond to Webhook2", "type": "main", "index": 0}]]}, "Delete Session3": {"main": [[{"node": "Information Extractor2", "type": "main", "index": 0}]]}, "Delete Session4": {"main": [[{"node": "Error1", "type": "main", "index": 0}]]}, "Delete Session5": {"main": [[{"node": "Error", "type": "main", "index": 0}]]}, "Delete Session6": {"main": [[{"node": "Error3", "type": "main", "index": 0}]]}, "Delete Session7": {"main": [[{"node": "Error2", "type": "main", "index": 0}]]}, "Get ScreenShot ": {"main": [[{"node": "Convert to File", "type": "main", "index": 0}], [{"node": "Delete Session4", "type": "main", "index": 0}]]}, "Refresh browser": {"main": [[{"node": "Get ScreenShot ", "type": "main", "index": 0}], [{"node": "Delete Session4", "type": "main", "index": 0}]]}, "Clean Webdriver ": {"main": [[{"node": "If2", "type": "main", "index": 0}]]}, "Convert to File1": {"main": [[{"node": "OpenAI1", "type": "main", "index": 0}], [{"node": "Delete Session6", "type": "main", "index": 0}]]}, "Get ScreenShot 1": {"main": [[{"node": "Convert to File1", "type": "main", "index": 0}], [{"node": "Delete Session6", "type": "main", "index": 0}]]}, "Get ScreenShot 2": {"main": [[{"node": "Convert to File2", "type": "main", "index": 0}], [{"node": "Delete Session8", "type": "main", "index": 0}]]}, "Go on ip-api.com": {"main": [[{"node": "Get ScreenShot 2", "type": "main", "index": 0}], [{"node": "Delete Session8", "type": "main", "index": 0}]]}, "OpenAI Chat Model": {"ai_languageModel": [[{"node": "Information Extractor", "type": "ai_languageModel", "index": 0}]]}, "OpenAI Chat Model1": {"ai_languageModel": [[{"node": "Information Extractor1", "type": "ai_languageModel", "index": 0}]]}, "OpenAI Chat Model2": {"ai_languageModel": [[{"node": "Information Extractor2", "type": "ai_languageModel", "index": 0}]]}, "Check if empty of NA": {"main": [[{"node": "Error can't find url", "type": "main", "index": 0}], [{"node": "Create Selenium Session", "type": "main", "index": 0}]]}, "Google search Query ": {"main": [[{"node": "Extract First Url Match", "type": "main", "index": 0}]]}, "Information Extractor": {"main": [[{"node": "Check if empty of NA", "type": "main", "index": 0}]]}, "Resize browser window": {"main": [[{"node": "Clean Webdriver ", "type": "main", "index": 0}]]}, "Information Extractor1": {"main": [[{"node": "Success", "type": "main", "index": 0}]]}, "Information Extractor2": {"main": [[{"node": "Success with cookie", "type": "main", "index": 0}]]}, "Create Selenium Session": {"main": [[{"node": "Resize browser window", "type": "main", "index": 0}], [{"node": "Delete Session7", "type": "main", "index": 0}]]}, "Extract First Url Match": {"main": [[{"node": "Information Extractor", "type": "main", "index": 0}]]}, "Edit Fields (For testing prupose )": {"main": [[{"node": "If Target Url", "type": "main", "index": 0}]]}}
Dynamically generate HTML page from user request using OpenAI Structured Output
[{"id": "b1d9659f-4cd0-4f87-844d-32b2af1dcf13", "name": "Respond to Webhook", "type": "n8n-nodes-base.respondToWebhook", "position": [2160, 380], "parameters": {"options": {"responseHeaders": {"entries": [{"name": "Content-Type", "value": "text/html; charset=UTF-8"}]}}, "respondWith": "text", "responseBody": "={{ $json.html }}"}, "typeVersion": 1.1}, {"id": "5ca8ad3e-7702-4f07-af24-d38e94fdc4ec", "name": "Open AI - Using Structured Output", "type": "n8n-nodes-base.httpRequest", "position": [1240, 380], "parameters": {"url": "https://api.openai.com/v1/chat/completions", "method": "POST", "options": {}, "jsonBody": "={\n \"model\": \"gpt-4o-2024-08-06\",\n \"messages\": [\n {\n \"role\": \"system\",\n \"content\": \"You are a user interface designer and copy writter. Your job is to help users visualize their website ideas. You design elegant and simple webs, with professional text. You use Tailwind framework\"\n },\n {\n \"role\": \"user\",\n \"content\": \"{{ $json.query.query }}\"\n }\n ],\n \"response_format\":\n{\n \"type\": \"json_schema\",\n \"json_schema\": {\n \"name\": \"ui\",\n \"description\": \"Dynamically generated UI\",\n \"strict\": true,\n \"schema\": {\n \"type\": \"object\",\n \"properties\": {\n \"type\": {\n \"type\": \"string\",\n \"description\": \"The type of the UI component\",\n \"enum\": [\n \"div\",\n \"span\",\n \"a\",\n \"p\",\n \"h1\",\n \"h2\",\n \"h3\",\n \"h4\",\n \"h5\",\n \"h6\",\n \"ul\",\n \"ol\",\n \"li\",\n \"img\",\n \"button\",\n \"input\",\n \"textarea\",\n \"select\",\n \"option\",\n \"label\",\n \"form\",\n \"table\",\n \"thead\",\n \"tbody\",\n \"tr\",\n \"th\",\n \"td\",\n \"nav\",\n \"header\",\n \"footer\",\n \"section\",\n \"article\",\n \"aside\",\n \"main\",\n \"figure\",\n \"figcaption\",\n \"blockquote\",\n \"q\",\n \"hr\",\n \"code\",\n \"pre\",\n \"iframe\",\n \"video\",\n \"audio\",\n \"canvas\",\n \"svg\",\n \"path\",\n \"circle\",\n \"rect\",\n \"line\",\n \"polyline\",\n \"polygon\",\n \"g\",\n \"use\",\n \"symbol\"\n]\n },\n \"label\": {\n \"type\": \"string\",\n \"description\": \"The label of the UI component, used for buttons or form fields\"\n },\n \"children\": {\n \"type\": \"array\",\n \"description\": \"Nested UI components\",\n \"items\": {\n \"$ref\": \"#\"\n }\n },\n \"attributes\": {\n \"type\": \"array\",\n \"description\": \"Arbitrary attributes for the UI component, suitable for any element using Tailwind framework\",\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\",\n \"description\": \"The name of the attribute, for example onClick or className\"\n },\n \"value\": {\n \"type\": \"string\",\n \"description\": \"The value of the attribute using the Tailwind framework classes\"\n }\n },\n \"additionalProperties\": false,\n \"required\": [\"name\", \"value\"]\n }\n }\n },\n \"required\": [\"type\", \"label\", \"children\", \"attributes\"],\n \"additionalProperties\": false\n }\n }\n}\n}", "sendBody": true, "sendHeaders": true, "specifyBody": "json", "authentication": "predefinedCredentialType", "headerParameters": {"parameters": [{"name": "Content-Type", "value": "application/json"}]}, "nodeCredentialType": "openAiApi"}, "credentials": {"openAiApi": {"id": "WqzqjezKh8VtxdqA", "name": "OpenAi account - Baptiste"}}, "typeVersion": 4.2}, {"id": "24e5ca73-a3b3-4096-8c66-d84838d89b0c", "name": "OpenAI - JSON to HTML", "type": "@n8n/n8n-nodes-langchain.openAi", "position": [1420, 380], "parameters": {"modelId": {"__rl": true, "mode": "list", "value": "gpt-4o-mini", "cachedResultName": "GPT-4O-MINI"}, "options": {"temperature": 0.2}, "messages": {"values": [{"role": "system", "content": "You convert a JSON to HTML. \nThe JSON output has the following fields:\n- html: the page HTML\n- title: the page title"}, {"content": "={{ $json.choices[0].message.content }}"}]}, "jsonOutput": true}, "credentials": {"openAiApi": {"id": "WqzqjezKh8VtxdqA", "name": "OpenAi account - Baptiste"}}, "typeVersion": 1.3}, {"id": "c50bdc84-ba59-4f30-acf7-496cee25068d", "name": "Format the HTML result", "type": "n8n-nodes-base.html", "position": [1940, 380], "parameters": {"html": "<!DOCTYPE html>\n\n<html>\n<head>\n <meta charset=\"UTF-8\" />\n <script src=\"https://cdn.tailwindcss.com\"></script>\n <title>{{ $json.message.content.title }}</title>\n</head>\n<body>\n{{ $json.message.content.html }}\n</body>\n</html>"}, "typeVersion": 1.2}, {"id": "193093f4-b1ce-4964-ab10-c3208e343c69", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [1134, 62], "parameters": {"color": 7, "width": 638, "height": 503, "content": "## Generate HTML from user query\n\n**HTTP Request node**\n- Send the user query to OpenAI, with a defined JSON response format - *using HTTP Request node as it has not yet been implemented in the OpenAI nodes*\n- The response format is inspired by the [Structured Output defined in OpenAI Introduction post](https://openai.com/index/introducing-structured-outputs-in-the-api)\n- The output is a JSON containing HTML components and attributed\n\n\n**OpenAI node**\n- Format the response from the previous node from JSON format to HTML format"}, "typeVersion": 1}, {"id": "0371156a-211f-4d92-82b1-f14fe60d4b6b", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [0, 60], "parameters": {"color": 7, "width": 768, "height": 503, "content": "## Workflow: Dynamically generate an HTML page from a user request using OpenAI Structured Output\n\n**Overview**\n- This workflow is a experiment to build HTML pages from a user input using the new Structured Output from OpenAI.\n- The Structured Output could be used in a variety of cases. Essentially, it guarantees the output from the GPT will follow a defined structure (JSON object).\n- It uses Tailwind CSS to make it slightly nicer, but any\n\n**How it works**\n- Once active, go to the production URL and add what you'd like to build as the parameter \"query\"\n- Example: https://production_url.com?query=a%20signup%20form\n- OpenAI nodes will first output the UI as a JSON then convert it to HTML\n- Finally, the response is integrated in a HTML container and rendered to the user\n\n**Further thoughts**\n- Results are not yet amazing, it is hard to see the direct value of such an experiment\n- But it showcase the potential of the Structured Output. Being able to guarantee the output format is key to build robust AI applications."}, "typeVersion": 1}, {"id": "06380781-5189-4d99-9ecd-d8913ce40fd5", "name": "Webhook", "type": "n8n-nodes-base.webhook", "position": [820, 380], "webhookId": "d962c916-6369-431a-9d80-af6e6a50fdf5", "parameters": {"path": "d962c916-6369-431a-9d80-af6e6a50fdf5", "options": {"allowedOrigins": "*"}, "responseMode": "responseNode"}, "typeVersion": 2}]
{"Webhook": {"main": [[{"node": "Open AI - Using Structured Output", "type": "main", "index": 0}]]}, "OpenAI - JSON to HTML": {"main": [[{"node": "Format the HTML result", "type": "main", "index": 0}]]}, "Format the HTML result": {"main": [[{"node": "Respond to Webhook", "type": "main", "index": 0}]]}, "Open AI - Using Structured Output": {"main": [[{"node": "OpenAI - JSON to HTML", "type": "main", "index": 0}]]}}
OpenAI Personal Shopper with RAG and WooCommerce
[{"id": "635901e5-4afd-4c81-a63e-52f1b863a025", "name": "When chat message received", "type": "@n8n/n8n-nodes-langchain.chatTrigger", "position": [-200, 280], "webhookId": "bd3a878c-50b0-4d92-906f-e768a65c1485", "parameters": {"options": {}}, "typeVersion": 1.1}, {"id": "d11cd97c-1539-462d-858c-8758cf1a8278", "name": "Window Buffer Memory", "type": "@n8n/n8n-nodes-langchain.memoryBufferWindow", "position": [620, 580], "parameters": {"sessionKey": "={{ $('Edit Fields').item.json.sessionId }}", "sessionIdType": "customKey"}, "typeVersion": 1.3}, {"id": "02bb43e4-f26e-4906-8049-c49d3fecd817", "name": "Calculator", "type": "@n8n/n8n-nodes-langchain.toolCalculator", "position": [760, 580], "parameters": {}, "typeVersion": 1}, {"id": "ad6058dd-b429-4f3c-b68a-7e3d98beec83", "name": "Edit Fields", "type": "n8n-nodes-base.set", "position": [20, 280], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "7015c229-f9fe-4c77-b2b9-4ac09a3a3cb1", "name": "sessionId", "type": "string", "value": "={{ $json.sessionId }}"}, {"id": "f8fc0044-6a1a-455b-a435-58931a8c4c8e", "name": "chatInput", "type": "string", "value": "={{ $json.chatInput }}"}]}}, "typeVersion": 3.4}, {"id": "43f7ee25-4529-4558-b5ea-c2a722b0bce5", "name": "OpenAI Chat Model", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [500, 580], "parameters": {"options": {}}, "credentials": {"openAiApi": {"id": "CDX6QM4gLYanh0P4", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "8b5ec20d-8735-4030-8113-717d578928eb", "name": "RAG", "type": "@n8n/n8n-nodes-langchain.toolVectorStore", "position": [1000, 580], "parameters": {"name": "informazioni_negozio", "description": "Informazioni relative al negozio: orari di apertura, indirizzo, contatti, informazioni generali"}, "typeVersion": 1}, {"id": "0fd0f1d6-41df-43d4-9418-0685afad409a", "name": "Qdrant Vector Store", "type": "@n8n/n8n-nodes-langchain.vectorStoreQdrant", "position": [900, 780], "parameters": {"options": {}, "qdrantCollection": {"__rl": true, "mode": "list", "value": "scarperia", "cachedResultName": "scarperia"}}, "credentials": {"qdrantApi": {"id": "iyQ6MQiVaF3VMBmt", "name": "QdrantApi account"}}, "typeVersion": 1}, {"id": "72084a2e-0e47-4723-a004-585ae8b67ae3", "name": "Embeddings OpenAI", "type": "@n8n/n8n-nodes-langchain.embeddingsOpenAi", "position": [840, 940], "parameters": {"options": {}}, "credentials": {"openAiApi": {"id": "CDX6QM4gLYanh0P4", "name": "OpenAi account"}}, "typeVersion": 1.1}, {"id": "30d398a3-2331-4a3d-898d-c184779c7ef3", "name": "OpenAI Chat Model1", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [1200, 800], "parameters": {"options": {}}, "credentials": {"openAiApi": {"id": "CDX6QM4gLYanh0P4", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "e10a8024-51ec-4553-a1fa-dbaa49a4d2c2", "name": "personal_shopper", "type": "n8n-nodes-base.wooCommerceTool", "position": [880, 580], "parameters": {"options": {"sku": "={{ $('Information Extractor').item.json.output.SKU }}", "search": "={{ $('Information Extractor').item.json.output.keyword }}", "maxPrice": "={{ $('Information Extractor').item.json.output.price_max }}", "minPrice": "={{ $('Information Extractor').item.json.output.price_min }}", "stockStatus": "instock"}, "operation": "getAll"}, "credentials": {"wooCommerceApi": {"id": "d4EQtVORkOCNQZAm", "name": "WooCommerce (Scarperia)"}}, "typeVersion": 1}, {"id": "f0c53b0d-7173-4ec9-8fb4-f8f45d9ceedc", "name": "Information Extractor", "type": "@n8n/n8n-nodes-langchain.informationExtractor", "position": [220, 280], "parameters": {"text": "={{ $json.chatInput }}", "options": {"systemPromptTemplate": "You are an intelligent assistant for a shoe and accessories store (mainly bags). Your task is to analyze the input text coming from a chat and determine if the user is looking for a product. If the user is looking for a product, you need to extract the following information:\n1. The keyword (keyword) useful for the search.\n2. Any minimum or maximum prices specified.\n3. An SKU (product code) if mentioned.\n4. The name of the category to search in, if specified.\n\nInstructions:\n1. Identify the intent: Determine if the user is looking for a specific product.\n2. Extract the information:\n- If the user is looking for a product, identify:\n- Set the type \"search\" to true. Otherwise, set it to false\n- The keywords.\n- Any minimum or maximum prices (e.g. \"less than 50 euros\", \"between 30 and 60 euros\").\n- An SKU (e.g. \"ABC123 code\").\n- The category name (e.g. \"t-shirts\", \"jeans\", \"women\", \"men\").\n3. Output format: Return a JSON object with the given structure"}, "schemaType": "manual", "inputSchema": "{\n \"search_intent\": true,\n \"search_params\": [\n { \"type\": \"search\", \"value\": \"ture or false\" },\n { \"type\": \"keyword\", \"value\": \"valore_keyword\" },\n { \"type\": \"min_price\", \"value\": \"valore_min_price\" },\n { \"type\": \"max_price\", \"value\": \"valore_max_price\" },\n { \"type\": \"sku\", \"value\": \"valore_sku\" },\n { \"type\": \"category\", \"value\": \"valore_categoria\" }\n ]\n }"}, "typeVersion": 1}, {"id": "8386e554-e2f1-42c8-881f-a06e8099f718", "name": "OpenAI Chat Model2", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [200, 460], "parameters": {"options": {}}, "credentials": {"openAiApi": {"id": "CDX6QM4gLYanh0P4", "name": "OpenAi account"}}, "typeVersion": 1.1}, {"id": "4ff30e15-1bf5-4750-a68a-e72f86a4f32c", "name": "Google Drive2", "type": "n8n-nodes-base.googleDrive", "position": [320, -440], "parameters": {"filter": {"driveId": {"__rl": true, "mode": "list", "value": "My Drive", "cachedResultUrl": "https://drive.google.com/drive/my-drive", "cachedResultName": "My Drive"}, "folderId": {"__rl": true, "mode": "list", "value": "1lmnqpLFKS-gXmXT92C5VG0P1XlcoeFOb", "cachedResultUrl": "https://drive.google.com/drive/folders/1lmnqpLFKS-gXmXT92C5VG0P1XlcoeFOb", "cachedResultName": "Scarperia Sal\u00f2 - RAG"}}, "options": {}, "resource": "fileFolder"}, "credentials": {"googleDriveOAuth2Api": {"id": "HEy5EuZkgPZVEa9w", "name": "Google Drive account"}}, "typeVersion": 3}, {"id": "b4ca79b2-220b-4290-a33a-596250c8fd2d", "name": "Google Drive1", "type": "n8n-nodes-base.googleDrive", "position": [520, -440], "parameters": {"fileId": {"__rl": true, "mode": "id", "value": "={{ $json.id }}"}, "options": {"googleFileConversion": {"conversion": {"docsToFormat": "text/plain"}}}, "operation": "download"}, "credentials": {"googleDriveOAuth2Api": {"id": "HEy5EuZkgPZVEa9w", "name": "Google Drive account"}}, "typeVersion": 3}, {"id": "18f5e068-ad4a-4be7-987c-83ed5791f012", "name": "Embeddings OpenAI3", "type": "@n8n/n8n-nodes-langchain.embeddingsOpenAi", "position": [680, -260], "parameters": {"options": {}}, "credentials": {"openAiApi": {"id": "CDX6QM4gLYanh0P4", "name": "OpenAi account"}}, "typeVersion": 1.1}, {"id": "43693ee0-a2a3-44d3-86de-4156af84e251", "name": "Default Data Loader2", "type": "@n8n/n8n-nodes-langchain.documentDefaultDataLoader", "position": [880, -220], "parameters": {"options": {}, "dataType": "binary"}, "typeVersion": 1}, {"id": "f0d351e5-faee-49a4-a43c-985785c3d2c8", "name": "Token Splitter1", "type": "@n8n/n8n-nodes-langchain.textSplitterTokenSplitter", "position": [960, -60], "parameters": {"chunkSize": 300, "chunkOverlap": 30}, "typeVersion": 1}, {"id": "ff77338e-4dac-4261-87a1-10a21108f543", "name": "When clicking \u2018Test workflow\u2019", "type": "n8n-nodes-base.manualTrigger", "position": [-200, -440], "parameters": {}, "typeVersion": 1}, {"id": "72484893-875a-4e8b-83fc-ca137e812050", "name": "HTTP Request", "type": "n8n-nodes-base.httpRequest", "position": [40, -440], "parameters": {"url": "https://QDRANTURL/collections/NAME/points/delete", "method": "POST", "options": {}, "jsonBody": "{\n \"filter\": {}\n}", "sendBody": true, "sendHeaders": true, "specifyBody": "json", "authentication": "genericCredentialType", "genericAuthType": "httpHeaderAuth", "headerParameters": {"parameters": [{"name": "Content-Type", "value": "application/json"}]}}, "credentials": {"httpHeaderAuth": {"id": "qhny6r5ql9wwotpn", "name": "Qdrant API (Hetzner)"}}, "typeVersion": 4.2}, {"id": "5837e3ac-e3d1-45b6-bd67-8c3d03bf0a1e", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [-20, -500], "parameters": {"width": 259.7740863787376, "height": 234.1528239202657, "content": "Replace the URL and Collection name with your own"}, "typeVersion": 1}, {"id": "79baf424-e647-4a80-a19e-c023ad3b1860", "name": "Qdrant Vector Store1", "type": "@n8n/n8n-nodes-langchain.vectorStoreQdrant", "position": [760, -440], "parameters": {"mode": "insert", "options": {}, "qdrantCollection": {"__rl": true, "mode": "list", "value": "scarperia", "cachedResultName": "scarperia"}}, "credentials": {"qdrantApi": {"id": "iyQ6MQiVaF3VMBmt", "name": "QdrantApi account"}}, "typeVersion": 1}, {"id": "17015f50-a3a8-4e62-9816-7e71127c1ea1", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [-220, -640], "parameters": {"color": 3, "width": 1301.621262458471, "height": 105.6212624584717, "content": "## Step 1 \nCreate a collectiopn on your Qdrant instance. Then create a basic RAG system with documents uploaded to Google Drive and embedded in the Qdrant vector database"}, "typeVersion": 1}, {"id": "0ddbf6be-fa2d-4412-8e85-fe108cd6e84d", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [1020, 980.0000000000001], "parameters": {"color": 3, "width": 1301.621262458471, "height": 105.6212624584717, "content": "## Step 1 \nCreate a basic RAG system with documents uploaded to Google Drive and embedded in the Qdrant vector database"}, "typeVersion": 1}, {"id": "3782a22d-b3a7-44ea-ad36-fa4382c9fcfd", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [-200, 120], "parameters": {"color": 3, "width": 1301.621262458471, "height": 105.6212624584717, "content": "## Step 2 \nThe Information Extractor tries to understand if the request is related to products and if so, it extracts the useful information to filter the products available on WooCommerce by calling the \"personal_shopper\". If it is a general question, the RAG system is called"}, "typeVersion": 1}, {"id": "d4d1fb16-3f54-4c1a-ab4e-bcf86d897e9d", "name": "AI Agent", "type": "@n8n/n8n-nodes-langchain.agent", "position": [580, 280], "parameters": {"text": "={{ $('When chat message received').item.json.chatInput }}", "options": {"systemMessage": "=You are an intelligent assistant for a clothing store. Your task is to analyze the input text from a chat and determine if the user is looking for a product.\n\nBehavior:\n- If the user is looking for a product the \"search\" field of the following JSON is set to true and you must pass the following JSON as input to the \"personal_shopper\" tool to extract:\n\n```json\n{{ JSON.stringify($json.output) }}\n```\n\n- If the user asks questions related to the store such as address or opening hours, you must use the \"RAG\" tool"}, "promptType": "define"}, "typeVersion": 1.7}]
{"RAG": {"ai_tool": [[{"node": "AI Agent", "type": "ai_tool", "index": 0}]]}, "Calculator": {"ai_tool": [[{"node": "AI Agent", "type": "ai_tool", "index": 0}]]}, "Edit Fields": {"main": [[{"node": "Information Extractor", "type": "main", "index": 0}]]}, "HTTP Request": {"main": [[{"node": "Google Drive2", "type": "main", "index": 0}]]}, "Google Drive1": {"main": [[{"node": "Qdrant Vector Store1", "type": "main", "index": 0}]]}, "Google Drive2": {"main": [[{"node": "Google Drive1", "type": "main", "index": 0}]]}, "Token Splitter1": {"ai_textSplitter": [[{"node": "Default Data Loader2", "type": "ai_textSplitter", "index": 0}]]}, "personal_shopper": {"ai_tool": [[{"node": "AI Agent", "type": "ai_tool", "index": 0}]]}, "Embeddings OpenAI": {"ai_embedding": [[{"node": "Qdrant Vector Store", "type": "ai_embedding", "index": 0}]]}, "OpenAI Chat Model": {"ai_languageModel": [[{"node": "AI Agent", "type": "ai_languageModel", "index": 0}]]}, "Embeddings OpenAI3": {"ai_embedding": [[{"node": "Qdrant Vector Store1", "type": "ai_embedding", "index": 0}]]}, "OpenAI Chat Model1": {"ai_languageModel": [[{"node": "RAG", "type": "ai_languageModel", "index": 0}]]}, "OpenAI Chat Model2": {"ai_languageModel": [[{"node": "Information Extractor", "type": "ai_languageModel", "index": 0}]]}, "Qdrant Vector Store": {"ai_vectorStore": [[{"node": "RAG", "type": "ai_vectorStore", "index": 0}]]}, "Default Data Loader2": {"ai_document": [[{"node": "Qdrant Vector Store1", "type": "ai_document", "index": 0}]]}, "Window Buffer Memory": {"ai_memory": [[{"node": "AI Agent", "type": "ai_memory", "index": 0}]]}, "Information Extractor": {"main": [[{"node": "AI Agent", "type": "main", "index": 0}]]}, "When chat message received": {"main": [[{"node": "Edit Fields", "type": "main", "index": 0}]]}, "When clicking \u2018Test workflow\u2019": {"main": [[{"node": "HTTP Request", "type": "main", "index": 0}]]}}
HR-focused automation pipeline with AI
[{"id": "b1092f93-502c-4af0-962e-2b69311b92a3", "name": "On form submission", "type": "n8n-nodes-base.formTrigger", "position": [-520, -200], "webhookId": "2a87705d-8ba1-41f1-80ef-85f364ce253e", "parameters": {"options": {}, "formTitle": "Send CV", "formFields": {"values": [{"fieldLabel": "Name", "placeholder": "Name", "requiredField": true}, {"fieldType": "email", "fieldLabel": "Email", "placeholder": "Email", "requiredField": true}, {"fieldType": "file", "fieldLabel": "CV", "requiredField": true, "acceptFileTypes": ".pdf"}]}}, "typeVersion": 2.2}, {"id": "77edfe2a-4c6a-48c8-8dc9-b275491be090", "name": "Extract from File", "type": "n8n-nodes-base.extractFromFile", "position": [-160, -200], "parameters": {"options": {}, "operation": "pdf", "binaryPropertyName": "CV"}, "typeVersion": 1}, {"id": "ebf2e194-3515-4c0a-8745-790b63bf336f", "name": "Qualifications", "type": "@n8n/n8n-nodes-langchain.informationExtractor", "position": [160, -100], "parameters": {"text": "={{ $json.text }}", "options": {"systemPromptTemplate": "You are an expert extraction algorithm.\nOnly extract relevant information from the text.\nIf you do not know the value of an attribute asked to extract, you may omit the attribute's value."}, "attributes": {"attributes": [{"name": "Educational qualification", "required": true, "description": "Summary of your academic career. Focus on your high school and university studies. Summarize in 100 words maximum and also include your grade if applicable."}, {"name": "Job History", "required": true, "description": "Work history summary. Focus on your most recent work experiences. Summarize in 100 words maximum"}, {"name": "Skills", "required": true, "description": "Extract the candidate\u2019s technical skills. What software and frameworks they are proficient in. Make a bulleted list."}]}}, "typeVersion": 1}, {"id": "4f40404c-1d47-4bde-9b4b-16367cf11e4f", "name": "Summarization Chain", "type": "@n8n/n8n-nodes-langchain.chainSummarization", "position": [900, -220], "parameters": {"options": {"summarizationMethodAndPrompts": {"values": {"prompt": "=Write a concise summary of the following:\n\nCity: {{ $json.output.city }}\nBirthdate: {{ $json.output.birthdate }}\nEducational qualification: {{ $json.output[\"Educational qualification\"] }}\nJob History: {{ $json.output[\"Job History\"] }}\nSkills: {{ $json.output.Skills }}\n\nUse 100 words or less. Be concise and conversational.", "combineMapPrompt": "=Write a concise summary of the following:\n\nCity: {{ $json.output.city }}\nBirthdate: {{ $json.output.birthdate }}\nEducational qualification: {{ $json.output[\"Educational qualification\"] }}\nJob History: {{ $json.output[\"Job History\"] }}\nSkills: {{ $json.output.Skills }}\n\nUse 100 words or less. Be concise and conversational."}}}}, "typeVersion": 2}, {"id": "9f9c5f16-1dc2-4928-aef8-284daeb6be51", "name": "Merge", "type": "n8n-nodes-base.merge", "position": [660, -220], "parameters": {"mode": "combine", "options": {}, "combineBy": "combineAll"}, "typeVersion": 3}, {"id": "51bd14cc-2c54-4f72-b162-255f7e277aff", "name": "Profile Wanted", "type": "n8n-nodes-base.set", "position": [1300, -220], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "a3d049b0-5a70-4e7b-a6f2-81447da5282a", "name": "profile_wanted", "type": "string", "value": "We are a web agency and we are looking for a full-stack web developer who knows how to use PHP, Python and Javascript. He has experience in the sector and lives in Northern Italy."}]}}, "typeVersion": 3.4}, {"id": "4a120e5d-b849-4a29-b7f3-12c653552367", "name": "Google Sheets", "type": "n8n-nodes-base.googleSheets", "position": [1960, -220], "parameters": {"columns": {"value": {"CITY": "={{ $('Merge').item.json.output.city }}", "DATA": "={{ $now.format('dd/LL/yyyy') }}", "NAME": "={{ $('On form submission').item.json.Nome }}", "VOTE": "={{ $json.output.vote }}", "EMAIL": "={{ $('On form submission').item.json.Email }}", "SKILLS": "={{ $('Merge').item.json.output.Skills }}", "TELEFONO": "={{ $('Merge').item.json.output.telephone }}", "SUMMARIZE": "={{ $('Summarization Chain').item.json.response.text }}", "EDUCATIONAL": "={{ $('Merge').item.json.output[\"Educational qualification\"] }}", "JOB HISTORY": "={{ $('Merge').item.json.output[\"Job History\"] }}", "DATA NASCITA": "={{ $('Merge').item.json.output.birthdate }}", "CONSIDERATION": "={{ $json.output.consideration }}"}, "schema": [{"id": "DATA", "type": "string", "display": true, "required": false, "displayName": "DATA", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "NAME", "type": "string", "display": true, "required": false, "displayName": "NAME", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "PHONE", "type": "string", "display": true, "removed": false, "required": false, "displayName": "PHONE", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "CITY", "type": "string", "display": true, "required": false, "displayName": "CITY", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "EMAIL", "type": "string", "display": true, "required": false, "displayName": "EMAIL", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "DATA NASCITA", "type": "string", "display": true, "required": false, "displayName": "DATA NASCITA", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "EDUCATIONAL", "type": "string", "display": true, "required": false, "displayName": "EDUCATIONAL", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "JOB HISTORY", "type": "string", "display": true, "required": false, "displayName": "JOB HISTORY", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "SKILLS", "type": "string", "display": true, "required": false, "displayName": "SKILLS", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "SUMMARIZE", "type": "string", "display": true, "required": false, "displayName": "SUMMARIZE", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "VOTE", "type": "string", "display": true, "removed": false, "required": false, "displayName": "VOTE", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "CONSIDERATION", "type": "string", "display": true, "required": false, "displayName": "CONSIDERATION", "defaultMatch": false, "canBeUsedToMatch": true}], "mappingMode": "defineBelow", "matchingColumns": [], "attemptToConvertTypes": false, "convertFieldsToString": false}, "options": {}, "operation": "append", "sheetName": {"__rl": true, "mode": "list", "value": "gid=0", "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1ssz5RvN1Hr20Q31pnYnbjCLu1MGBvoLttBAjXunMRQE/edit#gid=0", "cachedResultName": "Foglio1"}, "documentId": {"__rl": true, "mode": "list", "value": "1ssz5RvN1Hr20Q31pnYnbjCLu1MGBvoLttBAjXunMRQE", "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1ssz5RvN1Hr20Q31pnYnbjCLu1MGBvoLttBAjXunMRQE/edit?usp=drivesdk", "cachedResultName": "Ricerca WebDev"}}, "credentials": {"googleSheetsOAuth2Api": {"id": "JYR6a64Qecd6t8Hb", "name": "Google Sheets account"}}, "typeVersion": 4.5}, {"id": "a154d8a5-9f85-45bb-b082-f702c13c3507", "name": "Structured Output Parser", "type": "@n8n/n8n-nodes-langchain.outputParserStructured", "position": [1720, -20], "parameters": {"schemaType": "manual", "inputSchema": "{\n\t\"type\": \"object\",\n\t\"properties\": {\n\t\t\"vote\": {\n\t\t\t\"type\": \"string\"\n\t\t},\n\t\t\"consideration\": {\n\t\t\t\"type\": \"string\"\n\t\t}\n\t}\n}"}, "typeVersion": 1.2}, {"id": "037ac851-7885-4b78-ac75-dfa0ebb6003d", "name": "HR Expert", "type": "@n8n/n8n-nodes-langchain.chainLlm", "position": [1560, -220], "parameters": {"text": "=Profilo ricercato:\n{{ $json.profile_wanted }}\n\nCandidato:\n{{ $('Summarization Chain').item.json.response.text }}", "messages": {"messageValues": [{"message": "Sei un esperto HR e devi capire se il candidato \u00e8 in linea con il profilo ricercato dall'azienda.\n\nDevi dare un voto da 1 a 10 dove 1 significa che il candidato non \u00e8 in linea con quanto richiesto mentre 10 significa che \u00e8 il candidato ideale perch\u00e8 rispecchia in toto il profilo cercato.\n\nInoltre nel campo \"consideration\" motiva il perch\u00e8 hai dato quel voto. "}]}, "promptType": "define", "hasOutputParser": true}, "typeVersion": 1.5}, {"id": "ed5744c4-df06-4a01-a103-af4dd470d482", "name": "Personal Data", "type": "@n8n/n8n-nodes-langchain.informationExtractor", "position": [160, -280], "parameters": {"text": "={{ $json.text }}", "options": {"systemPromptTemplate": "You are an expert extraction algorithm.\nOnly extract relevant information from the text.\nIf you do not know the value of an attribute asked to extract, you may omit the attribute's value."}, "schemaType": "manual", "inputSchema": "{\n\t\"type\": \"object\",\n\t\"properties\": {\n\t\t\"telephone\": {\n\t\t\t\"type\": \"string\"\n\t\t},\n \"city\": {\n\t\t\t\"type\": \"string\"\n\t\t},\n \"birthdate\": {\n\t\t\t\"type\": \"string\"\n\t\t}\n\t}\n}"}, "typeVersion": 1}, {"id": "181c1249-b05c-4c35-8cac-5f9738cc1fe6", "name": "Upload CV", "type": "n8n-nodes-base.googleDrive", "position": [-160, -380], "parameters": {"name": "=CV-{{ $now.format('yyyyLLdd') }}-{{ $json.CV[0].filename }}", "driveId": {"__rl": true, "mode": "list", "value": "My Drive"}, "options": {}, "folderId": {"__rl": true, "mode": "list", "value": "1tzeSpx4D3EAGXa3Wg-gqGbdaUk6LIZTV", "cachedResultUrl": "https://drive.google.com/drive/folders/1tzeSpx4D3EAGXa3Wg-gqGbdaUk6LIZTV", "cachedResultName": "CV"}, "inputDataFieldName": "CV"}, "credentials": {"googleDriveOAuth2Api": {"id": "HEy5EuZkgPZVEa9w", "name": "Google Drive account"}}, "typeVersion": 3}, {"id": "d31ee1c4-e4be-41d9-8f36-e6fb797ced8e", "name": "OpenAI", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [920, 240], "parameters": {"model": {"__rl": true, "mode": "list", "value": "gpt-4o-mini"}, "options": {}}, "credentials": {"openAiApi": {"id": "CDX6QM4gLYanh0P4", "name": "OpenAi account"}}, "typeVersion": 1.2}, {"id": "0290cb72-a581-4aff-8b5d-1aa63e0a630f", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [-560, -680], "parameters": {"color": 3, "width": 540, "content": "## HR Expert \nThis workflow automates the process of handling job applications by extracting relevant information from submitted CVs, analyzing the candidate's qualifications against a predefined profile, and storing the results in a Google Sheet"}, "typeVersion": 1}, {"id": "361084ff-9735-4a56-8988-be573391838b", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [-240, -460], "parameters": {"width": 300, "height": 420, "content": "The CV is uploaded to Google Drive and converted so that it can be processed\n"}, "typeVersion": 1}, {"id": "4b6f004f-c77b-4522-99d4-737a68f6cfac", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [120, -380], "parameters": {"width": 360, "height": 440, "content": "The essential information for evaluating the candidate is collected in two different chains"}, "typeVersion": 1}, {"id": "73e11af9-65e3-4fcd-bb99-8a3f212ce9fb", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [860, -300], "parameters": {"width": 320, "height": 240, "content": "Summary of relevant information useful for classifying the candidate"}, "typeVersion": 1}, {"id": "606711d1-8e6d-44b3-91ac-c047d8a4054f", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [1240, -300], "parameters": {"width": 220, "height": 240, "content": "Characteristics of the profile sought by the company that intends to hire the candidate"}, "typeVersion": 1}, {"id": "89c3210c-c599-41dc-97a3-bf8df2beb751", "name": "Sticky Note5", "type": "n8n-nodes-base.stickyNote", "position": [1500, -300], "parameters": {"width": 360, "height": 240, "content": "Candidate evaluation with vote and considerations of the HR agent relating the profile sought with the candidate's skills"}, "typeVersion": 1}]
{"Merge": {"main": [[{"node": "Summarization Chain", "type": "main", "index": 0}]]}, "OpenAI": {"ai_languageModel": [[{"node": "Qualifications", "type": "ai_languageModel", "index": 0}, {"node": "Summarization Chain", "type": "ai_languageModel", "index": 0}, {"node": "HR Expert", "type": "ai_languageModel", "index": 0}, {"node": "Personal Data", "type": "ai_languageModel", "index": 0}]]}, "HR Expert": {"main": [[{"node": "Google Sheets", "type": "main", "index": 0}]]}, "Upload CV": {"main": [[]]}, "Personal Data": {"main": [[{"node": "Merge", "type": "main", "index": 0}]]}, "Profile Wanted": {"main": [[{"node": "HR Expert", "type": "main", "index": 0}]]}, "Qualifications": {"main": [[{"node": "Merge", "type": "main", "index": 1}]]}, "Extract from File": {"main": [[{"node": "Qualifications", "type": "main", "index": 0}, {"node": "Personal Data", "type": "main", "index": 0}]]}, "On form submission": {"main": [[{"node": "Extract from File", "type": "main", "index": 0}, {"node": "Upload CV", "type": "main", "index": 0}]]}, "Summarization Chain": {"main": [[{"node": "Profile Wanted", "type": "main", "index": 0}]]}, "Structured Output Parser": {"ai_outputParser": [[{"node": "HR Expert", "type": "ai_outputParser", "index": 0}]]}}
GoogleSlides:Presentation:create get getSlides replaceText:Page:get getThumbnail
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "280bf9cc-7749-4adb-972f-17c43e386aa9"}, {"parameters": {"authentication": "serviceAccount", "title": "=Slides{{(new Date()).toUTCString()}}"}, "name": "Google Slides", "type": "n8n-nodes-base.googleSlides", "typeVersion": 1, "position": [480, 220], "credentials": {"googleApi": {"id": "196", "name": "Google API creds"}}, "id": "4c2f181a-17c4-41d9-aef1-05c8e0641974"}, {"parameters": {"authentication": "serviceAccount", "operation": "get", "presentationId": "={{$node[\"Google Slides\"].json[\"presentationId\"]}}"}, "name": "Google Slides1", "type": "n8n-nodes-base.googleSlides", "typeVersion": 1, "position": [640, 220], "credentials": {"googleApi": {"id": "196", "name": "Google API creds"}}, "id": "1b3d04df-4bab-4b44-b1c3-1ed81e90c7f0"}, {"parameters": {"authentication": "serviceAccount", "operation": "getSlides", "presentationId": "={{$node[\"Google Slides\"].json[\"presentationId\"]}}"}, "name": "Google Slides2", "type": "n8n-nodes-base.googleSlides", "typeVersion": 1, "position": [800, 220], "credentials": {"googleApi": {"id": "196", "name": "Google API creds"}}, "id": "65882408-7d0c-4869-aa45-d454cc9e3c3f"}, {"parameters": {"authentication": "serviceAccount", "operation": "replaceText", "presentationId": "=1y7glcx_2V4LQoSWXTkBbn-kWRLBEAsn7I27B6RQ3cdo", "textUi": {"textValues": [{"pageObjectIds": ["p"], "replaceText": "n8n", "text": "Title"}]}, "options": {"revisionId": ""}}, "name": "Google Slides3", "type": "n8n-nodes-base.googleSlides", "typeVersion": 1, "position": [500, 50], "credentials": {"googleApi": {"id": "196", "name": "Google API creds"}}, "id": "81aa81ed-04d3-4204-a583-9b31fda35266"}, {"parameters": {"authentication": "serviceAccount", "resource": "page", "operation": "getThumbnail", "presentationId": "={{$node[\"Google Slides\"].json[\"presentationId\"]}}", "pageObjectId": "p", "download": true}, "name": "Google Slides4", "type": "n8n-nodes-base.googleSlides", "typeVersion": 1, "position": [640, 390], "credentials": {"googleApi": {"id": "196", "name": "Google API creds"}}, "id": "4b42479d-07ed-49ce-9bf6-4c13e7541d89"}, {"parameters": {"authentication": "serviceAccount", "resource": "page", "presentationId": "={{$node[\"Google Slides\"].json[\"presentationId\"]}}", "pageObjectId": "p"}, "name": "Google Slides5", "type": "n8n-nodes-base.googleSlides", "typeVersion": 1, "position": [800, 390], "credentials": {"googleApi": {"id": "196", "name": "Google API creds"}}, "id": "4525257c-52bd-4520-87eb-b7327b01bccb"}, {"parameters": {"authentication": "serviceAccount", "operation": "replaceText", "presentationId": "=1y7glcx_2V4LQoSWXTkBbn-kWRLBEAsn7I27B6RQ3cdo", "textUi": {"textValues": [{"pageObjectIds": ["p"], "replaceText": "Title", "text": "n8n"}]}, "options": {"revisionId": ""}}, "name": "Google Slides6", "type": "n8n-nodes-base.googleSlides", "typeVersion": 1, "position": [650, 50], "credentials": {"googleApi": {"id": "196", "name": "Google API creds"}}, "id": "11ef0bd7-e0bf-4779-b21e-4a9f81327119"}]
{"Google Slides": {"main": [[{"node": "Google Slides1", "type": "main", "index": 0}, {"node": "Google Slides4", "type": "main", "index": 0}]]}, "Google Slides1": {"main": [[{"node": "Google Slides2", "type": "main", "index": 0}]]}, "Google Slides2": {"main": [[]]}, "Google Slides4": {"main": [[{"node": "Google Slides5", "type": "main", "index": 0}]]}, "Start": {"main": [[{"node": "Google Slides", "type": "main", "index": 0}, {"node": "Google Slides3", "type": "main", "index": 0}]]}, "Google Slides3": {"main": [[{"node": "Google Slides6", "type": "main", "index": 0}]]}}
Angie, Personal AI Assistant with Telegram Voice and Text
[{"id": "c70236ea-91ab-4e47-b6f6-63a70ede5d3c", "name": "Google Calendar", "type": "n8n-nodes-base.googleCalendarTool", "position": [1000, 680], "parameters": {"options": {"fields": "=items(summary, start(dateTime))", "timeMin": "={{$fromAI(\"date\",\"the date after which to fetch the messages in format YYYY-MM-DDTHH:MM:SS\")}}"}, "calendar": {"__rl": true, "mode": "list", "value": "derekcheungsa@gmail.com", "cachedResultName": "derekcheungsa@gmail.com"}, "operation": "getAll"}, "credentials": {"googleCalendarOAuth2Api": {"id": "qx8JdPX4I5Xk9c46", "name": "Google Calendar account"}}, "typeVersion": 1.1}, {"id": "d2287bea-de47-4180-8ee6-55d4ab1a89da", "name": "Window Buffer Memory", "type": "@n8n/n8n-nodes-langchain.memoryBufferWindow", "position": [760, 680], "parameters": {"sessionKey": "={{ $('Listen for incoming events').first().json.message.from.id }}", "sessionIdType": "customKey"}, "typeVersion": 1.2}, {"id": "fa955731-86f6-4e4d-8604-dab5f52dee87", "name": "Get Email", "type": "n8n-nodes-base.gmailTool", "position": [880, 680], "parameters": {"filters": {"labelIds": ["INBOX", "UNREAD"], "readStatus": "unread", "receivedAfter": "={{$fromAI(\"date\",\"the date after which to fetch the messages in format YYYY-MM-DDTHH:MM:SS\")}}"}, "operation": "getAll"}, "credentials": {"gmailOAuth2": {"id": "tojOpzEqFprdxS46", "name": "Gmail account"}}, "typeVersion": 2.1}, {"id": "46511f47-1687-4cbe-ae41-ceb205ed1f11", "name": "OpenAI Chat Model", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [640, 680], "parameters": {"model": "gpt-4o-mini", "options": {}}, "credentials": {"openAiApi": {"id": "5oYe8Cxj7liOPAKk", "name": "Derek T"}}, "typeVersion": 1}, {"id": "64fe44db-af19-43eb-9ff1-de0a72a9e645", "name": "Listen for incoming events", "type": "n8n-nodes-base.telegramTrigger", "position": [-160, 360], "webhookId": "322dce18-f93e-4f86-b9b1-3305519b7834", "parameters": {"updates": ["message"], "additionalFields": {}}, "credentials": {"telegramApi": {"id": "Ov00cT0t4h4AFtZ0", "name": "Telegram account"}}, "typeVersion": 1}, {"id": "e35c04ff-a050-4564-8c1b-5b22b556872f", "name": "Telegram", "type": "n8n-nodes-base.telegram", "onError": "continueErrorOutput", "position": [1280, 360], "parameters": {"text": "={{ $json.output }}", "chatId": "={{ $('Listen for incoming events').first().json.message.from.id }}", "additionalFields": {"parse_mode": "Markdown", "appendAttribution": false}}, "credentials": {"telegramApi": {"id": "Ov00cT0t4h4AFtZ0", "name": "Telegram account"}}, "typeVersion": 1.1}, {"id": "e791d4f8-2c19-4c14-a71e-39a04f22e944", "name": "If", "type": "n8n-nodes-base.if", "position": [200, 360], "parameters": {"options": {}, "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "a0bf9719-4272-46f6-ab3b-eda6f7b44fd8", "operator": {"type": "string", "operation": "empty", "singleValue": true}, "leftValue": "={{ $json.message.text }}", "rightValue": ""}]}}, "typeVersion": 2.2}, {"id": "5bd1788a-3d08-4eb3-8e03-3ce82f44d2a7", "name": "Speech to Text", "type": "@n8n/n8n-nodes-langchain.openAi", "position": [620, 360], "parameters": {"options": {}, "resource": "audio", "operation": "transcribe"}, "credentials": {"openAiApi": {"id": "5oYe8Cxj7liOPAKk", "name": "Derek T"}}, "typeVersion": 1.3}, {"id": "b67a2a93-517b-469e-aaa4-32c422710743", "name": "Voice or Text", "type": "n8n-nodes-base.set", "position": [40, 360], "parameters": {"fields": {"values": [{"name": "text", "stringValue": "={{ $json?.message?.text || \"\" }}"}]}, "options": {}}, "typeVersion": 3.2}, {"id": "8105c39f-9e87-44c4-9215-b3777f0b4164", "name": "Get Voice File", "type": "n8n-nodes-base.telegram", "position": [380, 360], "parameters": {"fileId": "={{ $('Listen for incoming events').item.json.message.voice.file_id }}", "resource": "file"}, "credentials": {"telegramApi": {"id": "Ov00cT0t4h4AFtZ0", "name": "Telegram account"}}, "typeVersion": 1.1}, {"id": "759b975f-d17c-4386-a5b3-12413f0361f4", "name": "Angie, AI Assistant \ud83d\udc69\ud83c\udffb\u200d\ud83c\udfeb", "type": "@n8n/n8n-nodes-langchain.agent", "position": [780, 360], "parameters": {"text": "={{ $json.text }}", "options": {"systemMessage": "=You are a helpful assistant.\n\nToday's date is {{ $now }}.\n\nGuidelines:\n- When fetching emails, filter out any promotional emails. \n- When summarizing emails, include Sender, Message date, subject, and brief summary of email.\n- if the user did not specify a date in the request assume they are asking for today\n- Use baserow tool to answer questions about tasks\n- When answering questions about calendar events, filter out events that don't apply to the question. For example, the question is about events for today, only reply with events for today. Don't mention future events if it's more than 1 week away"}, "promptType": "define"}, "typeVersion": 1.6}, {"id": "5537c777-f003-4673-b48a-4993a0c10520", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [20, 260], "parameters": {"color": 5, "width": 496.25, "height": 278.75, "content": "## Process Telegram Request\n"}, "typeVersion": 1}, {"id": "40e92679-b47a-4213-bb23-3f8d086459f2", "name": "Tasks", "type": "n8n-nodes-base.baserowTool", "position": [1120, 680], "parameters": {"tableId": 372174, "databaseId": 146496, "additionalOptions": {}}, "credentials": {"baserowApi": {"id": "jsgACn0VxAPoD0E2", "name": "Baserow account"}}, "typeVersion": 1}, {"id": "570a0647-b571-4ebc-9dfe-40244b5a0b2a", "name": "Contacts", "type": "n8n-nodes-base.baserowTool", "position": [1240, 680], "parameters": {"tableId": 372177, "databaseId": 146496, "descriptionType": "manual", "toolDescription": "Useful for getting contact information. For example emails or phone numbers.", "additionalOptions": {}}, "credentials": {"baserowApi": {"id": "jsgACn0VxAPoD0E2", "name": "Baserow account"}}, "typeVersion": 1}, {"id": "7fb1d95a-a8d6-4040-9271-5197296be7da", "name": "Sticky Note5", "type": "n8n-nodes-base.stickyNote", "position": [-620, 220], "parameters": {"color": 5, "width": 386.9292441979969, "height": 389.78268107403096, "content": "## Start here: Step-by Step Youtube Tutorial :star:\n\n[![Building an AI Personal Assistant](https://img.youtube.com/vi/pXjowPc6V2s/sddefault.jpg)](https://youtu.be/pXjowPc6V2s)\n"}, "typeVersion": 1}]
{"If": {"main": [[{"node": "Get Voice File", "type": "main", "index": 0}], [{"node": "Angie, AI Assistant \ud83d\udc69\ud83c\udffb\u200d\ud83c\udfeb", "type": "main", "index": 0}]]}, "Tasks": {"ai_tool": [[{"node": "Angie, AI Assistant \ud83d\udc69\ud83c\udffb\u200d\ud83c\udfeb", "type": "ai_tool", "index": 0}]]}, "Contacts": {"ai_tool": [[{"node": "Angie, AI Assistant \ud83d\udc69\ud83c\udffb\u200d\ud83c\udfeb", "type": "ai_tool", "index": 0}]]}, "Get Email": {"ai_tool": [[{"node": "Angie, AI Assistant \ud83d\udc69\ud83c\udffb\u200d\ud83c\udfeb", "type": "ai_tool", "index": 0}]]}, "Voice or Text": {"main": [[{"node": "If", "type": "main", "index": 0}]]}, "Get Voice File": {"main": [[{"node": "Speech to Text", "type": "main", "index": 0}]]}, "Speech to Text": {"main": [[{"node": "Angie, AI Assistant \ud83d\udc69\ud83c\udffb\u200d\ud83c\udfeb", "type": "main", "index": 0}]]}, "Google Calendar": {"ai_tool": [[{"node": "Angie, AI Assistant \ud83d\udc69\ud83c\udffb\u200d\ud83c\udfeb", "type": "ai_tool", "index": 0}]]}, "OpenAI Chat Model": {"ai_languageModel": [[{"node": "Angie, AI Assistant \ud83d\udc69\ud83c\udffb\u200d\ud83c\udfeb", "type": "ai_languageModel", "index": 0}]]}, "Window Buffer Memory": {"ai_memory": [[{"node": "Angie, AI Assistant \ud83d\udc69\ud83c\udffb\u200d\ud83c\udfeb", "type": "ai_memory", "index": 0}]]}, "Listen for incoming events": {"main": [[{"node": "Voice or Text", "type": "main", "index": 0}]]}, "Angie, AI Assistant \ud83d\udc69\ud83c\udffb\u200d\ud83c\udfeb": {"main": [[{"node": "Telegram", "type": "main", "index": 0}]]}}
RSS Feed
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "2abda6cf-70a8-40c3-9446-4f7f8233e54a"}, {"parameters": {"url": "https://www.producthunt.com/feed"}, "name": "RSS Feed Read", "type": "n8n-nodes-base.rssFeedRead", "typeVersion": 1, "position": [450, 300], "id": "46f4bb0e-011d-499c-92bd-7b1e6c814133"}, {"parameters": {"functionCode": "if(items.length !== 50){\n throw new Error('Invalid RSS feed result');\n}else{\nreturn [];\n}\n"}, "name": "Function", "type": "n8n-nodes-base.function", "typeVersion": 1, "position": [650, 300], "notesInFlow": true, "notes": "Throw error if result.length !=50", "id": "f4a98301-2dbe-45b2-ac1d-97df0ac58b94"}]
{"Start": {"main": [[{"node": "RSS Feed Read", "type": "main", "index": 0}]]}, "RSS Feed Read": {"main": [[{"node": "Function", "type": "main", "index": 0}]]}}
TravisCI:Build:trigger getAll get restart cancel
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "efbe46b1-9480-434d-b571-430942f31364"}, {"parameters": {"operation": "getAll", "limit": 1, "additionalFields": {"order": "asc", "sortBy": "id"}}, "name": "TravisCI", "type": "n8n-nodes-base.travisCi", "typeVersion": 1, "position": [750, 300], "credentials": {"travisCiApi": {"id": "102", "name": "Travis API"}}, "id": "d772b5ee-80af-4627-9278-034a1237da92"}, {"parameters": {"operation": "get", "buildId": "={{$node[\"TravisCI\"].json[\"id\"]}}", "additionalFields": {}}, "name": "TravisCI1", "type": "n8n-nodes-base.travisCi", "typeVersion": 1, "position": [900, 300], "credentials": {"travisCiApi": {"id": "102", "name": "Travis API"}}, "id": "df4d7fe1-85f5-4908-a609-faa41a13a9d1"}, {"parameters": {"operation": "trigger", "slug": "nodemationqa/nodeQA", "branch": "master", "additionalFields": {}}, "name": "TravisCI2", "type": "n8n-nodes-base.travisCi", "typeVersion": 1, "position": [450, 300], "credentials": {"travisCiApi": {"id": "102", "name": "Travis API"}}, "id": "04e656d2-ac8b-4b4e-995b-a167be00ddd2"}, {"parameters": {"operation": "restart", "buildId": "={{$node[\"TravisCI\"].json[\"id\"]}}"}, "name": "TravisCI3", "type": "n8n-nodes-base.travisCi", "typeVersion": 1, "position": [1200, 300], "credentials": {"travisCiApi": {"id": "102", "name": "Travis API"}}, "id": "7fbaf00c-202f-4e95-9645-c8690ab5c829"}, {"parameters": {"buildId": "={{$node[\"TravisCI\"].json[\"id\"]}}"}, "name": "TravisCI4", "type": "n8n-nodes-base.travisCi", "typeVersion": 1, "position": [1500, 300], "credentials": {"travisCiApi": {"id": "102", "name": "Travis API"}}, "id": "0e5565a4-d5cd-4471-aa01-740cf2f45e43"}, {"parameters": {"functionCode": "function sleep(milliseconds) {\n return new Promise(\n resolve => setTimeout(resolve, milliseconds)\n );\n}\n\nawait sleep(2000);\n\n// Output data\nreturn items;"}, "name": "Sleep 2 Seconds", "type": "n8n-nodes-base.function", "position": [600, 300], "typeVersion": 1, "id": "b84a023d-475e-42ac-888a-e0c43d13e10e"}, {"parameters": {"functionCode": "function sleep(milliseconds) {\n return new Promise(\n resolve => setTimeout(resolve, milliseconds)\n );\n}\n\nawait sleep(2000);\n\n// Output data\nreturn items;"}, "name": "Sleep 2 Seconds1", "type": "n8n-nodes-base.function", "position": [1050, 300], "typeVersion": 1, "id": "2303fc2b-2701-44b7-98ed-139094b9c457"}, {"parameters": {"functionCode": "function sleep(milliseconds) {\n return new Promise(\n resolve => setTimeout(resolve, milliseconds)\n );\n}\n\nawait sleep(2000);\n\n// Output data\nreturn items;"}, "name": "Sleep 2 Seconds2", "type": "n8n-nodes-base.function", "position": [1350, 300], "typeVersion": 1, "id": "3bdb67df-5473-42f6-aacb-5125ac0483b7"}]
{"Start": {"main": [[{"node": "TravisCI2", "type": "main", "index": 0}]]}, "TravisCI": {"main": [[{"node": "TravisCI1", "type": "main", "index": 0}]]}, "TravisCI2": {"main": [[{"node": "Sleep 2 Seconds", "type": "main", "index": 0}]]}, "Sleep 2 Seconds": {"main": [[{"node": "TravisCI", "type": "main", "index": 0}]]}, "TravisCI1": {"main": [[{"node": "Sleep 2 Seconds1", "type": "main", "index": 0}]]}, "Sleep 2 Seconds1": {"main": [[{"node": "TravisCI3", "type": "main", "index": 0}]]}, "TravisCI3": {"main": [[{"node": "Sleep 2 Seconds2", "type": "main", "index": 0}]]}, "Sleep 2 Seconds2": {"main": [[{"node": "TravisCI4", "type": "main", "index": 0}]]}}
AI Customer feedback sentiment analysis
[{"id": "4ea39a4f-d8c1-438f-9738-bfbb906a3d7a", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [1200, 1020], "parameters": {"width": 253, "height": 342, "content": "## Send customer feedback to OpenAI for sentiment analysis"}, "typeVersion": 1}, {"id": "6962ea41-7d15-4932-919f-21ac94fa1269", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [1960, 1180], "parameters": {"width": 253, "height": 342, "content": "## Add new feedback to google sheets"}, "typeVersion": 1}, {"id": "4c8a8984-2d8e-4139-866b-6f3536aced07", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [800, 1600], "parameters": {"width": 1407, "height": 254, "content": "## Instructions\n1. Connect Google sheets\n2. Connect your OpenAi account (api key + org Id)\n3. Create a customer feedback form, use an existing one or use the one below as example. \nAll set!\n\n\n- Here is the example google sheet being used in this workflow: https://docs.google.com/spreadsheets/d/1omWdRbiT6z6GNZ6JClu9gEsRhPQ6J0EJ2yXyFH9Zng4/edit?usp=sharing. You can download it to your account."}, "typeVersion": 1}, {"id": "d43a9574-626d-4817-87ba-d99bdd6f41dc", "name": "Sticky Note5", "type": "n8n-nodes-base.stickyNote", "position": [800, 1160], "parameters": {"width": 253, "height": 342, "content": "## Feedback form is submitted"}, "typeVersion": 1}, {"id": "76dab2dc-935f-416e-91aa-5a1b7017ec1b", "name": "Sticky Note6", "type": "n8n-nodes-base.stickyNote", "position": [1600, 1180], "parameters": {"width": 253, "height": 342, "content": "## Merge form data and OpenAI result"}, "typeVersion": 1}, {"id": "9772eac1-8df2-4305-9b2c-265d3c5a9a4a", "name": "Add customer feedback to Google Sheets", "type": "n8n-nodes-base.googleSheets", "position": [2020, 1320], "parameters": {"columns": {"value": {"Category": "={{ $json['What is your feedback about?'] }}", "Sentiment": "={{ $json.text }}", "Timestamp": "={{ $json.submittedAt }}", "Entered by": "=Form", "Customer Name": "={{ $json.Name }}", "Customer contact": "={{ $json['How do we get in touch with you?'] }}", "Customer Feedback": "={{ $json['Your feedback'] }}"}, "schema": [{"id": "Timestamp", "type": "string", "display": true, "required": false, "displayName": "Timestamp", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Category", "type": "string", "display": true, "required": false, "displayName": "Category", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Customer Feedback", "type": "string", "display": true, "required": false, "displayName": "Customer Feedback", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Customer Name", "type": "string", "display": true, "required": false, "displayName": "Customer Name", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Customer contact", "type": "string", "display": true, "required": false, "displayName": "Customer contact", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Entered by", "type": "string", "display": true, "required": false, "displayName": "Entered by", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Urgent?", "type": "string", "display": true, "required": false, "displayName": "Urgent?", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Sentiment", "type": "string", "display": true, "required": false, "displayName": "Sentiment", "defaultMatch": false, "canBeUsedToMatch": true}], "mappingMode": "defineBelow", "matchingColumns": []}, "options": {}, "operation": "append", "sheetName": {"__rl": true, "mode": "list", "value": "gid=0", "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1omWdRbiT6z6GNZ6JClu9gEsRhPQ6J0EJ2yXyFH9Zng4/edit#gid=0", "cachedResultName": "Sheet1"}, "documentId": {"__rl": true, "mode": "list", "value": "1omWdRbiT6z6GNZ6JClu9gEsRhPQ6J0EJ2yXyFH9Zng4", "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1omWdRbiT6z6GNZ6JClu9gEsRhPQ6J0EJ2yXyFH9Zng4/edit?usp=drivesdk", "cachedResultName": "CustomerFeedback"}}, "credentials": {"googleSheetsOAuth2Api": {"id": "3", "name": "Google Sheets account"}}, "typeVersion": 4.1}, {"id": "12084971-c81b-4a0e-814e-120867562642", "name": "Merge sentiment with form content", "type": "n8n-nodes-base.merge", "position": [1680, 1320], "parameters": {"mode": "combine", "options": {}, "combinationMode": "multiplex"}, "typeVersion": 2.1}, {"id": "235edf5b-7724-4712-8dc5-d8327a0620b8", "name": "Classify feedback with OpenAI", "type": "n8n-nodes-base.openAi", "position": [1280, 1180], "parameters": {"prompt": "=Classify the sentiment in the following customer feedback: {{ $json['Your feedback'] }}", "options": {}}, "credentials": {"openAiApi": {"id": "s2iucY0IctjYNbrb", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "af4b22aa-0925-40b1-a9ac-298f9745a98e", "name": "Submit form with customer feedback", "type": "n8n-nodes-base.formTrigger", "position": [860, 1340], "webhookId": "e7bf682e-48e8-40de-9815-cd180cdd1480", "parameters": {"options": {"formSubmittedText": "Your response has been recorded"}, "formTitle": "Customer Feedback", "formFields": {"values": [{"fieldLabel": "Name", "requiredField": true}, {"fieldType": "dropdown", "fieldLabel": "What is your feedback about?", "fieldOptions": {"values": [{"option": "Product"}, {"option": "Service"}, {"option": "Other"}]}, "requiredField": true}, {"fieldType": "textarea", "fieldLabel": "Your feedback", "requiredField": true}, {"fieldLabel": "How do we get in touch with you?"}]}, "formDescription": "Please give feedback about our company orproducts."}, "typeVersion": 1}]
{"Classify feedback with OpenAI": {"main": [[{"node": "Merge sentiment with form content", "type": "main", "index": 0}]]}, "Merge sentiment with form content": {"main": [[{"node": "Add customer feedback to Google Sheets", "type": "main", "index": 0}]]}, "Submit form with customer feedback": {"main": [[{"node": "Classify feedback with OpenAI", "type": "main", "index": 0}, {"node": "Merge sentiment with form content", "type": "main", "index": 1}]]}}
Set
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "32be2fcf-b143-442e-877f-96b51b0b5148"}, {"parameters": {"values": {"string": [{"name": "name", "value": "test"}]}, "options": {}}, "name": "Set", "type": "n8n-nodes-base.set", "typeVersion": 1, "position": [430, 300], "id": "17c6fa30-1a0e-4d29-8c73-ef9357d5f877"}, {"parameters": {"functionCode": "testData = JSON.stringify({\n name: \"test\"\n});\n\nif(JSON.stringify($node['Set'].json)!==testData){\n throw new Error('Error in Set node');\n}\nreturn items;"}, "name": "Function", "type": "n8n-nodes-base.function", "typeVersion": 1, "position": [600, 300], "notesInFlow": true, "notes": "Verify the result of set node", "id": "c6e9a289-5551-4db5-8d32-a11953bc92d6"}]
{"Set": {"main": [[{"node": "Function", "type": "main", "index": 0}]]}, "Start": {"main": [[{"node": "Set", "type": "main", "index": 0}]]}}
Orbit:Member:upsert get update delete getAll lookup:Note:create update getAll:Activity:create getAll:Post:create getAll delete
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [410, 200], "id": "39ef826b-4c37-4617-aacb-e2d276721e1f"}, {"parameters": {"operation": "upsert", "workspaceId": "543", "identityUi": {"identityValue": {"source": "email", "email": "={{$node[\"Set\"].json[\"email\"]}}"}}, "additionalFields": {"name": "=Name{{Date.now()}}"}}, "name": "Orbit", "type": "n8n-nodes-base.orbit", "typeVersion": 1, "position": [750, 200], "credentials": {"orbitApi": {"id": "112", "name": "Orbit API creds"}}, "id": "b36edb18-df88-418c-8a9d-22d43bb6aa89"}, {"parameters": {"workspaceId": "543", "memberId": "={{$node[\"Orbit\"].json[\"id\"]}}"}, "name": "Orbit1", "type": "n8n-nodes-base.orbit", "typeVersion": 1, "position": [900, 200], "credentials": {"orbitApi": {"id": "112", "name": "Orbit API creds"}}, "id": "c48b87cd-09dd-414e-ae47-668b6379685e"}, {"parameters": {"operation": "getAll", "workspaceId": "543", "limit": 1, "options": {}}, "name": "Orbit2", "type": "n8n-nodes-base.orbit", "typeVersion": 1, "position": [600, 500], "credentials": {"orbitApi": {"id": "112", "name": "Orbit API creds"}}, "id": "0de00f28-5062-4deb-98e4-f4adf9ca657e"}, {"parameters": {"operation": "update", "workspaceId": "543", "memberId": "={{$node[\"Orbit\"].json[\"id\"]}}", "updateFields": {"name": "=Updated{{$node[\"Orbit\"].json[\"attributes\"][\"name\"]}}"}}, "name": "Orbit3", "type": "n8n-nodes-base.orbit", "typeVersion": 1, "position": [1050, 200], "credentials": {"orbitApi": {"id": "112", "name": "Orbit API creds"}}, "id": "83cbc054-9ce4-43db-9b43-6f610596069b"}, {"parameters": {"operation": "lookup", "workspaceId": "543", "source": "github", "searchBy": "username", "username": "={{$node[\"Orbit2\"].json[\"attributes\"][\"github\"]}}"}, "name": "Orbit4", "type": "n8n-nodes-base.orbit", "typeVersion": 1, "position": [750, 500], "credentials": {"orbitApi": {"id": "112", "name": "Orbit API creds"}}, "id": "599f8644-eed0-414a-82cb-cccc327a2e13"}, {"parameters": {"operation": "delete", "workspaceId": "543", "memberId": "={{$node[\"Orbit\"].json[\"id\"]}}"}, "name": "Orbit5", "type": "n8n-nodes-base.orbit", "typeVersion": 1, "position": [1200, 200], "credentials": {"orbitApi": {"id": "112", "name": "Orbit API creds"}}, "id": "03d30c2f-044c-4cf6-9d9c-f1cf39027dab"}, {"parameters": {"values": {"string": [{"name": "email", "value": "=fake{{Date.now()}}@gmail.com"}]}, "options": {}}, "name": "Set", "type": "n8n-nodes-base.set", "typeVersion": 1, "position": [600, 200], "id": "9131159f-68a7-4379-945e-2743187ae993"}, {"parameters": {"resource": "activity", "workspaceId": "543", "memberId": "={{$node[\"Orbit\"].json[\"id\"]}}", "title": "=Title{{Date.now()}}", "additionalFields": {}}, "name": "Orbit6", "type": "n8n-nodes-base.orbit", "typeVersion": 1, "position": [900, 350], "credentials": {"orbitApi": {"id": "112", "name": "Orbit API creds"}}, "id": "27ac35b2-64d0-4422-a5a1-dc453af2f01d"}, {"parameters": {"resource": "activity", "operation": "getAll", "workspaceId": "543", "limit": 1, "filters": {}}, "name": "Orbit7", "type": "n8n-nodes-base.orbit", "typeVersion": 1, "position": [1050, 350], "credentials": {"orbitApi": {"id": "112", "name": "Orbit API creds"}}, "id": "8f50074d-e558-4150-bc0c-c0721e071aa0"}, {"parameters": {"resource": "note", "workspaceId": "543", "memberId": "={{$node[\"Orbit\"].json[\"id\"]}}", "note": "=Note{{Date.now()}}"}, "name": "Orbit8", "type": "n8n-nodes-base.orbit", "typeVersion": 1, "position": [900, 50], "credentials": {"orbitApi": {"id": "112", "name": "Orbit API creds"}}, "id": "bba7efcf-70e2-48c3-940f-2233b3ab0f05"}, {"parameters": {"resource": "note", "operation": "update", "workspaceId": "543", "memberId": "={{$node[\"Orbit\"].json[\"id\"]}}", "noteId": "={{$node[\"Orbit8\"].json[\"id\"]}}", "note": "=Updated{{$node[\"Orbit8\"].json[\"attributes\"][\"body\"]}}"}, "name": "Orbit9", "type": "n8n-nodes-base.orbit", "typeVersion": 1, "position": [1050, 50], "credentials": {"orbitApi": {"id": "112", "name": "Orbit API creds"}}, "id": "a5ea5c0a-c939-4017-b355-86be07da2fcf"}, {"parameters": {"resource": "note", "operation": "getAll", "workspaceId": "543", "memberId": "={{$node[\"Orbit\"].json[\"id\"]}}", "limit": 1}, "name": "Orbit10", "type": "n8n-nodes-base.orbit", "typeVersion": 1, "position": [1200, 50], "credentials": {"orbitApi": {"id": "112", "name": "Orbit API creds"}}, "id": "e070222a-741f-4f31-a2cb-47731f3b7f75"}, {"parameters": {"resource": "post", "workspaceId": "543", "memberId": "={{$node[\"Orbit4\"].json[\"id\"]}}", "url": "=https://n8n.io/blog/why-i-chose-n8n-over-zapier-in-2020?test_timestamp={{Date.now()}}", "additionalFields": {}}, "name": "Orbit11", "type": "n8n-nodes-base.orbit", "typeVersion": 1, "position": [900, 500], "credentials": {"orbitApi": {"id": "112", "name": "Orbit API creds"}}, "id": "34567405-fff1-4d1a-b652-0dcd61dedb9a"}, {"parameters": {"resource": "post", "operation": "getAll", "workspaceId": "543", "limit": 1, "filters": {}}, "name": "Orbit12", "type": "n8n-nodes-base.orbit", "typeVersion": 1, "position": [1050, 500], "credentials": {"orbitApi": {"id": "112", "name": "Orbit API creds"}}, "id": "f155c381-f37e-4ec2-876c-8123213fd4ef"}, {"parameters": {"resource": "post", "operation": "delete", "workspaceId": "543", "memberId": "={{$node[\"Orbit4\"].json[\"id\"]}}", "postId": "={{$node[\"Orbit11\"].json[\"id\"]}}"}, "name": "Orbit13", "type": "n8n-nodes-base.orbit", "typeVersion": 1, "position": [1050, 650], "credentials": {"orbitApi": {"id": "112", "name": "Orbit API creds"}}, "id": "f5a44540-6958-4cf0-919d-a4c9b07df59f"}]
{"Orbit": {"main": [[{"node": "Orbit6", "type": "main", "index": 0}, {"node": "Orbit8", "type": "main", "index": 0}, {"node": "Orbit1", "type": "main", "index": 0}]]}, "Orbit1": {"main": [[{"node": "Orbit3", "type": "main", "index": 0}]]}, "Orbit2": {"main": [[{"node": "Orbit4", "type": "main", "index": 0}]]}, "Orbit3": {"main": [[{"node": "Orbit5", "type": "main", "index": 0}]]}, "Start": {"main": [[{"node": "Set", "type": "main", "index": 0}, {"node": "Orbit2", "type": "main", "index": 0}]]}, "Set": {"main": [[{"node": "Orbit", "type": "main", "index": 0}]]}, "Orbit6": {"main": [[{"node": "Orbit7", "type": "main", "index": 0}]]}, "Orbit8": {"main": [[{"node": "Orbit9", "type": "main", "index": 0}]]}, "Orbit9": {"main": [[{"node": "Orbit10", "type": "main", "index": 0}]]}, "Orbit11": {"main": [[{"node": "Orbit12", "type": "main", "index": 0}, {"node": "Orbit13", "type": "main", "index": 0}]]}, "Orbit4": {"main": [[{"node": "Orbit11", "type": "main", "index": 0}]]}}
AI Agent to chat with you Search Console Data, using OpenAI and Postgres
[{"id": "9ee6710b-19b7-4bfd-ac2d-0fe1e2561f1d", "name": "Postgres Chat Memory", "type": "@n8n/n8n-nodes-langchain.memoryPostgresChat", "position": [1796, 220], "parameters": {"tableName": "insights_chat_histories"}, "credentials": {"postgres": {"id": "", "name": "Postgres"}}, "typeVersion": 1.1}, {"id": "eb9f07e9-ded1-485c-9bf3-cf223458384a", "name": "OpenAI Chat Model", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [1356, 240], "parameters": {"model": "gpt-4o", "options": {"maxTokens": 16000}}, "credentials": {"openAiApi": {"id": "", "name": "OpenAi"}}, "typeVersion": 1}, {"id": "1d3d6fb7-a171-4590-be42-df7eb0c208ed", "name": "Set fields", "type": "n8n-nodes-base.set", "position": [940, -20], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "9f47b322-e42f-42d7-93eb-a57d22adb849", "name": "chatInput", "type": "string", "value": "={{ $json.body?.chatInput || $json.chatInput }}"}, {"id": "73ec4dd0-e986-4f60-9dca-6aad2f86bdeb", "name": "sessionId", "type": "string", "value": "={{ $json.body?.sessionId || $json.sessionId }}"}, {"id": "4b688c46-b60f-4f0a-83d8-e283f2d7055c", "name": "date_message", "type": "string", "value": "={{ $now.format('yyyy-MM-dd') }}"}]}}, "typeVersion": 3.4}, {"id": "92dc5e8b-5140-49be-8713-5749b7e2d46b", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [407.32142857142867, -320], "parameters": {"color": 7, "width": 347.9910714285712, "height": 516.8973214285712, "content": "## Webhook - ChatInput\n\nThis webhook serves as the endpoint for receiving `ChatInput` data. Ensure that you include:\n- `chatInput` \u2013 the content you wish to send (\ud83d\ude09)\n- `sessionId` \u2013 a unique identifier for the session\n\nIf you're using an interface such as **Open WebUI**, the `sessionId` will be generated automatically."}, "typeVersion": 1}, {"id": "ca9f3732-9b62-4f44-b970-77d5d470ec76", "name": "Webhook - ChatInput", "type": "n8n-nodes-base.webhook", "position": [500, -20], "webhookId": "a6820b65-76cf-402b-a934-0f836dee6ba0", "parameters": {"path": "a6820b65-76cf-402b-a934-0f836dee6ba0/chat", "options": {}, "httpMethod": "POST", "responseMode": "responseNode", "authentication": "basicAuth"}, "credentials": {"httpBasicAuth": {"id": "", "name": "basic-auth"}}, "typeVersion": 2}, {"id": "9d684873-6dfe-4709-928d-293b187dfb30", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [820, -320], "parameters": {"color": 7, "width": 347.9910714285712, "height": 516.8973214285712, "content": "## Set fields\n\nThis node sets three fields:\n- `chatInput`: retrieved from the previous webhook node\n- `sessionId`: retrieved from the previous webhook node\n- `date_message`: formatted within this node. This will be used later to help the AI agent determine the date range for retrieving Search Console data."}, "typeVersion": 1}, {"id": "8750215a-1e33-4ac8-a6da-95efa8ffed65", "name": "Respond to Webhook", "type": "n8n-nodes-base.respondToWebhook", "position": [2600, -20], "parameters": {"options": {}}, "typeVersion": 1.1}, {"id": "1b879496-5c0f-4bd5-b4cb-18df2662aef2", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [1240, -320], "parameters": {"color": 7, "width": 1154.2857142857138, "height": 516.8973214285712, "content": "## AI Agent - Tools Agent\n\nThis AI Agent is configured with a system prompt that instructs it to:\n- On the first user message, **retrieve available Search Console properties** and offer the user the option to **fetch data from these properties**\n- Based on the user\u2019s natural language input, **construct an API call** to the selected Search Console property and retrieve the requested data\n- Present the data in a **markdown-formatted table**\n\nThe AI Agent has a friendly tone and is designed to **confirm the user\u2019s data requirements accurately** before executing any API requests.\n"}, "typeVersion": 1}, {"id": "c44c6402-9ddd-4a7b-bc5a-b6c3679a3f68", "name": "Call Search Console Tool", "type": "@n8n/n8n-nodes-langchain.toolWorkflow", "position": [2196, 220], "parameters": {"name": "SearchConsoleRequestTool", "workflowId": {"__rl": true, "mode": "list", "value": "PoiRk5w0xd1ysq4U", "cachedResultName": "My workflow 10"}, "description": "Call this tool when you need to get the website_list or custom_insights", "jsonSchemaExample": ""}, "typeVersion": 1.2}, {"id": "b1701a89-c5b3-47fb-99d5-4896a6d5c7a2", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [1234, 220], "parameters": {"color": 6, "width": 328.9664285714292, "height": 468.13107142857154, "content": "\n\n\n\n\n\n\n\n\n\n\n### AI Agent Sub-node - OpenAI Chat Model\n\nThis sub-node utilizes the selected **OpenAI Chat Model**. You can replace it with any LLM that **supports tool calling**.\n\n### \u26a0\ufe0f Choose Your Model\nIn this template, the **default model is `gpt-4o`**, a **costly option**. If you'd like a more **affordable alternative**, select `gpt4-o-mini`, though note that responses may occasionally be of slightly lower quality compared to `gpt-4o`."}, "typeVersion": 1}, {"id": "cd1a7cec-5845-47b1-a2c8-d3b458a02eb0", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [1656, 220], "parameters": {"color": 6, "width": 328.9664285714292, "height": 468.13107142857154, "content": "\n\n\n\n\n\n\n\n\n\n\n### AI Agent Sub-node - Postgres Chat Memory\n\nConnect your **Postgres credentials** and specify a **table name** to store the chat history. In this template, the default table name is `insights_chat_histories`, and the **context window length is set to 5**.\n\n**\ud83d\udc4b Tip:** If you don\u2019t have a Postgres database, you can quickly **set one up with [Supabase](https://supabase.com/)**.\n"}, "typeVersion": 1}, {"id": "290a07d1-c7ed-434d-9851-2a2dcdd35bdf", "name": "Sticky Note6", "type": "n8n-nodes-base.stickyNote", "position": [2076, 220], "parameters": {"color": 6, "width": 328.9664285714292, "height": 468.13107142857154, "content": "\n\n\n\n\n\n\n\n\n\n\n### AI Agent Sub-node - Call Search Console Tool\n\nThis **tool is used by the AI Agent** to:\n- Retrieve the **list of accessible properties in Search Console**\n- **Fetch Search Console data** based on the user\u2019s natural language request\n\n"}, "typeVersion": 1}, {"id": "07805c90-7ba5-44d0-b6eb-5a65efb0f8be", "name": "Sticky Note5", "type": "n8n-nodes-base.stickyNote", "position": [2480, -320], "parameters": {"color": 7, "width": 347.9910714285712, "height": 516.8973214285712, "content": "## Respond to Webhook\n\nThis node is used to send a response back to the user.\n\n**\ud83d\udc4b Tip:** `intermediateSteps` are configured, allowing you to use raw data fetched from Search Console to **create charts or other visualizations** if desired.\n"}, "typeVersion": 1}, {"id": "9a927a40-45e4-4fd5-ab3e-b77578469f82", "name": "Sticky Note7", "type": "n8n-nodes-base.stickyNote", "position": [400, 800], "parameters": {"color": 7, "width": 370.3910714285712, "height": 492.3973214285712, "content": "## Tool Call Trigger\n\nThis **node is triggered when the AI Agent needs to retrieve the `website_list`** (accessible Search Console properties) or **`custom_insights`** based on user data.\n"}, "typeVersion": 1}, {"id": "c54a4653-0f09-46b0-bd20-68919b96e154", "name": "Tool calling", "type": "n8n-nodes-base.executeWorkflowTrigger", "position": [500, 1080], "parameters": {}, "typeVersion": 1}, {"id": "cc7303ee-1afa-4859-83e7-3af0e963a0f1", "name": "Switch", "type": "n8n-nodes-base.switch", "position": [1300, 1080], "parameters": {"rules": {"values": [{"outputKey": "custom_insights", "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "a30fe6a6-7d0a-4f14-8492-ae021ddc8ec6", "operator": {"type": "string", "operation": "contains"}, "leftValue": "={{ $json.request_type }}", "rightValue": "custom_insights"}]}, "renameOutput": true}, {"outputKey": "website_list", "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "1b7d6039-6474-4a73-b157-584743a9d7f0", "operator": {"type": "string", "operation": "contains"}, "leftValue": "={{$json.request_type}}", "rightValue": "website_list"}]}, "renameOutput": true}]}, "options": {}}, "typeVersion": 3.2}, {"id": "6860ff98-4050-4f64-b8c1-a153e3388df0", "name": "Set fields - Consruct API CALL", "type": "n8n-nodes-base.set", "position": [920, 1080], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "06373437-8288-4171-9f98-e8a417220dd4", "name": "request_type", "type": "string", "value": "={{ $json.query.parseJson().request_type }}"}, {"id": "da45c0c5-05f6-4107-81aa-8c08c972d9bf", "name": "start_date", "type": "string", "value": "={{ $json.query.parseJson().startDate }}"}, {"id": "59d55034-c612-43d7-9700-4cacdb630ec2", "name": "end_date", "type": "string", "value": "={{ $json.query.parseJson().endDate }}"}, {"id": "4c2478c0-7f96-4d3d-a632-089307dc989e", "name": "dimensions", "type": "string", "value": "={{ $json.query.parseJson().dimensions }}"}, {"id": "eceefbf9-44e5-4617-96ea-58aca2a29618", "name": "rowLimit", "type": "number", "value": "={{ $json.query.parseJson().rowLimit }}"}, {"id": "4e18386e-8548-4385-b620-43efbb11cd63", "name": "startRow", "type": "number", "value": "={{ $json.query.parseJson().startRow}}"}, {"id": "a9323a7b-08b4-4015-b3d7-632bcdf56f4e", "name": "property", "type": "string", "value": "={{ encodeURIComponent($json.query.parseJson().property) }}"}]}}, "typeVersion": 3.4}, {"id": "0a2dfb28-17ee-477f-b9ea-f1d8e05e3745", "name": "Sticky Note8", "type": "n8n-nodes-base.stickyNote", "position": [820, 800], "parameters": {"color": 7, "width": 370.3910714285712, "height": 492.3973214285712, "content": "## Set Fields - Construct API Call\n\nThis node configures fields based on the JSON sent by the AI agent:\n- The `request_type` field determines the route: `website_list` (to retrieve the list of websites) or `custom_insights` (to get insights from Search Console)\n- Additional fields are set to construct the API call, following the **[Search Console API Documentation](https://developers.google.com/webmaster-tools/v1/searchanalytics/query?hl=en)**\n"}, "typeVersion": 1}, {"id": "e6ef5c28-01e4-4a0b-9081-b62ec28be635", "name": "Set fields - Create searchConsoleDataArray", "type": "n8n-nodes-base.set", "position": [2180, 980], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "2cffd36f-72bd-4535-8427-a88028ea0c4c", "name": "searchConsoleData", "type": "array", "value": "={{ $json.rows }}"}]}}, "typeVersion": 3.4}, {"id": "abc80061-a794-4e1d-a055-bd88ea5c93eb", "name": "Set fields - Create searchConsoleDataArray 2", "type": "n8n-nodes-base.set", "position": [2180, 1340], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "2cffd36f-72bd-4535-8427-a88028ea0c4c", "name": "searchConsoleData", "type": "array", "value": "={{ $json.siteEntry }}"}]}}, "typeVersion": 3.4}, {"id": "24981eea-980e-4e07-9036-d0042c5b2fbe", "name": "Search Console - Get Custom Insights", "type": "n8n-nodes-base.httpRequest", "position": [1620, 980], "parameters": {"url": "=https://www.googleapis.com/webmasters/v3/sites/{{ $json.property }}/searchAnalytics/query", "method": "POST", "options": {}, "jsonBody": "={\n \"startDate\": \"{{ $json.start_date }}\",\n \"endDate\": \"{{ $json.end_date }}\",\n \"dimensions\": {{ $json.dimensions }},\n \"rowLimit\": {{ $json.rowLimit }},\n \"startRow\": 0,\n \"dataState\":\"all\"\n}", "sendBody": true, "sendQuery": true, "sendHeaders": true, "specifyBody": "json", "authentication": "genericCredentialType", "genericAuthType": "oAuth2Api", "queryParameters": {"parameters": [{}]}, "headerParameters": {"parameters": [{"name": "Content-Type", "value": "application/json"}]}}, "credentials": {"oAuth2Api": {"id": "", "name": "search-console"}}, "typeVersion": 4.2}, {"id": "645ff407-857d-4629-926b-5cfc52cfa8ba", "name": "Sticky Note9", "type": "n8n-nodes-base.stickyNote", "position": [1520, 800], "parameters": {"color": 7, "width": 370.3910714285712, "height": 364.3185243941325, "content": "## Search Console - Get Custom Insights\n\nThis node **performs the API call to retrieve data from Search Console**.\n"}, "typeVersion": 1}, {"id": "15aa66e2-f288-4c86-8dad-47e22aa9104f", "name": "Sticky Note10", "type": "n8n-nodes-base.stickyNote", "position": [1520, 1180], "parameters": {"color": 7, "width": 370.3910714285712, "height": 334.24982142857124, "content": "## Search Console - Get List of Properties\n\nThis node **performs the API call to retrieve the list of accessible properties from Search Console**.\n"}, "typeVersion": 1}, {"id": "cd804a52-833a-451a-8e0c-f640210ee2c4", "name": "## Search Console - Get List of Properties", "type": "n8n-nodes-base.httpRequest", "position": [1620, 1340], "parameters": {"url": "=https://www.googleapis.com/webmasters/v3/sites", "options": {}, "sendHeaders": true, "authentication": "genericCredentialType", "genericAuthType": "oAuth2Api", "headerParameters": {"parameters": [{"name": "Content-Type", "value": "application/json"}]}}, "credentials": {"oAuth2Api": {"id": "", "name": "search-console"}}, "typeVersion": 4.2}, {"id": "3eac4df1-00ac-4262-b520-3a7e218c7e57", "name": "Sticky Note11", "type": "n8n-nodes-base.stickyNote", "position": [2040, 800], "parameters": {"color": 7, "width": 370.3910714285712, "height": 725.1298214285712, "content": "## Set Fields - Create `searchConsoleDataArray`\n\nThese nodes **create an array based on the response from the Search Console API**.\n"}, "typeVersion": 1}, {"id": "86db5800-a735-4749-a800-63d78908610b", "name": "Sticky Note12", "type": "n8n-nodes-base.stickyNote", "position": [2520, 800], "parameters": {"color": 7, "width": 370.3910714285712, "height": 722.6464176100125, "content": "## Array Aggregation - Response to AI Agent\n\nThese nodes **aggregate the array from the previous** step and send it back to the AI Agent through the field named output as `response`.\n"}, "typeVersion": 1}, {"id": "aefbacc7-8dfc-4655-bc4d-f0498c823711", "name": "Array aggregation - response to AI Agent", "type": "n8n-nodes-base.aggregate", "position": [2640, 980], "parameters": {"options": {}, "aggregate": "aggregateAllItemData", "destinationFieldName": "response"}, "typeVersion": 1}, {"id": "e5334c72-981c-4375-ae8e-9a3a0457880b", "name": "Array aggregation - response to AI Agent1", "type": "n8n-nodes-base.aggregate", "position": [2660, 1340], "parameters": {"options": {}, "aggregate": "aggregateAllItemData", "destinationFieldName": "response"}, "typeVersion": 1}, {"id": "2e93a798-6c26-4d34-a553-ba01b64ca3fe", "name": "Sticky Note13", "type": "n8n-nodes-base.stickyNote", "position": [-398.45627799387194, -320], "parameters": {"width": 735.5589746610085, "height": 1615.4504601771982, "content": "# AI Agent to Chat with Your Search Console Data\n\nThis **AI Agent enables you to interact with your Search Console data** through a **chat interface**. Each node is **documented within the template**, providing sufficient information for setup and usage. You will also need to **configure Search Console OAuth credentials**.\n\nFollow this **[n8n documentation](https://docs.n8n.io/integrations/builtin/credentials/google/oauth-generic/#configure-your-oauth-consent-screen)** to set up the OAuth credentials.\n\n## Important Notes\n\n### Correctly Configure Scopes for Search Console API Calls\n- It\u2019s essential to **configure the scopes correctly** in your Google Search Console API OAuth2 credentials. Incorrect **configuration can cause issues with the refresh token**, requiring frequent reconnections. Below is the configuration I use to **avoid constant re-authentication**:\n![Search Console API oAuth2 config 1](https://i.imgur.com/vVLM7gG.png)\n![Search Console API oAuth2 config 2](https://i.imgur.com/naT1NaX.png)\n\nOf course, you'll need to add your **client_id** and **client_secret** from the **Google Cloud Platform app** you created to access your Search Console data.\n\n### Configure Authentication for the Webhook\n\nSince the **webhook will be publicly accessible**, don\u2019t forget to **set up authentication**. I\u2019ve used **Basic Auth**, but feel free to **choose the method that best meets your security requirements**.\n\n## \ud83e\udd29\ud83d\udc96 Example of awesome things you can do with this AI Agent\n![Example of chat with this AI Agent](https://i.imgur.com/jbfsYvT.png)\n\n\n"}, "typeVersion": 1}, {"id": "fa630aa9-3c60-4b27-9477-aaeb79c7f37d", "name": "AI Agent", "type": "@n8n/n8n-nodes-langchain.agent", "position": [1676, -20], "parameters": {"text": "=user_message : {{ $json.chatInput }}\ndate_message : {{ $json.date_message }}", "options": {"systemMessage": "=Assist users by asking natural, conversational questions to understand their data needs and building a custom JSON API request to retrieve Search Console data. Handle assumptions internally, confirming them with the user in a friendly way. Avoid technical jargon and never imply that the user is directly building an API request.\n\nPre-Step: Retrieve the Website List\nImportant: Initial Action: Before sending your first message to the user, retrieve the list of connected Search Console properties.\n\nTool Call for Website List:\n\nTool name: SearchConsoleRequestTool\nRequest:\n{\n \"request_type\": \"website_list\" // Always include `request_type` in the API call.\n}\nUsage: Use this list to personalize your response in the initial interaction.\nStep-by-Step Guide\nStep 1: Initial Interaction and Introduction\nGreeting:\n\n\"Hi there! I\u2019m here to help you gain valuable insights from your Search Console data. Whether you're interested in a specific time frame, performance breakdown by pages, queries, or other dimensions, I've got you covered.\n\nI can help you retrieve data for these websites:\n\nhttps://example1.com\nhttps://example2.com\nhttps://example3.com\nWhich of these properties would you like to analyze?\"\nStep 2: Handling User Response for Property Selection\nAction: When the user selects a property, use the property URL exactly as listed (e.g., \"https://example.com\") when constructing the API call.\n\nStep 3: Understanding the User's Needs\nAcknowledgment and Setting Defaults:\n\nIf the user expresses a general need (e.g., \"I want the last 3 months of page performance\"), acknowledge their request and set reasonable defaults.\n\nExample Response:\n\n\"Great! I'll gather the top 300 queries from the last 3 months for https://example.com. If you'd like more details or adjustments, just let me know.\"\n\nFollow-up Questions:\n\nConfirming Dimensions: If the user doesn\u2019t specify dimensions, ask:\n\n\"For this analysis, I\u2019ll look at page performance. Does that sound good, or would you like to include other details like queries, devices, or other dimensions?\"\n\nNumber of Results: If the user hasn\u2019t specified the number of results, confirm:\n\n\"I can show you the top 100 results. Let me know if you'd like more or fewer!\"\n\nStep 4: Gathering Specific Inputs (If Necessary)\nAction: If the user provides specific needs, capture and confirm them naturally.\n\nExample Response:\n\n\"Perfect, I\u2019ll pull the data for [specified date range], focusing on [specified dimensions]. Anything else you\u2019d like me to include?\"\n\nImplicit Defaults:\n\nDate Range: Assume \"last 3 months\" if not specified.\nRow Limit: Default to 100, adjustable based on user input.\nStep 5: Confirming Input with the User\nAction: Summarize the request to ensure accuracy.\n\nExample Response:\n\n\"Here\u2019s what I\u2019m preparing: data for https://example.com, covering the last 3 months, focusing on the top 100 queries. Let me know if you\u2019d like to adjust anything!\"\n\nStep 6: Constructing the JSON for Custom Insights\nAction: Build the API call based on the conversation.\n\n{\n \"property\": \"<USER_PROVIDED_PROPERTY_URL>\", // Use the exact property URL.\n \"request_type\": \"custom_insights\",\n \"startDate\": \"<ASSUMED_OR_USER_SPECIFIED_START_DATE>\",\n \"endDate\": \"<ASSUMED_OR_USER_SPECIFIED_END_DATE>\",\n \"dimensions\": [\"<IMPLIED_OR_USER_SPECIFIED_DIMENSIONS>\"], // Array of one or more: \"page\", \"query\", \"searchAppearance\", \"device\", \"country\"\n \"rowLimit\": 300 // Default or user-specified limit.\n}\nStep 7: Presenting the Data\nWhen Retrieving Custom Insights:\n\nImportant: Display all retrieved data in an easy-to-read markdown table format.\nStep 8: Error Handling\nAction: Provide clear, user-friendly error messages when necessary.\n\nExample Response:\n\n\"Hmm, there seems to be an issue retrieving the data. Let\u2019s review what we have or try a different approach.\"\n\nAdditional Notes\nProactive Assistance: Offer suggestions based on user interactions, such as adding dimensions or refining details.\nTone: Maintain a friendly and helpful demeanor throughout the conversation.", "returnIntermediateSteps": true}, "promptType": "define"}, "typeVersion": 1.6}]
{"Switch": {"main": [[{"node": "Search Console - Get Custom Insights", "type": "main", "index": 0}], [{"node": "## Search Console - Get List of Properties", "type": "main", "index": 0}]]}, "AI Agent": {"main": [[{"node": "Respond to Webhook", "type": "main", "index": 0}]]}, "Set fields": {"main": [[{"node": "AI Agent", "type": "main", "index": 0}]]}, "Tool calling": {"main": [[{"node": "Set fields - Consruct API CALL", "type": "main", "index": 0}]]}, "OpenAI Chat Model": {"ai_languageModel": [[{"node": "AI Agent", "type": "ai_languageModel", "index": 0}]]}, "Webhook - ChatInput": {"main": [[{"node": "Set fields", "type": "main", "index": 0}]]}, "Postgres Chat Memory": {"ai_memory": [[{"node": "AI Agent", "type": "ai_memory", "index": 0}]]}, "Call Search Console Tool": {"ai_tool": [[{"node": "AI Agent", "type": "ai_tool", "index": 0}]]}, "Set fields - Consruct API CALL": {"main": [[{"node": "Switch", "type": "main", "index": 0}]]}, "Search Console - Get Custom Insights": {"main": [[{"node": "Set fields - Create searchConsoleDataArray", "type": "main", "index": 0}]]}, "## Search Console - Get List of Properties": {"main": [[{"node": "Set fields - Create searchConsoleDataArray 2", "type": "main", "index": 0}]]}, "Set fields - Create searchConsoleDataArray": {"main": [[{"node": "Array aggregation - response to AI Agent", "type": "main", "index": 0}]]}, "Set fields - Create searchConsoleDataArray 2": {"main": [[{"node": "Array aggregation - response to AI Agent1", "type": "main", "index": 0}]]}}
Invoice data extraction with LlamaParse and OpenAI (1)
[{"id": "7076854e-c7e8-45b5-9e5e-16678bffa254", "name": "OpenAI Model", "type": "@n8n/n8n-nodes-langchain.lmOpenAi", "position": [2420, 480], "parameters": {"model": {"__rl": true, "mode": "list", "value": "gpt-3.5-turbo-1106", "cachedResultName": "gpt-3.5-turbo-1106"}, "options": {"temperature": 0}}, "credentials": {"openAiApi": {"id": "8gccIjcuf3gvaoEr", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "00819f1c-2c60-4b7c-b395-445ec05fd898", "name": "Structured Output Parser", "type": "@n8n/n8n-nodes-langchain.outputParserStructured", "position": [2600, 480], "parameters": {"jsonSchema": "{\n \"Invoice date\": { \"type\": \"date\" },\n \"invoice number\": { \"type\": \"string\" },\n \"Purchase order number\": { \"type\": \"string\" },\n \"Supplier name\": { \"type\": \"string\" },\n \"Supplier address\": {\n \"type\": \"object\",\n \"properties\": {\n \"address 1\": { \"type\": \"string\" },\n \"address 2\": { \"type\": \"string\" },\n \"city\": { \"type\": \"string\" },\n \"postcode\": { \"type\": \"string\" }\n }\n },\n \"Supplier VAT identification number\": { \"type\": \"string\" },\n \"Customer name\": { \"type\": \"string\" },\n \"Customer address\": {\n \"type\": \"object\",\n \"properties\": {\n \"address 1\": { \"type\": \"string\" },\n \"address 2\": { \"type\": \"string\" },\n \"city\": { \"type\": \"string\" },\n \"postcode\": { \"type\": \"string\" }\n }\n },\n \"Customer VAT identification number\": { \"type\": \"string\" }, \n \"Shipping addresses\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"address 1\": { \"type\": \"string\" },\n \"address 2\": { \"type\": \"string\" },\n \"city\": { \"type\": \"string\" },\n \"postcode\": { \"type\": \"string\" }\n }\n }\n },\n \"Line items\": {\n \"type\": \"array\",\n \"items\": {\n \"name\": \"string\",\n \"description\": \"string\",\n \"price\": \"number\",\n \"discount\": \"number\"\n }\n },\n \"Subtotal without VAT\": { \"type\": \"number\" },\n \"Subtotal with VAT\": { \"type\": \"number\" },\n \"Total price\": { \"type\": \"number\" }\n}"}, "typeVersion": 1.1}, {"id": "3b40d506-aabc-4105-853a-a318375cea73", "name": "Upload to LlamaParse", "type": "n8n-nodes-base.httpRequest", "position": [1620, 420], "parameters": {"url": "https://api.cloud.llamaindex.ai/api/parsing/upload", "method": "POST", "options": {}, "sendBody": true, "contentType": "multipart-form-data", "sendHeaders": true, "authentication": "genericCredentialType", "bodyParameters": {"parameters": [{"name": "file", "parameterType": "formBinaryData", "inputDataFieldName": "=attachment_0"}]}, "genericAuthType": "httpHeaderAuth", "headerParameters": {"parameters": [{"name": "accept", "value": "application/json"}]}}, "credentials": {"httpHeaderAuth": {"id": "pZ4YmwFIkyGnbUC7", "name": "LlamaIndex API"}}, "typeVersion": 4.2}, {"id": "57a5d331-8838-4d44-8fac-a44dba35fcc4", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [1540, 140], "parameters": {"color": 7, "width": 785.9525375246163, "height": 623.4951418211454, "content": "## 2. Advanced PDF Processing with LlamaParse\n[Read more about using HTTP Requests](https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.httprequest/)\n\nLlamaIndex's LlamaCloud is a cloud-based service that allows you to upload,\nparse, and index document. LlamaParse is a tool offered by LlamaCloud\nto parse for complex PDFs with embedded objects ie PDF Tables and figures.\n\nAt time of writing, you can parse 1000 pdfs/day with LlamaCloud's free plan\nby signing up at [https://cloud.llamaindex.ai/](https://cloud.llamaindex.ai/?ref=n8n.io)."}, "typeVersion": 1}, {"id": "a4504d83-da3b-41bc-891f-f8f9314a6af5", "name": "Receiving Invoices", "type": "n8n-nodes-base.gmailTrigger", "position": [780, 400], "parameters": {"simple": false, "filters": {"q": "has:attachment", "sender": "invoices@paypal.com"}, "options": {"downloadAttachments": true}, "pollTimes": {"item": [{"mode": "everyMinute"}]}}, "credentials": {"gmailOAuth2": {"id": "Sf5Gfl9NiFTNXFWb", "name": "Gmail account"}}, "typeVersion": 1}, {"id": "02bd4636-f35b-4a3a-8a5f-9ae7aeed2bf4", "name": "Append to Reconciliation Sheet", "type": "n8n-nodes-base.googleSheets", "position": [2960, 320], "parameters": {"columns": {"value": {}, "schema": [{"id": "Invoice date", "type": "string", "display": true, "removed": false, "required": false, "displayName": "Invoice date", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "invoice number", "type": "string", "display": true, "removed": false, "required": false, "displayName": "invoice number", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Purchase order number", "type": "string", "display": true, "removed": false, "required": false, "displayName": "Purchase order number", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Supplier name", "type": "string", "display": true, "removed": false, "required": false, "displayName": "Supplier name", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Supplier address", "type": "string", "display": true, "removed": false, "required": false, "displayName": "Supplier address", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Supplier VAT identification number", "type": "string", "display": true, "removed": false, "required": false, "displayName": "Supplier VAT identification number", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Customer name", "type": "string", "display": true, "removed": false, "required": false, "displayName": "Customer name", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Customer address", "type": "string", "display": true, "removed": false, "required": false, "displayName": "Customer address", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Customer VAT identification number", "type": "string", "display": true, "removed": false, "required": false, "displayName": "Customer VAT identification number", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Shipping addresses", "type": "string", "display": true, "removed": false, "required": false, "displayName": "Shipping addresses", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Line items", "type": "string", "display": true, "removed": false, "required": false, "displayName": "Line items", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Subtotal without VAT", "type": "string", "display": true, "removed": false, "required": false, "displayName": "Subtotal without VAT", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Subtotal with VAT", "type": "string", "display": true, "removed": false, "required": false, "displayName": "Subtotal with VAT", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Total price", "type": "string", "display": true, "removed": false, "required": false, "displayName": "Total price", "defaultMatch": false, "canBeUsedToMatch": true}], "mappingMode": "autoMapInputData", "matchingColumns": ["output"]}, "options": {}, "operation": "append", "sheetName": {"__rl": true, "mode": "id", "value": "gid=0"}, "documentId": {"__rl": true, "mode": "list", "value": "1omHDl1jpjHyrtga2ZHBddUkbkdatEr1ga9vHc4fQ1pI", "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1omHDl1jpjHyrtga2ZHBddUkbkdatEr1ga9vHc4fQ1pI/edit?usp=drivesdk", "cachedResultName": "Invoice Reconciliation"}}, "credentials": {"googleSheetsOAuth2Api": {"id": "XHvC7jIRR8A2TlUl", "name": "Google Sheets account"}}, "typeVersion": 4.3}, {"id": "cdb0a7ee-068d-465a-b4ae-d5221d5e7400", "name": "Get Processing Status", "type": "n8n-nodes-base.httpRequest", "position": [1800, 420], "parameters": {"url": "=https://api.cloud.llamaindex.ai/api/parsing/job/{{ $json.id }}", "options": {}, "sendHeaders": true, "authentication": "genericCredentialType", "genericAuthType": "httpHeaderAuth", "headerParameters": {"parameters": [{"name": "accept", "value": "application/json"}]}}, "credentials": {"httpHeaderAuth": {"id": "pZ4YmwFIkyGnbUC7", "name": "LlamaIndex API"}}, "typeVersion": 4.2}, {"id": "b68a01ab-d8e6-42f4-ab1d-81e746695eef", "name": "Wait to stay within service limits", "type": "n8n-nodes-base.wait", "position": [2120, 560], "webhookId": "17a96ed6-b5ff-47bb-a8a2-39c1eb40185a", "parameters": {"amount": 1}, "typeVersion": 1.1}, {"id": "41bd28d2-665a-4f71-a456-98eeb26b6655", "name": "Is Job Ready?", "type": "n8n-nodes-base.switch", "position": [1960, 420], "parameters": {"rules": {"values": [{"outputKey": "SUCCESS", "conditions": {"options": {"leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "300fce8c-b19a-4d0c-86e8-f62853c70ce2", "operator": {"name": "filter.operator.equals", "type": "string", "operation": "equals"}, "leftValue": "={{ $json.status }}", "rightValue": "SUCCESS"}]}, "renameOutput": true}, {"outputKey": "ERROR", "conditions": {"options": {"leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "e6058aa0-a3e2-4ce3-9bed-6ff41a5be052", "operator": {"name": "filter.operator.equals", "type": "string", "operation": "equals"}, "leftValue": "={{ $json.status }}", "rightValue": "ERROR"}]}, "renameOutput": true}, {"outputKey": "CANCELED", "conditions": {"options": {"leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "ceb6338f-4261-40ac-be11-91f61c7302ba", "operator": {"name": "filter.operator.equals", "type": "string", "operation": "equals"}, "leftValue": "={{ $json.status }}", "rightValue": "CANCELED"}]}, "renameOutput": true}, {"outputKey": "PENDING", "conditions": {"options": {"leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "0fa97d86-432a-409a-917e-5f1a002b1ab9", "operator": {"name": "filter.operator.equals", "type": "string", "operation": "equals"}, "leftValue": "={{ $json.status }}", "rightValue": "PENDING"}]}, "renameOutput": true}]}, "options": {"allMatchingOutputs": true}}, "typeVersion": 3}, {"id": "f7157abe-b1ee-46b3-adb2-1be056d9d75d", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [694.0259411218055, 139.97202236910687], "parameters": {"color": 7, "width": 808.8727491350096, "height": 709.5781339256318, "content": "## 1. Watch for Invoice Emails\n[Read more about Gmail Triggers](https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.gmailtrigger)\n\nThe Gmail node can watch for all incoming messages and filter based on a condition. We'll set our Gmail node to wait for:\n* a message from particular email address.\n* having an attachment which should be the invoice PDF\n* not having a label \"invoice synced\", which is what we use to avoid duplicate processing."}, "typeVersion": 1}, {"id": "ff7cb6e4-5a60-4f12-b15e-74e7a4a302ce", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [2360, 70.48792658995046], "parameters": {"color": 7, "width": 805.0578351924228, "height": 656.5014186128178, "content": "## 3. Use LLMs to Extract Values from Data\n[Read more about Basic LLM Chain](https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainllm/)\n\nLarge language models are perfect for data extraction tasks as they can work across a range of document layouts without human intervention. The extracted data can then be sent to a variety of datastores such as spreadsheets, accounting systems and/or CRMs.\n\n**Tip:** The \"Structured Output Parser\" ensures the AI output can be\ninserted to our spreadsheet without additional clean up and/or formatting. "}, "typeVersion": 1}, {"id": "0d510631-440b-41f5-b1aa-9b7279e9c8e3", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [1934, 774], "parameters": {"color": 5, "width": 394.15089838126653, "height": 154.49585536070904, "content": "### \ud83d\ude4b\u200d\u2642\ufe0f Why not just use the built-in PDF convertor?\nA common issue with PDF-to-text convertors are that they ignore important data structures like tables. These structures can be important for data extraction. For example, being able to distinguish between seperate line items in an invoice."}, "typeVersion": 1}, {"id": "fe7fdb90-3c85-4f29-a7d3-16f927f48682", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [3200, 157.65172434465347], "parameters": {"color": 7, "width": 362.3535748101346, "height": 440.3435768155051, "content": "## 4. Add Label to Avoid Duplication\n[Read more about working with Gmail](https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.gmail/)\n\nTo finish off the workflow, we'll add the \"invoice synced\" label to the original invoice email to flag that the extraction was successful. This can be useful if working with a shared inbox and for quality control purposes later."}, "typeVersion": 1}, {"id": "1acf2c60-c2b9-4f78-94a4-0711c8bd71ab", "name": "Sticky Note5", "type": "n8n-nodes-base.stickyNote", "position": [300, 140], "parameters": {"width": 360.0244620907562, "height": 573.2443601155958, "content": "## Try Me Out!\n\n**This workflow does the following:**\n* Waits for email invoices with PDF attachments.\n* Uses the LlamaParse service to convert the invoice PDF into a markdown file.\n* Uses a LLM to extract invoice data from the Markdown file.\n* Exports the extracted data to a Google Sheet.\n\n### Follow along with the blog here\nhttps://blog.n8n.io/how-to-extract-data-from-pdf-to-excel-spreadsheet-advance-parsing-with-n8n-io-and-llamaparse/\n\n### Good to know\n* You'll need to create the label \"invoice synced\" in gmail before using this workflow.\n\n### Need Help?\nJoin the [Discord](https://discord.com/invite/XPKeKXeB7d) or ask in the [Forum](https://community.n8n.io/)!\n\nHappy Hacking!"}, "typeVersion": 1}, {"id": "3802c538-acf9-48d8-b011-bfe2fb817350", "name": "Add \"invoice synced\" Label", "type": "n8n-nodes-base.gmail", "position": [3320, 400], "parameters": {"labelIds": ["Label_5511644430826409825"], "messageId": "={{ $('Receiving Invoices').item.json.id }}", "operation": "addLabels"}, "credentials": {"gmailOAuth2": {"id": "Sf5Gfl9NiFTNXFWb", "name": "Gmail account"}}, "typeVersion": 2.1}, {"id": "ffabd8c5-c440-4473-8e44-b849426c70cf", "name": "Get Parsed Invoice Data", "type": "n8n-nodes-base.httpRequest", "position": [2160, 280], "parameters": {"url": "=https://api.cloud.llamaindex.ai/api/parsing/job/{{ $json.id }}/result/markdown", "options": {"redirect": {"redirect": {}}}, "authentication": "genericCredentialType", "genericAuthType": "httpHeaderAuth"}, "credentials": {"httpHeaderAuth": {"id": "pZ4YmwFIkyGnbUC7", "name": "LlamaIndex API"}}, "typeVersion": 4.2}, {"id": "5f9b507f-4dc1-4853-bf71-a64f2f4b55c1", "name": "Map Output", "type": "n8n-nodes-base.set", "position": [2760, 320], "parameters": {"mode": "raw", "options": {}, "jsonOutput": "={{ $json.output }}"}, "typeVersion": 3.3}, {"id": "d22744cd-151d-4b92-b4f2-4a5b9ceb4ee7", "name": "Apply Data Extraction Rules", "type": "@n8n/n8n-nodes-langchain.chainLlm", "position": [2420, 320], "parameters": {"text": "=Given the following invoice in the <invoice> xml tags, extract the following information as listed below.\nIf you cannot the information for a specific item, then leave blank and skip to the next. \n\n* Invoice date\n* invoice number\n* Purchase order number\n* Supplier name\n* Supplier address\n* Supplier VAT identification number\n* Customer name\n* Customer address\n* Customer VAT identification number\n* Shipping addresses\n* Line items, including a description of the goods or services rendered\n* Price with and without VAT\n* Total price\n\n<invoice>{{ $json.markdown }}</invoice>", "promptType": "define", "hasOutputParser": true}, "typeVersion": 1.4}, {"id": "3735a124-9fab-4400-8b94-8b5aa9f951fe", "name": "Should Process Email?", "type": "n8n-nodes-base.if", "position": [1340, 400], "parameters": {"options": {}, "conditions": {"options": {"leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "e5649a2b-6e12-4cc4-8001-4639cc9cc2c2", "operator": {"name": "filter.operator.equals", "type": "string", "operation": "equals"}, "leftValue": "={{ $input.item.binary.attachment_0.mimeType }}", "rightValue": "application/pdf"}, {"id": "4c57ab9b-b11c-455a-a63d-daf48418b06e", "operator": {"type": "array", "operation": "notContains", "rightType": "any"}, "leftValue": "={{ $json.labels }}", "rightValue": "invoice synced"}]}}, "typeVersion": 2}, {"id": "12a23527-39f3-4f72-8691-3d5cf59f9909", "name": "Split Out Labels", "type": "n8n-nodes-base.splitOut", "position": [980, 400], "parameters": {"options": {}, "fieldToSplitOut": "labelIds"}, "typeVersion": 1}, {"id": "88ff6e22-d3d3-403d-b0b2-2674487140a7", "name": "Get Labels Names", "type": "n8n-nodes-base.gmail", "position": [980, 540], "parameters": {"labelId": "={{ $json.labelIds }}", "resource": "label", "operation": "get"}, "credentials": {"gmailOAuth2": {"id": "Sf5Gfl9NiFTNXFWb", "name": "Gmail account"}}, "typeVersion": 2.1}, {"id": "88accb8e-6531-40be-8d35-1bba594149af", "name": "Combine Label Names", "type": "n8n-nodes-base.aggregate", "position": [980, 680], "parameters": {"options": {}, "fieldsToAggregate": {"fieldToAggregate": [{"renameField": true, "outputFieldName": "labels", "fieldToAggregate": "name"}]}}, "typeVersion": 1}, {"id": "d233ff33-cabf-434e-876d-879693ecaf58", "name": "Email with Label Names", "type": "n8n-nodes-base.merge", "position": [1160, 400], "parameters": {"mode": "combine", "options": {}, "combinationMode": "multiplex"}, "typeVersion": 2.1}, {"id": "733fc285-e069-4e4e-b13e-dfc1c259ac12", "name": "Sticky Note6", "type": "n8n-nodes-base.stickyNote", "position": [2540, 460], "parameters": {"width": 192.26896179623753, "height": 213.73043662572252, "content": "\n\n\n\n\n\n\n\n\n\n\n\n**Need more attributes?**\nChange it here!"}, "typeVersion": 1}, {"id": "83aa6ed0-ce3b-48d7-aded-475c337ae86e", "name": "Sticky Note7", "type": "n8n-nodes-base.stickyNote", "position": [2880, 300], "parameters": {"width": 258.29345180972877, "height": 397.0641952938746, "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\ud83d\udea8**Required**\n* Set Your Google Sheet URL here\n* Set the Name of your Sheet\n\n\n**Don't use GSheets?**\nSwap this for Excel, Airtable or a Database!"}, "typeVersion": 1}, {"id": "720070f6-2d6c-45ef-80c2-e950862a002b", "name": "Sticky Note8", "type": "n8n-nodes-base.stickyNote", "position": [740, 380], "parameters": {"width": 174.50671517518518, "height": 274.6295678979021, "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\ud83d\udea8**Required**\n* Change the email filters here!"}, "typeVersion": 1}]
{"Map Output": {"main": [[{"node": "Append to Reconciliation Sheet", "type": "main", "index": 0}]]}, "OpenAI Model": {"ai_languageModel": [[{"node": "Apply Data Extraction Rules", "type": "ai_languageModel", "index": 0}]]}, "Is Job Ready?": {"main": [[{"node": "Get Parsed Invoice Data", "type": "main", "index": 0}], null, null, [{"node": "Wait to stay within service limits", "type": "main", "index": 0}]]}, "Get Labels Names": {"main": [[{"node": "Combine Label Names", "type": "main", "index": 0}]]}, "Split Out Labels": {"main": [[{"node": "Get Labels Names", "type": "main", "index": 0}]]}, "Receiving Invoices": {"main": [[{"node": "Split Out Labels", "type": "main", "index": 0}, {"node": "Email with Label Names", "type": "main", "index": 0}]]}, "Combine Label Names": {"main": [[{"node": "Email with Label Names", "type": "main", "index": 1}]]}, "Upload to LlamaParse": {"main": [[{"node": "Get Processing Status", "type": "main", "index": 0}]]}, "Get Processing Status": {"main": [[{"node": "Is Job Ready?", "type": "main", "index": 0}]]}, "Should Process Email?": {"main": [[{"node": "Upload to LlamaParse", "type": "main", "index": 0}]]}, "Email with Label Names": {"main": [[{"node": "Should Process Email?", "type": "main", "index": 0}]]}, "Get Parsed Invoice Data": {"main": [[{"node": "Apply Data Extraction Rules", "type": "main", "index": 0}]]}, "Structured Output Parser": {"ai_outputParser": [[{"node": "Apply Data Extraction Rules", "type": "ai_outputParser", "index": 0}]]}, "Apply Data Extraction Rules": {"main": [[{"node": "Map Output", "type": "main", "index": 0}]]}, "Append to Reconciliation Sheet": {"main": [[{"node": "Add \"invoice synced\" Label", "type": "main", "index": 0}]]}, "Wait to stay within service limits": {"main": [[{"node": "Get Processing Status", "type": "main", "index": 0}]]}}
Send a random recipe once a day to Telegram
[{"name": "Cron", "type": "n8n-nodes-base.cron", "position": [440, 440], "parameters": {"triggerTimes": {"item": [{}]}}, "typeVersion": 1}, {"name": "Airtable2", "type": "n8n-nodes-base.airtable", "notes": "Grab our list of chats from Airtable to send a random recipe", "position": [660, 440], "parameters": {"table": "Table 1", "operation": "list", "application": "your_sheet_id", "additionalOptions": {}}, "credentials": {"airtableApi": {"id": "5", "name": "Airtable account"}}, "notesInFlow": true, "typeVersion": 1}, {"name": "Set", "type": "n8n-nodes-base.set", "position": [860, 600], "parameters": {"values": {"number": [{"name": "chatid", "value": "={{$node[\"Airtable2\"].json[\"fields\"][\"chatid\"]}}"}], "string": []}, "options": {}}, "typeVersion": 1}, {"name": "Recipe Photo", "type": "n8n-nodes-base.telegram", "position": [1240, 440], "parameters": {"file": "={{$node[\"Get recipes from API\"].json[\"recipes\"][0][\"image\"]}}", "chatId": "={{$node[\"Set\"].json[\"chatid\"]}}", "operation": "sendPhoto", "additionalFields": {}}, "credentials": {"telegramApi": {"id": "1", "name": "Telegram account"}}, "typeVersion": 1, "continueOnFail": true}, {"name": "Recipe URL", "type": "n8n-nodes-base.telegram", "position": [1420, 440], "parameters": {"text": "=\n{{$node[\"Get recipes from API\"].json[\"recipes\"][0][\"title\"]}}\n\n{{$node[\"Get recipes from API\"].json[\"recipes\"][0][\"sourceUrl\"]}}", "chatId": "={{$node[\"Set\"].json[\"chatid\"]}}", "additionalFields": {}}, "credentials": {"telegramApi": {"id": "1", "name": "Telegram account"}}, "typeVersion": 1, "continueOnFail": true}, {"name": "IF", "type": "n8n-nodes-base.if", "notes": "If the chat ID isn't in our airtable, we add it. This is to send a new recipe daily. ", "position": [860, -80], "parameters": {"conditions": {"number": [], "string": [{"value1": "= {{$node[\"Airtable1\"].parameter[\"fields\"][1]}}", "value2": "= {{$node[\"Airtable1\"].parameter[\"fields\"][0]}}", "operation": "notEqual"}], "boolean": []}}, "notesInFlow": true, "typeVersion": 1}, {"name": "Airtable", "type": "n8n-nodes-base.airtable", "position": [620, -80], "parameters": {"table": "Table 1", "operation": "list", "application": "your_sheet_id", "additionalOptions": {}}, "credentials": {"airtableApi": {"id": "5", "name": "Airtable account"}}, "typeVersion": 1}, {"name": "Airtable1", "type": "n8n-nodes-base.airtable", "position": [1340, -100], "parameters": {"table": "Table 1", "fields": ["chatid", "={{$node[\"Telegram Trigger - people join bot\"].json[\"message\"][\"chat\"][\"id\"]}}", "Name", "={{$node[\"Telegram Trigger - people join bot\"].json[\"message\"][\"from\"][\"first_name\"]}}"], "options": {}, "operation": "append", "application": "your_sheet_id", "addAllFields": false}, "credentials": {"airtableApi": {"id": "5", "name": "Airtable account"}}, "typeVersion": 1}, {"name": "Telegram Recipe Image", "type": "n8n-nodes-base.telegram", "position": [980, 180], "parameters": {"file": "={{$node[\"Get recipes\"].json[\"recipes\"][0][\"image\"]}}", "chatId": "={{$node[\"Telegram Trigger - people join bot\"].json[\"message\"][\"chat\"][\"id\"]}}", "operation": "sendPhoto", "additionalFields": {}}, "credentials": {"telegramApi": {"id": "1", "name": "Telegram account"}}, "typeVersion": 1}, {"name": "Telegram Recipe URL", "type": "n8n-nodes-base.telegram", "position": [1180, 180], "parameters": {"text": "=\n{{$node[\"Get recipes\"].json[\"recipes\"][0][\"title\"]}}\n\n{{$node[\"Get recipes\"].json[\"recipes\"][0][\"sourceUrl\"]}}", "chatId": "={{$node[\"Telegram Trigger - people join bot\"].json[\"message\"][\"chat\"][\"id\"]}}", "additionalFields": {}}, "credentials": {"telegramApi": {"id": "1", "name": "Telegram account"}}, "typeVersion": 1}, {"name": "Set1", "type": "n8n-nodes-base.set", "position": [1120, -100], "parameters": {"values": {"string": [{"name": "chatid", "value": "={{$node[\"Telegram Trigger - people join bot\"].json[\"message\"][\"chat\"][\"id\"]}}"}, {"name": "Name", "value": "={{$node[\"Telegram Trigger - people join bot\"].json[\"message\"][\"from\"][\"first_name\"]}}"}]}, "options": {}}, "typeVersion": 1}, {"name": "Get recipes from API", "type": "n8n-nodes-base.httpRequest", "notes": "https://spoonacular.com/food-api/docs", "position": [1080, 440], "parameters": {"url": "https://api.spoonacular.com/recipes/random?apiKey=APIKEYHERE&number=1&tags=vegan", "options": {"fullResponse": false}, "queryParametersUi": {"parameter": []}}, "typeVersion": 1}, {"name": "Get recipes", "type": "n8n-nodes-base.httpRequest", "notes": "https://spoonacular.com/food-api/docs", "position": [800, 180], "parameters": {"url": "https://api.spoonacular.com/recipes/random?apiKey=APIKEYHERE&number=1&tags=vegan", "options": {"fullResponse": false}, "queryParametersUi": {"parameter": []}}, "typeVersion": 1}, {"name": "Telegram Trigger - people join bot", "type": "n8n-nodes-base.telegramTrigger", "position": [420, 140], "webhookId": "your_bot_id", "parameters": {"updates": ["message"], "additionalFields": {}}, "credentials": {"telegramApi": {"id": "1", "name": "Telegram account"}}, "typeVersion": 1}, {"name": "Telegram - Welcome Message", "type": "n8n-nodes-base.telegram", "position": [620, 180], "parameters": {"text": "=Welcome! This bot will send you one vegan recipe a day. Here is your first recipe!", "chatId": "={{$node[\"Telegram Trigger - people join bot\"].json[\"message\"][\"chat\"][\"id\"]}}", "additionalFields": {}}, "credentials": {"telegramApi": {"id": "1", "name": "Telegram account"}}, "typeVersion": 1}]
{"IF": {"main": [[{"node": "Set1", "type": "main", "index": 0}]]}, "Set": {"main": [[{"node": "Get recipes from API", "type": "main", "index": 0}]]}, "Cron": {"main": [[{"node": "Airtable2", "type": "main", "index": 0}]]}, "Set1": {"main": [[{"node": "Airtable1", "type": "main", "index": 0}]]}, "Airtable": {"main": [[{"node": "IF", "type": "main", "index": 0}]]}, "Airtable2": {"main": [[{"node": "Set", "type": "main", "index": 0}]]}, "Get recipes": {"main": [[{"node": "Telegram Recipe Image", "type": "main", "index": 0}]]}, "Recipe Photo": {"main": [[{"node": "Recipe URL", "type": "main", "index": 0}]]}, "Get recipes from API": {"main": [[{"node": "Recipe Photo", "type": "main", "index": 0}]]}, "Telegram Recipe Image": {"main": [[{"node": "Telegram Recipe URL", "type": "main", "index": 0}]]}, "Telegram - Welcome Message": {"main": [[{"node": "Get recipes", "type": "main", "index": 0}]]}, "Telegram Trigger - people join bot": {"main": [[{"node": "Airtable", "type": "main", "index": 0}, {"node": "Telegram - Welcome Message", "type": "main", "index": 0}]]}}
Flow:Task:create get getAll update
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "077a12f0-e2c8-4990-bf0c-3705208c8ada"}, {"parameters": {"workspaceId": "473181", "name": "=Task{{Date.now()}}", "additionalFields": {"noteContent": "Task content", "noteMimeType": "text/plain", "position": 1}}, "name": "Flow", "type": "n8n-nodes-base.flow", "typeVersion": 1, "position": [450, 300], "credentials": {"flowApi": {"id": "220", "name": "Flow API creds"}}, "id": "2a76f52f-0b77-4c76-bbca-c54e6581d13e"}, {"parameters": {"operation": "get", "taskId": "={{$node[\"Flow\"].json[\"id\"]}}", "filters": {}}, "name": "Flow1", "type": "n8n-nodes-base.flow", "typeVersion": 1, "position": [600, 300], "credentials": {"flowApi": {"id": "220", "name": "Flow API creds"}}, "id": "c1f80e78-bad4-457f-8b00-a239a070ca09"}, {"parameters": {"operation": "getAll", "limit": 1, "filters": {}}, "name": "Flow2", "type": "n8n-nodes-base.flow", "typeVersion": 1, "position": [750, 300], "credentials": {"flowApi": {"id": "220", "name": "Flow API creds"}}, "id": "5ea201ba-164f-4ed0-be1d-d893930d6568"}, {"parameters": {"operation": "update", "workspaceId": "473181", "taskId": "={{$node[\"Flow\"].json[\"id\"]}}", "updateFields": {"name": "=Updated{{$node[\"Flow1\"].json[\"task\"][\"name\"]}}", "completed": true}}, "name": "Flow3", "type": "n8n-nodes-base.flow", "typeVersion": 1, "position": [900, 300], "credentials": {"flowApi": {"id": "220", "name": "Flow API creds"}}, "id": "df48712d-b64d-43b8-8493-f053d5b52804"}]
{"Flow": {"main": [[{"node": "Flow1", "type": "main", "index": 0}]]}, "Flow1": {"main": [[{"node": "Flow2", "type": "main", "index": 0}]]}, "Flow2": {"main": [[{"node": "Flow3", "type": "main", "index": 0}]]}, "Start": {"main": [[{"node": "Flow", "type": "main", "index": 0}]]}}
Telegram-bot AI Da Nang
[{"id": "ae5f9ca6-6bba-4fe8-b955-6c615d8a522f", "name": "SendTyping", "type": "n8n-nodes-base.telegram", "position": [-1780, -260], "webhookId": "26ea953e-93d9-463e-ad90-95ea8ccb449f", "parameters": {"chatId": "={{ $('telegramInput').item.json.message.chat.id }}", "operation": "sendChatAction"}, "credentials": {"telegramApi": {"id": "V3EtQBeqEvnOtl9p", "name": "Telegram account"}}, "typeVersion": 1.2}, {"id": "244e7be3-2caa-46f7-8628-d063a3b84c12", "name": "SetResponse", "type": "n8n-nodes-base.set", "notes": "Assemble response etc.", "position": [40, -420], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "fba8dc48-1484-4aae-8922-06fcae398f05", "name": "responseMessage", "type": "string", "value": "={{ $json.output }}"}, {"id": "df8243e6-6a24-4bad-8807-63d75c828150", "name": "", "type": "string", "value": ""}]}, "includeOtherFields": true}, "notesInFlow": true, "typeVersion": 3.4}, {"id": "192aa194-f131-4ba3-8842-7c88da1a6129", "name": "Settings", "type": "n8n-nodes-base.set", "position": [-1260, -420], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "6714203d-04b3-4a3c-9183-09cddcffdfe8", "name": "scheduleURL", "type": "string", "value": "https://docs.google.com/spreadsheets/d/1BJFS9feEy94_WgIgzWZttBwzjp09siOw1xuUgq4yuI4"}]}, "includeOtherFields": true}, "typeVersion": 3.4}, {"id": "1c52cdf5-da32-4c76-a294-5ec2109dbf39", "name": "Schedule", "type": "n8n-nodes-base.googleSheets", "position": [-980, -420], "parameters": {"options": {}, "sheetName": {"__rl": true, "mode": "list", "value": "gid=0", "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1BJFS9feEy94_WgIgzWZttBwzjp09siOw1xuUgq4yuI4/edit#gid=0", "cachedResultName": "Schedule"}, "documentId": {"__rl": true, "mode": "url", "value": "={{ $json.scheduleURL }}"}}, "credentials": {"googleSheetsOAuth2Api": {"id": "XeXufn5uZvHp3lcX", "name": "Google Sheets account 2"}}, "typeVersion": 4.5}, {"id": "eff88417-4ce6-4809-8693-dc63e00fff20", "name": "ScheduleToMarkdown", "type": "n8n-nodes-base.code", "position": [-800, -420], "parameters": {"jsCode": "// Get all rows from the input (each item has a \"json\" property)\nconst rows = items.map(item => item.json);\n\n// If no data, return an appropriate message\nif (rows.length === 0) {\n return [{ json: { markdown: \"No data available.\" } }];\n}\n\n// Use the keys from the first row as the header columns\nconst headers = Object.keys(rows[0]);\n\n// Build the markdown table string\nlet markdown = \"\";\n\n// Create the header row\nmarkdown += `| ${headers.join(\" | \")} |\\n`;\n\n// Create the separator row (using dashes for markdown)\nmarkdown += `| ${headers.map(() => '---').join(\" | \")} |\\n`;\n\n// Add each data row to the table\nrows.forEach(row => {\n // Ensure we output something for missing values\n const rowValues = headers.map(header => row[header] !== undefined ? row[header] : '');\n markdown += `| ${rowValues.join(\" | \")} |\\n`;\n});\n\nconst result = { 'binary': {}, 'json': {} };\n\n// Convert the markdown string to a binary buffer\nconst binaryData = Buffer.from(markdown, 'utf8');\n/*\n// Attach the binary data to the first item under a binary property named 'data'\nresult.binary = {\n data: {\n data: binaryData,\n mimeType: 'text/markdown',\n }\n};\n*/\n// Optionally, also return the markdown string in the json property if needed\nresult.json.markdown = markdown;\n\nreturn result;"}, "typeVersion": 2}, {"id": "04fab70c-493a-4c5d-adfb-0d9e8a5b7382", "name": "ScheduleBot", "type": "@n8n/n8n-nodes-langchain.agent", "position": [-480, -420], "parameters": {"text": "={{ $('Settings').first().json.inputMessage }}", "options": {"systemMessage": "=You are a helpful assistant that helps members of a meetup group with scheduling their meetups and answering questions about them.\n\nThe current version of the schedule in tabular format is the following:\n\n {{ $json.markdown }}\n\n"}, "promptType": "define"}, "typeVersion": 1.7}, {"id": "be29d3ec-8211-4f23-82f2-83a1aa3aad5b", "name": "n8nChatSettings", "type": "n8n-nodes-base.set", "position": [-1580, -520], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "1ecb3515-c1a2-4d69-adec-5b4d74e32056", "name": "inputMessage", "type": "string", "value": "={{ $json.chatInput }}"}, {"id": "424b9697-94cb-4c38-953c-992436832684", "name": "chatId", "type": "string", "value": "={{ $json.sessionId }}"}, {"id": "e23988e2-7c3d-4e38-9d5d-0c4b0c94d127", "name": "mode", "type": "string", "value": "n8n"}]}}, "typeVersion": 3.4}, {"id": "b7078c59-b6e6-4002-831f-96e56278ab61", "name": "telegramChatSettings", "type": "n8n-nodes-base.set", "position": [-1580, -260], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "1ecb3515-c1a2-4d69-adec-5b4d74e32056", "name": "inputMessage", "type": "string", "value": "={{ $('telegramInput').item.json.message.text }}"}, {"id": "424b9697-94cb-4c38-953c-992436832684", "name": "chatId", "type": "string", "value": "={{ $('telegramInput').item.json.message.chat.id }}"}, {"id": "e23988e2-7c3d-4e38-9d5d-0c4b0c94d127", "name": "mode", "type": "string", "value": "telegram"}]}}, "typeVersion": 3.4}, {"id": "1ba6ad37-f1e5-440d-bf10-569038c27bce", "name": "telegramInput", "type": "n8n-nodes-base.telegramTrigger", "position": [-1960, -260], "webhookId": "f56e8e22-975e-4f9a-a6f9-253ebc63668d", "parameters": {"updates": ["message"], "additionalFields": {}}, "credentials": {"telegramApi": {"id": "V3EtQBeqEvnOtl9p", "name": "Telegram account"}}, "typeVersion": 1.1}, {"id": "56a52e8a-714f-4e7a-8a13-e915e9dc29c4", "name": "n8nInput", "type": "@n8n/n8n-nodes-langchain.chatTrigger", "position": [-1960, -520], "webhookId": "f4ab7d4a-5cdd-425a-bbbb-e3bb94719266", "parameters": {"options": {}}, "typeVersion": 1.1}, {"id": "961f67f0-bd44-4e7f-9f2f-c2f02f3176ce", "name": "Switch", "type": "n8n-nodes-base.switch", "position": [220, -420], "parameters": {"rules": {"values": [{"outputKey": "n8n mode", "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"operator": {"type": "string", "operation": "equals"}, "leftValue": "={{ $('Settings').first().json.mode }}", "rightValue": "n8n"}]}, "renameOutput": true}, {"outputKey": "telegram mode", "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "e7d6a994-48e3-44bb-b662-862d9bf9c53b", "operator": {"name": "filter.operator.equals", "type": "string", "operation": "equals"}, "leftValue": "={{ $('Settings').first().json.mode }}", "rightValue": "telegram"}]}, "renameOutput": true}]}, "options": {}}, "typeVersion": 3.2}, {"id": "57056425-37ba-417d-9a2d-977a81d378ab", "name": "telegramResponse", "type": "n8n-nodes-base.telegram", "position": [500, -280], "webhookId": "ff71ba7e-affa-4952-90a5-6bb7f37a5598", "parameters": {"text": "={{ $json.responseMessage }}", "chatId": "={{ $('Settings').first().json.chatId }}", "additionalFields": {}}, "credentials": {"telegramApi": {"id": "V3EtQBeqEvnOtl9p", "name": "Telegram account"}}, "typeVersion": 1.2}, {"id": "2962a77f-5727-43be-93fb-b0751b63c6ac", "name": "n8nResponse", "type": "n8n-nodes-base.noOp", "position": [500, -520], "parameters": {}, "typeVersion": 1}, {"id": "0932484f-707b-412b-b9cb-431a8ae64447", "name": "LLM", "type": "@n8n/n8n-nodes-langchain.lmChatOpenRouter", "position": [-600, -220], "parameters": {"options": {}}, "credentials": {"openRouterApi": {"id": "bs7tPtvgDTJNGAFJ", "name": "OpenRouter account"}}, "typeVersion": 1}, {"id": "65948d2c-71b2-4df0-97db-ed216ed7c691", "name": "Memory", "type": "@n8n/n8n-nodes-langchain.memoryBufferWindow", "position": [-500, -220], "parameters": {"sessionKey": "={{ $('Settings').first().json.chatId }}", "sessionIdType": "customKey"}, "typeVersion": 1.3}, {"id": "50566274-cf7c-496f-a166-b45eb3114da3", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [-2000, -600], "parameters": {"color": 2, "width": 620, "height": 240, "content": "## Chat input triggered inside n8n\nUsed for testing and debugging"}, "typeVersion": 1}, {"id": "9dc636fb-cc86-4236-8eb9-952a4ab0ef68", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [-2000, -340], "parameters": {"color": 2, "width": 620, "height": 240, "content": "## Chat input triggered by Telegram\nUsed for live chat within Telegram"}, "typeVersion": 1}, {"id": "0429d589-3e80-4b26-96a0-01554899a3e7", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [420, -340], "parameters": {"color": 5, "width": 360, "height": 240, "content": "## Chat response to Telegram"}, "typeVersion": 1}, {"id": "9eeccee0-c6a0-40c6-9b7d-1f672bf0fdb9", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [420, -600], "parameters": {"color": 5, "width": 360, "height": 240, "content": "## Chat response inside n8n"}, "typeVersion": 1}, {"id": "acb8e550-be94-41b7-904a-641b3b87e928", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [-40, -600], "parameters": {"color": 7, "width": 440, "height": 500, "content": "## Prepare response\nDecide to which chat the response will go."}, "typeVersion": 1}, {"id": "42ce6eac-165b-463d-822e-355aff030525", "name": "Sticky Note5", "type": "n8n-nodes-base.stickyNote", "position": [-620, -600], "parameters": {"color": 3, "width": 560, "height": 500, "content": "## AI Processing\nChat input \u2192 Chat output"}, "typeVersion": 1}, {"id": "33c45fcc-3aa5-4cd3-b393-e1723560dfeb", "name": "Sticky Note6", "type": "n8n-nodes-base.stickyNote", "position": [-1040, -600], "parameters": {"color": 4, "width": 400, "height": 500, "content": "## Retrieve Data\nGet schedule from Google Spreadsheet and convert it to a Markdown-Table as context for the LLM"}, "typeVersion": 1}, {"id": "6e1017e3-bf9d-4056-a64f-c94476bd1f43", "name": "Sticky Note7", "type": "n8n-nodes-base.stickyNote", "position": [-1360, -600], "parameters": {"color": 7, "width": 300, "height": 500, "content": "## Normalize input\nTransfer the chat data into a unified set of variables"}, "typeVersion": 1}]
{"LLM": {"ai_languageModel": [[{"node": "ScheduleBot", "type": "ai_languageModel", "index": 0}]]}, "Memory": {"ai_memory": [[{"node": "ScheduleBot", "type": "ai_memory", "index": 0}]]}, "Switch": {"main": [[{"node": "n8nResponse", "type": "main", "index": 0}], [{"node": "telegramResponse", "type": "main", "index": 0}]]}, "Schedule": {"main": [[{"node": "ScheduleToMarkdown", "type": "main", "index": 0}]]}, "Settings": {"main": [[{"node": "Schedule", "type": "main", "index": 0}]]}, "n8nInput": {"main": [[{"node": "n8nChatSettings", "type": "main", "index": 0}]]}, "SendTyping": {"main": [[{"node": "telegramChatSettings", "type": "main", "index": 0}]]}, "ScheduleBot": {"main": [[{"node": "SetResponse", "type": "main", "index": 0}]]}, "SetResponse": {"main": [[{"node": "Switch", "type": "main", "index": 0}]]}, "telegramInput": {"main": [[{"node": "SendTyping", "type": "main", "index": 0}]]}, "n8nChatSettings": {"main": [[{"node": "Settings", "type": "main", "index": 0}]]}, "telegramResponse": {"main": [[]]}, "ScheduleToMarkdown": {"main": [[{"node": "ScheduleBot", "type": "main", "index": 0}]]}, "telegramChatSettings": {"main": [[{"node": "Settings", "type": "main", "index": 0}]]}}
Trello:Board:*List:*Card:*Label:*CardComment:*Attachment:*CheckList:*
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [-580, 310], "id": "60bc897d-49b0-41d9-9ecd-a241e69f23fd"}, {"parameters": {"resource": "board", "name": "TestBoard", "description": "test qa board", "additionalFields": {}}, "name": "Trello", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [-300, 311], "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "d9bb9631-be15-44b7-8962-15adb038513f"}, {"parameters": {"resource": "board", "operation": "update", "id": "={{$node[\"Trello\"].json[\"id\"]}}", "updateFields": {"name": "UpatedTestBoard"}}, "name": "Trello1", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [2970, 301], "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "5240d7bc-d9d5-465e-87d5-7d68513b0552"}, {"parameters": {"resource": "board", "operation": "get", "id": "={{$node[\"Trello\"].json[\"id\"]}}", "additionalFields": {}}, "name": "Trello2", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [3120, 301], "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "d7d28b3a-a2ec-4c45-aeab-ffd60fa7ed1c"}, {"parameters": {"resource": "board", "operation": "delete", "id": "={{$node[\"Trello\"].json[\"id\"]}}"}, "name": "Trello3", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [3270, 301], "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "bfd73a34-44a6-4067-9e68-47f217a6e96a"}, {"parameters": {"resource": "list", "idBoard": "={{$node[\"Trello\"].json[\"id\"]}}", "name": "To Test", "additionalFields": {}}, "name": "Trello4", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [-160, 411], "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "f539269f-9813-4158-9cfb-3568adc2ad4a"}, {"parameters": {"resource": "list", "operation": "update", "id": "={{$node[\"Trello4\"].json[\"id\"]}}", "updateFields": {}}, "name": "Trello5", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [-10, 411], "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "6cc9eb56-e9ac-48bd-965f-61da503191f8"}, {"parameters": {"resource": "list", "operation": "get", "id": "={{$node[\"Trello4\"].json[\"id\"]}}", "additionalFields": {}}, "name": "Trello6", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [140, 411], "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "9ee41feb-6b2d-4b76-9e39-13a8a41553e6"}, {"parameters": {"resource": "list", "operation": "getAll", "id": "={{$node[\"Trello\"].json[\"id\"]}}", "limit": 1, "additionalFields": {}}, "name": "Trello7", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [290, 411], "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "34c2e5be-9ae1-4212-991b-8099e11fedb1"}, {"parameters": {"resource": "list", "operation": "getCards", "id": "={{$node[\"Trello4\"].json[\"id\"]}}", "limit": 1, "additionalFields": {}}, "name": "Trello8", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [2550, 401], "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "6ecf2b95-1431-4ca6-85da-a099c2152169"}, {"parameters": {"resource": "list", "operation": "archive", "id": "={{$node[\"Trello4\"].json[\"id\"]}}"}, "name": "Trello9", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [2840, 401], "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "92cfc2ec-b2bb-4e00-afae-1a540903886a"}, {"parameters": {"listId": "={{$node[\"Trello4\"].json[\"id\"]}}", "name": "TestCard", "description": "qa test card", "additionalFields": {}}, "name": "Trello10", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [430, 511], "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "3ecf077b-90ae-484b-91f7-a134defb5a9b"}, {"parameters": {"resource": "cardComment", "cardId": "={{$node[\"Trello10\"].json[\"id\"]}}", "text": "Test comment"}, "name": "Trello11", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [590, 591], "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "f60d1db5-08b7-47d3-8e87-c6d6db863400"}, {"parameters": {"resource": "cardComment", "operation": "update", "cardId": "={{$node[\"Trello10\"].json[\"id\"]}}", "commentId": "={{$node[\"Trello11\"].json[\"id\"]}}", "text": "Updated comment"}, "name": "Trello12", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [740, 591], "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "b9b78d60-9ac7-47a7-a21d-91c0eea11529"}, {"parameters": {"resource": "cardComment", "operation": "delete", "cardId": "={{$node[\"Trello10\"].json[\"id\"]}}", "commentId": "={{$node[\"Trello11\"].json[\"id\"]}}"}, "name": "Trello13", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [890, 591], "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "ab58cd8f-6d9c-4d13-9061-e7075baa09a0"}, {"parameters": {"operation": "update", "id": "={{$node[\"Trello10\"].json[\"id\"]}}", "updateFields": {"name": "UpdateTestCard"}}, "name": "Trello14", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [2270, 501], "alwaysOutputData": true, "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "4a02293e-8c77-4fec-96d4-b30ef8bef67d"}, {"parameters": {"operation": "get", "id": "={{$node[\"Trello10\"].json[\"id\"]}}", "additionalFields": {}}, "name": "Trello15", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [2410, 501], "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "5f3eecb4-bdc3-41ee-8c08-6133996cfe6c"}, {"parameters": {"operation": "delete", "id": "={{$node[\"Trello10\"].json[\"id\"]}}"}, "name": "Trello16", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [2700, 501], "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "4b372bda-f6ba-4148-af60-7baa2750b199"}, {"parameters": {"resource": "label", "operation": "create", "boardId": "={{$node[\"Trello\"].json[\"id\"]}}", "name": "TestLabel", "color": "blue"}, "name": "Trello17", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [590, 431], "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "00028ce8-a909-46b7-a39b-2893f039dfb4"}, {"parameters": {"resource": "label", "operation": "update", "id": "={{$node[\"Trello17\"].json[\"id\"]}}", "updateFields": {"color": "orange"}}, "name": "Trello18", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [730, 431], "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "4b45bec0-38ea-44fb-b8ce-2bdeb0111749"}, {"parameters": {"resource": "label", "boardId": "={{$node[\"Trello\"].json[\"id\"]}}", "additionalFields": {}}, "name": "Trello19", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [870, 431], "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "a6d224e2-f55b-41a4-9682-27221a17946e"}, {"parameters": {"resource": "checklist", "operation": "create", "cardId": "={{$node[\"Trello10\"].json[\"id\"]}}", "name": "TestCheckList", "additionalFields": {}}, "name": "Trello20", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [590, 281], "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "59a94a1d-eb67-48bc-82ea-065bd2ef4458"}, {"parameters": {"resource": "checklist", "operation": "createCheckItem", "checklistId": "={{$node[\"Trello20\"].json[\"id\"]}}", "name": "TestCheckListItem", "additionalFields": {}}, "name": "Trello21", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [740, 281], "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "1fd1b5e1-6029-4a2a-972e-43014d5fafc1"}, {"parameters": {"resource": "checklist", "operation": "updateCheckItem", "cardId": "={{$node[\"Trello10\"].json[\"id\"]}}", "checkItemId": "={{$node[\"Trello21\"].json[\"id\"]}}", "additionalFields": {"name": "UpdatedCheckListItem", "state": "complete"}}, "name": "Trello22", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [920, 281], "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "8736bed5-3556-44ae-a95f-3bdf353beaab"}, {"parameters": {"resource": "checklist", "operation": "getCheckItem", "cardId": "={{$node[\"Trello10\"].json[\"id\"]}}", "checkItemId": "={{$node[\"Trello21\"].json[\"id\"]}}", "additionalFields": {}}, "name": "Trello23", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [1090, 281], "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "16a9b8ce-2f76-4bf2-89c0-5adaf2f82c13"}, {"parameters": {"resource": "checklist", "operation": "completedCheckItems", "cardId": "={{$node[\"Trello10\"].json[\"id\"]}}", "additionalFields": {}}, "name": "Trello24", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [1270, 281], "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "6e2b2fd6-0fa0-44d8-8530-d95043cf117f"}, {"parameters": {"resource": "checklist", "operation": "getCheckItem", "cardId": "={{$node[\"Trello10\"].json[\"id\"]}}", "checkItemId": "={{$node[\"Trello21\"].json[\"id\"]}}", "additionalFields": {}}, "name": "Trello25", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [1440, 281], "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "0387d97e-31f6-4226-9da6-c029714fd5dd"}, {"parameters": {"resource": "checklist", "operation": "deleteCheckItem", "cardId": "={{$node[\"Trello10\"].json[\"id\"]}}", "checkItemId": "={{$node[\"Trello21\"].json[\"id\"]}}"}, "name": "Trello26", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [1600, 281], "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "368bfe8c-797a-4458-90bb-24c54393e038"}, {"parameters": {"resource": "checklist", "cardId": "={{$node[\"Trello10\"].json[\"id\"]}}", "additionalFields": {}}, "name": "Trello27", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [1740, 281], "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "c67011e2-140d-489d-bffd-7e3cd6704fee"}, {"parameters": {"resource": "checklist", "operation": "get", "id": "={{$node[\"Trello20\"].json[\"id\"]}}", "additionalFields": {}}, "name": "Trello28", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [1890, 281], "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "61c6e9e9-d539-43fa-ab8b-836c660a4182"}, {"parameters": {"resource": "checklist", "operation": "delete", "cardId": "={{$node[\"Trello10\"].json[\"id\"]}}", "id": "={{$node[\"Trello20\"].json[\"id\"]}}"}, "name": "Trello29", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [2040, 281], "alwaysOutputData": true, "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "3d78422e-1c16-4ece-8aac-c62178ff0687"}, {"parameters": {"resource": "attachment", "operation": "create", "cardId": "={{$node[\"Trello10\"].json[\"id\"]}}", "url": "https://cdn-images-1.medium.com/max/159/1*b9a5qBIsH4Jn2b7Lqq9fHg@2x.png", "additionalFields": {}}, "name": "Trello30", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [590, 751], "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "38fa57aa-5631-469e-9c6f-a2f6fa5e87cf"}, {"parameters": {"resource": "attachment", "cardId": "={{$node[\"Trello10\"].json[\"id\"]}}", "additionalFields": {}}, "name": "Trello31", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [730, 751], "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "b6fa8d72-0a6e-471a-bfa9-46c70dc0f1cb"}, {"parameters": {"resource": "attachment", "operation": "get", "cardId": "={{$node[\"Trello10\"].json[\"id\"]}}", "id": "={{$node[\"Trello30\"].json[\"id\"]}}", "additionalFields": {}}, "name": "Trello32", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [890, 751], "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "d789d4bf-4a60-43da-963d-41fc5ea923e1"}, {"parameters": {"resource": "attachment", "operation": "delete", "cardId": "={{$node[\"Trello10\"].json[\"id\"]}}", "id": "={{$node[\"Trello30\"].json[\"id\"]}}"}, "name": "Trello33", "type": "n8n-nodes-base.trello", "typeVersion": 1, "position": [1050, 751], "credentials": {"trelloApi": {"id": "41", "name": "Trello creds"}}, "id": "7d6b761b-1dc0-45c6-852e-c5a7d1e7d3d7"}]
{"Trello": {"main": [[{"node": "Trello4", "type": "main", "index": 0}]]}, "Trello1": {"main": [[{"node": "Trello2", "type": "main", "index": 0}]]}, "Trello2": {"main": [[{"node": "Trello3", "type": "main", "index": 0}]]}, "Trello4": {"main": [[{"node": "Trello5", "type": "main", "index": 0}]]}, "Trello5": {"main": [[{"node": "Trello6", "type": "main", "index": 0}]]}, "Trello6": {"main": [[{"node": "Trello7", "type": "main", "index": 0}]]}, "Trello7": {"main": [[{"node": "Trello10", "type": "main", "index": 0}]]}, "Trello8": {"main": [[{"node": "Trello16", "type": "main", "index": 0}]]}, "Trello9": {"main": [[{"node": "Trello1", "type": "main", "index": 0}]]}, "Trello10": {"main": [[{"node": "Trello30", "type": "main", "index": 0}, {"node": "Trello11", "type": "main", "index": 0}, {"node": "Trello17", "type": "main", "index": 0}, {"node": "Trello20", "type": "main", "index": 0}]]}, "Trello11": {"main": [[{"node": "Trello12", "type": "main", "index": 0}]]}, "Trello12": {"main": [[{"node": "Trello13", "type": "main", "index": 0}]]}, "Trello14": {"main": [[{"node": "Trello15", "type": "main", "index": 0}]]}, "Trello15": {"main": [[{"node": "Trello8", "type": "main", "index": 0}]]}, "Trello16": {"main": [[{"node": "Trello9", "type": "main", "index": 0}]]}, "Trello17": {"main": [[{"node": "Trello18", "type": "main", "index": 0}]]}, "Trello18": {"main": [[{"node": "Trello19", "type": "main", "index": 0}]]}, "Trello20": {"main": [[{"node": "Trello21", "type": "main", "index": 0}]]}, "Trello21": {"main": [[{"node": "Trello22", "type": "main", "index": 0}]]}, "Trello22": {"main": [[{"node": "Trello23", "type": "main", "index": 0}]]}, "Trello23": {"main": [[{"node": "Trello24", "type": "main", "index": 0}]]}, "Trello24": {"main": [[{"node": "Trello25", "type": "main", "index": 0}]]}, "Trello25": {"main": [[{"node": "Trello26", "type": "main", "index": 0}]]}, "Trello26": {"main": [[{"node": "Trello27", "type": "main", "index": 0}]]}, "Trello27": {"main": [[{"node": "Trello28", "type": "main", "index": 0}]]}, "Trello28": {"main": [[{"node": "Trello29", "type": "main", "index": 0}]]}, "Trello29": {"main": [[{"node": "Trello14", "type": "main", "index": 0}]]}, "Trello30": {"main": [[{"node": "Trello31", "type": "main", "index": 0}]]}, "Trello31": {"main": [[{"node": "Trello32", "type": "main", "index": 0}]]}, "Trello32": {"main": [[{"node": "Trello33", "type": "main", "index": 0}]]}, "Start": {"main": [[{"node": "Trello", "type": "main", "index": 0}]]}}
Tapfiliate:Affiliate:create getAll get delete:ProgramAffiliate:add disapprove approve get getAll:AffiliateMetaData:add update remove
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "35279fb2-20b3-4fb0-b959-7a34dfdd053f"}, {"parameters": {"email": "=fake{{Date.now()}}@gmail.com", "firstname": "=Fname{{Date.now()}}", "lastname": "=Lname{{Date.now()}}", "additionalFields": {}}, "name": "Tapfiliate", "type": "n8n-nodes-base.tapfiliate", "typeVersion": 1, "position": [500, 300], "credentials": {"tapfiliateApi": {"id": "125", "name": "Tapfiliate API creds"}}, "id": "c69d2f6e-658d-4372-a697-f7e56b1a0f3e"}, {"parameters": {"operation": "getAll", "limit": 1, "filters": {}}, "name": "Tapfiliate1", "type": "n8n-nodes-base.tapfiliate", "typeVersion": 1, "position": [650, 300], "credentials": {"tapfiliateApi": {"id": "125", "name": "Tapfiliate API creds"}}, "id": "448a390b-2bf9-4676-bb8a-a963a6662117"}, {"parameters": {"operation": "get", "affiliateId": "={{$node[\"Tapfiliate\"].json[\"id\"]}}"}, "name": "Tapfiliate2", "type": "n8n-nodes-base.tapfiliate", "typeVersion": 1, "position": [800, 300], "credentials": {"tapfiliateApi": {"id": "125", "name": "Tapfiliate API creds"}}, "id": "6d5a78c3-8e56-4401-ada4-2de21b0710c6"}, {"parameters": {"operation": "delete", "affiliateId": "={{$node[\"Tapfiliate\"].json[\"id\"]}}"}, "name": "Tapfiliate3", "type": "n8n-nodes-base.tapfiliate", "typeVersion": 1, "position": [1850, 300], "credentials": {"tapfiliateApi": {"id": "125", "name": "Tapfiliate API creds"}}, "id": "b30f84fe-d53f-485a-8362-509e66c19060"}, {"parameters": {"resource": "affiliateMetadata", "affiliateId": "={{$node[\"Tapfiliate\"].json[\"id\"]}}", "metadataUi": {"metadataValues": [{"key": "source", "value": "n8n"}]}}, "name": "Tapfiliate4", "type": "n8n-nodes-base.tapfiliate", "typeVersion": 1, "position": [950, 400], "credentials": {"tapfiliateApi": {"id": "125", "name": "Tapfiliate API creds"}}, "id": "a6109eae-d935-48c9-a9aa-b06f15f604c9"}, {"parameters": {"resource": "affiliateMetadata", "operation": "update", "affiliateId": "={{$node[\"Tapfiliate\"].json[\"id\"]}}", "key": "source", "value": "n8n.io"}, "name": "Tapfiliate5", "type": "n8n-nodes-base.tapfiliate", "typeVersion": 1, "position": [1100, 400], "credentials": {"tapfiliateApi": {"id": "125", "name": "Tapfiliate API creds"}}, "id": "0492bf9a-1a4b-4282-8a07-1319fe026e45"}, {"parameters": {"resource": "affiliateMetadata", "operation": "remove", "affiliateId": "={{$node[\"Tapfiliate\"].json[\"id\"]}}", "key": "source"}, "name": "Tapfiliate6", "type": "n8n-nodes-base.tapfiliate", "typeVersion": 1, "position": [1250, 400], "credentials": {"tapfiliateApi": {"id": "125", "name": "Tapfiliate API creds"}}, "id": "baf74150-4967-4c31-8bbf-602ffdeef566"}, {"parameters": {"resource": "programAffiliate", "programId": "nodeqa-affiliate", "affiliateId": "={{$node[\"Tapfiliate\"].json[\"id\"]}}", "additionalFields": {}}, "name": "Tapfiliate7", "type": "n8n-nodes-base.tapfiliate", "typeVersion": 1, "position": [950, 200], "credentials": {"tapfiliateApi": {"id": "125", "name": "Tapfiliate API creds"}}, "id": "c909217e-f419-46b9-83fd-7a3b7c8203dc"}, {"parameters": {"resource": "programAffiliate", "operation": "disapprove", "programId": "nodeqa-affiliate", "affiliateId": "={{$node[\"Tapfiliate\"].json[\"id\"]}}"}, "name": "Tapfiliate8", "type": "n8n-nodes-base.tapfiliate", "typeVersion": 1, "position": [1100, 200], "credentials": {"tapfiliateApi": {"id": "125", "name": "Tapfiliate API creds"}}, "id": "9178e7d7-d054-466d-83c3-e99b09705035"}, {"parameters": {"resource": "programAffiliate", "operation": "approve", "programId": "nodeqa-affiliate", "affiliateId": "={{$node[\"Tapfiliate\"].json[\"id\"]}}"}, "name": "Tapfiliate9", "type": "n8n-nodes-base.tapfiliate", "typeVersion": 1, "position": [1250, 200], "credentials": {"tapfiliateApi": {"id": "125", "name": "Tapfiliate API creds"}}, "id": "8c873324-9d69-4bc8-97c8-3a3907aff5a2"}, {"parameters": {"resource": "programAffiliate", "operation": "get", "programId": "nodeqa-affiliate", "affiliateId": "={{$node[\"Tapfiliate\"].json[\"id\"]}}"}, "name": "Tapfiliate10", "type": "n8n-nodes-base.tapfiliate", "typeVersion": 1, "position": [1400, 200], "credentials": {"tapfiliateApi": {"id": "125", "name": "Tapfiliate API creds"}}, "id": "16dc0791-f3b0-4d70-ba91-8f68eaceb7e0"}, {"parameters": {"resource": "programAffiliate", "operation": "getAll", "programId": "nodeqa-affiliate", "limit": 1, "filters": {}}, "name": "Tapfiliate11", "type": "n8n-nodes-base.tapfiliate", "typeVersion": 1, "position": [1550, 200], "credentials": {"tapfiliateApi": {"id": "125", "name": "Tapfiliate API creds"}}, "id": "56c57083-92db-4e64-97d8-34fc470147de"}, {"parameters": {"mode": "wait"}, "name": "Merge", "type": "n8n-nodes-base.merge", "typeVersion": 1, "position": [1700, 300], "id": "8465e4b1-c77d-4522-8f59-df64f4582255"}]
{"Tapfiliate": {"main": [[{"node": "Tapfiliate1", "type": "main", "index": 0}]]}, "Tapfiliate1": {"main": [[{"node": "Tapfiliate2", "type": "main", "index": 0}]]}, "Start": {"main": [[{"node": "Tapfiliate", "type": "main", "index": 0}]]}, "Tapfiliate2": {"main": [[{"node": "Tapfiliate4", "type": "main", "index": 0}, {"node": "Tapfiliate7", "type": "main", "index": 0}]]}, "Tapfiliate4": {"main": [[{"node": "Tapfiliate5", "type": "main", "index": 0}]]}, "Tapfiliate5": {"main": [[{"node": "Tapfiliate6", "type": "main", "index": 0}]]}, "Tapfiliate7": {"main": [[{"node": "Tapfiliate8", "type": "main", "index": 0}]]}, "Tapfiliate8": {"main": [[{"node": "Tapfiliate9", "type": "main", "index": 0}]]}, "Tapfiliate9": {"main": [[{"node": "Tapfiliate10", "type": "main", "index": 0}]]}, "Tapfiliate10": {"main": [[{"node": "Tapfiliate11", "type": "main", "index": 0}]]}, "Tapfiliate11": {"main": [[{"node": "Merge", "type": "main", "index": 0}]]}, "Tapfiliate6": {"main": [[{"node": "Merge", "type": "main", "index": 1}]]}, "Merge": {"main": [[{"node": "Tapfiliate3", "type": "main", "index": 0}]]}}
OpenThesaurus:: Get Synonyms
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "d7c16b8e-f8b9-42dc-8c13-b38f754dac42"}, {"parameters": {"text": "Wasser", "options": {"similar": true}}, "name": "OpenThesaurus", "type": "n8n-nodes-base.openThesaurus", "typeVersion": 1, "position": [500, 300], "id": "54144d68-c88f-447d-8831-72754b58214a"}]
{"Start": {"main": [[{"node": "OpenThesaurus", "type": "main", "index": 0}]]}}
AI chatbot that can search the web
[{"id": "3a3bcb2d-cb94-40d8-8b9e-322ea9d27f6e", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [1000, 640], "parameters": {"width": 300, "height": 185, "content": "### The conversation history(last 20 messages) is stored in a buffer memory"}, "typeVersion": 1}, {"id": "e279af43-b003-4499-b221-58716e735379", "name": "On new manual Chat Message", "type": "@n8n/n8n-nodes-langchain.manualChatTrigger", "position": [740, 340], "parameters": {}, "typeVersion": 1}, {"id": "f4f8bf03-a43e-4a1f-a592-cd0f8408f552", "name": "Chat OpenAI", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [840, 653], "parameters": {"model": "gpt-4o-mini", "options": {"temperature": 0.3}}, "credentials": {"openAiApi": {"id": "8gccIjcuf3gvaoEr", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "66b60f68-bae8-4958-ac81-03883f563ab3", "name": "Wikipedia", "type": "@n8n/n8n-nodes-langchain.toolWikipedia", "position": [1480, 693], "parameters": {}, "typeVersion": 1}, {"id": "70f6b43b-9290-4fbc-992f-0895d4578c9f", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [1340, 633], "parameters": {"width": 300, "height": 185, "content": "### Tools which agent can use to accomplish the task"}, "typeVersion": 1}, {"id": "8696269f-6556-41f1-bbe4-5597e4e46e02", "name": "Sticky Note6", "type": "n8n-nodes-base.stickyNote", "position": [960, 260], "parameters": {"width": 422, "height": 211, "content": "### Conversational agent will utilise available tools to answer the prompt. "}, "typeVersion": 1}, {"id": "6814967b-4567-4cdd-bf09-6b1b5ed0c68e", "name": "Window Buffer Memory", "type": "@n8n/n8n-nodes-langchain.memoryBufferWindow", "position": [1100, 700], "parameters": {"contextWindowLength": 20}, "typeVersion": 1}, {"id": "ce4358ac-c2cc-45ba-b950-247f8360b36c", "name": "SerpAPI", "type": "@n8n/n8n-nodes-langchain.toolSerpApi", "position": [1380, 693], "parameters": {"options": {}}, "typeVersion": 1}, {"id": "de80add8-c37d-4d46-80ec-b43234e21150", "name": "AI Agent", "type": "@n8n/n8n-nodes-langchain.agent", "position": [1040, 340], "parameters": {"text": "={{ $json.input }}", "options": {}, "promptType": "define"}, "typeVersion": 1.6}]
{"SerpAPI": {"ai_tool": [[{"node": "AI Agent", "type": "ai_tool", "index": 0}]]}, "Wikipedia": {"ai_tool": [[{"node": "AI Agent", "type": "ai_tool", "index": 0}]]}, "Chat OpenAI": {"ai_languageModel": [[{"node": "AI Agent", "type": "ai_languageModel", "index": 0}]]}, "Window Buffer Memory": {"ai_memory": [[{"node": "AI Agent", "type": "ai_memory", "index": 0}]]}, "On new manual Chat Message": {"main": [[{"node": "AI Agent", "type": "main", "index": 0}]]}}
Analyze Suspicious Email Contents with ChatGPT Vision
[{"id": "1bad6bfc-9ec9-48a5-b8f7-73c4de3d08cf", "name": "Gmail Trigger", "type": "n8n-nodes-base.gmailTrigger", "position": [1480, 160], "parameters": {"simple": false, "filters": {}, "options": {}, "pollTimes": {"item": [{"mode": "everyMinute"}]}}, "credentials": {"gmailOAuth2": {"id": "kkhNhqKpZt6IUZd0", "name": " Gmail"}}, "typeVersion": 1.2}, {"id": "9ac747a1-4fd8-46ba-b4c1-75fd17aab2ed", "name": "Microsoft Outlook Trigger", "type": "n8n-nodes-base.microsoftOutlookTrigger", "disabled": true, "position": [1480, 720], "parameters": {"fields": ["body", "toRecipients", "subject", "bodyPreview"], "output": "fields", "filters": {}, "options": {}, "pollTimes": {"item": [{"mode": "everyMinute"}]}}, "credentials": {"microsoftOutlookOAuth2Api": {"id": "vTCK0oVQ0WjFrI5H", "name": " Outlook Credential"}}, "typeVersion": 1}, {"id": "5bf9b0e8-b84e-44a2-aad2-45dde3e4ab1b", "name": "Screenshot HTML", "type": "n8n-nodes-base.httpRequest", "position": [2520, 480], "parameters": {"url": "https://hcti.io/v1/image", "method": "POST", "options": {}, "sendBody": true, "sendQuery": true, "authentication": "genericCredentialType", "bodyParameters": {"parameters": [{"name": "html", "value": "={{ $json.htmlBody }}"}]}, "genericAuthType": "httpBasicAuth", "queryParameters": {"parameters": [{}]}}, "credentials": {"httpBasicAuth": {"id": "8tm8mUWmPvtmPFPk", "name": "hcti.io"}}, "typeVersion": 4.2}, {"id": "fc770d1d-6c18-4d14-8344-1dc042464df6", "name": "Retrieve Screenshot", "type": "n8n-nodes-base.httpRequest", "position": [2700, 480], "parameters": {"url": "={{ $json.url }}", "options": {}, "authentication": "genericCredentialType", "genericAuthType": "httpBasicAuth"}, "credentials": {"httpBasicAuth": {"id": "8tm8mUWmPvtmPFPk", "name": "hcti.io"}}, "typeVersion": 4.2}, {"id": "2f3e5cc0-24e8-450a-898b-71e2d6f7bb58", "name": "Set Outlook Variables", "type": "n8n-nodes-base.set", "position": [2020, 720], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "38bd3db2-1a8d-4c40-a2dd-336e0cc84224", "name": "htmlBody", "type": "string", "value": "={{ $('Microsoft Outlook Trigger').item.json.body.content }}"}, {"id": "13bdd95b-ef02-486e-b38b-d14bd05a4a8a", "name": "headers", "type": "string", "value": "={{ $json}}"}, {"id": "20566ad4-7eb7-42b1-8a0d-f8b759610f10", "name": "subject", "type": "string", "value": "={{ $('Microsoft Outlook Trigger').item.json.subject }}"}, {"id": "7171998f-a5a2-4e23-946a-9c1ad75710e7", "name": "recipient", "type": "string", "value": "={{ $('Microsoft Outlook Trigger').item.json.toRecipients[0].emailAddress.address }}"}, {"id": "cc262634-2470-4524-8319-abe2518a6335", "name": "textBody", "type": "string", "value": "={{ $('Retrieve Headers of Email').item.json.body.content }}"}]}}, "typeVersion": 3.4}, {"id": "374e5b16-a666-4706-9fd2-762b2927012d", "name": "Set Gmail Variables", "type": "n8n-nodes-base.set", "position": [2040, 160], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "38bd3db2-1a8d-4c40-a2dd-336e0cc84224", "name": "htmlBody", "type": "string", "value": "={{ $json.html }}"}, {"id": "18fbcf78-6d3c-4036-b3a2-fb5adf22176a", "name": "headers", "type": "string", "value": "={{ $json.headers }}"}, {"id": "1d690098-be2a-4604-baf8-62f314930929", "name": "subject", "type": "string", "value": "={{ $json.subject }}"}, {"id": "8009f00a-547f-4eb1-b52d-2e7305248885", "name": "recipient", "type": "string", "value": "={{ $json.to.text }}"}, {"id": "1932e97d-b03b-4964-b8bc-8262aaaa1f7a", "name": "textBody", "type": "string", "value": "={{ $json.text }}"}]}}, "typeVersion": 3.4}, {"id": "3166738e-d0a3-475b-8b19-51afd519ee3a", "name": "Retrieve Headers of Email", "type": "n8n-nodes-base.httpRequest", "position": [1680, 720], "parameters": {"url": "=https://graph.microsoft.com/v1.0/me/messages/{{ $json.id }}?$select=internetMessageHeaders,body", "options": {}, "sendHeaders": true, "authentication": "predefinedCredentialType", "headerParameters": {"parameters": [{"name": "Accept", "value": "application/json"}, {"name": "Prefer", "value": "outlook.body-content-type=\"text\""}]}, "nodeCredentialType": "microsoftOutlookOAuth2Api"}, "credentials": {"microsoftOutlookOAuth2Api": {"id": "vTCK0oVQ0WjFrI5H", "name": " Outlook Credential"}}, "typeVersion": 4.2}, {"id": "25ae222c-088f-4565-98d6-803c8c1b0826", "name": "Format Headers", "type": "n8n-nodes-base.code", "position": [1860, 720], "parameters": {"jsCode": "const input = $('Retrieve Headers of Email').item.json.internetMessageHeaders;\n\nconst result = input.reduce((acc, { name, value }) => {\n if (!acc[name]) acc[name] = [];\n acc[name].push(value);\n return acc;\n}, {});\n\nreturn result;"}, "typeVersion": 2}, {"id": "8f14f267-1074-43ea-968d-26a6ab36fd7b", "name": "Set Email Variables", "type": "n8n-nodes-base.set", "position": [2360, 480], "parameters": {"options": {}, "includeOtherFields": true}, "typeVersion": 3.4}, {"id": "45d156aa-91f4-483c-91d4-c9de4a4f595d", "name": "ChatGPT Analysis", "type": "@n8n/n8n-nodes-langchain.openAi", "position": [3100, 480], "parameters": {"text": "=Describe this image. Determine if the email could be a phishing email. The message headers are as follows:\n{{ $('Set Email Variables').item.json.headers }}\n\nFormat the response for Jira who uses a wiki-style renderer. Do not include ``` around your response.", "modelId": {"__rl": true, "mode": "list", "value": "chatgpt-4o-latest", "cachedResultName": "CHATGPT-4O-LATEST"}, "options": {"maxTokens": 1500}, "resource": "image", "inputType": "base64", "operation": "analyze"}, "credentials": {"openAiApi": {"id": "76", "name": "OpenAi account"}}, "typeVersion": 1.6}, {"id": "62ca591b-6627-496c-96a7-95cb0081480d", "name": "Create Jira Ticket", "type": "n8n-nodes-base.jira", "position": [3500, 480], "parameters": {"project": {"__rl": true, "mode": "list", "value": "10001", "cachedResultName": "Support"}, "summary": "=Phishing Email Reported: \"{{ $('Set Email Variables').item.json.subject }}\"", "issueType": {"__rl": true, "mode": "list", "value": "10008", "cachedResultName": "Task"}, "additionalFields": {"description": "=A phishing email was reported by {{ $('Set Email Variables').item.json.recipient }} with the subject line \"{{ $('Set Email Variables').item.json.subject }}\" and body:\n{{ $('Set Email Variables').item.json.textBody }}\n\\\\\n\\\\\n\\\\\nh2. Here is ChatGPT's analysis of the email:\n{{ $json.content }}"}}, "credentials": {"jiraSoftwareCloudApi": {"id": "BZmmGUrNIsgM9fDj", "name": "New Jira Cloud"}}, "typeVersion": 1}, {"id": "071380c8-8070-4f8f-86c6-87c4ee3bc261", "name": "Rename Screenshot", "type": "n8n-nodes-base.code", "position": [3680, 480], "parameters": {"mode": "runOnceForEachItem", "jsCode": "$('Retrieve Screenshot').item.binary.data.fileName = 'emailScreenshot.png'\n\nreturn $('Retrieve Screenshot').item;"}, "typeVersion": 2}, {"id": "05c57490-c1ee-48f0-9e38-244c9a995e22", "name": "Upload Screenshot of Email to Jira", "type": "n8n-nodes-base.jira", "position": [3860, 480], "parameters": {"issueKey": "={{ $('Create Jira Ticket').item.json.key }}", "resource": "issueAttachment"}, "credentials": {"jiraSoftwareCloudApi": {"id": "BZmmGUrNIsgM9fDj", "name": "New Jira Cloud"}}, "typeVersion": 1}, {"id": "be02770d-a943-41f5-98a9-5c433a6a3dbf", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [1420, -107.36679523834897], "parameters": {"color": 7, "width": 792.3026315789474, "height": 426.314163659402, "content": "![Gmail](https://uploads.n8n.io/templates/gmail.png)\n## Gmail Integration and Data Extraction\n\nThis section of the workflow connects to a Gmail account using the **Gmail Trigger** node, capturing incoming emails in real-time, with checks performed every minute. Once an email is detected, its key components\u2014such as the subject, recipient, body, and headers\u2014are extracted and assigned to variables using the **Set Gmail Variables** node. These variables are structured for subsequent analysis and processing in later steps."}, "typeVersion": 1}, {"id": "c1d2f691-669a-46de-9ef8-59ce4e6980c5", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [1420, 380.6918768014301], "parameters": {"color": 7, "width": 792.3026315789474, "height": 532.3344389880435, "content": "![Gmail](https://uploads.n8n.io/templates/outlook.png)\n## Microsoft Outlook Integration and Email Header Processing\n\nThis section connects to a Microsoft Outlook account to monitor incoming emails using the **Microsoft Outlook Trigger** node, which checks for new messages every minute. Emails are then processed to retrieve detailed headers and body content via the **Retrieve Headers of Email** node. The headers are structured into a user-friendly format using the **Format Headers** code node, ensuring clarity for further analysis. Key details, including the email's subject, recipient, and body content, are assigned to variables with the **Set Outlook Variables** node for streamlined integration into subsequent workflow steps."}, "typeVersion": 1}, {"id": "c189e2e0-9f51-4bc0-a483-8b7f0528be70", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [2287.3684210526317, 46.18421052631584], "parameters": {"color": 7, "width": 580.4605263157906, "height": 615.460526315789, "content": "![hctiapi](https://uploads.n8n.io/templates/hctiapi.png)\n## HTML Screenshot Generation and Email Visualization\n\nThis section processes an email\u2019s HTML content to create a visual representation, useful for documentation or phishing detection workflows. The **Set Email Variables** node organizes the email's HTML body into a format ready for processing. The **Screenshot HTML** node sends this HTML content to the **hcti.io** API, which generates a screenshot of the email's layout. The **Retrieve Screenshot** node then fetches the image URL for further use in the workflow. This setup ensures that the email's appearance is preserved in a visually accessible format, simplifying review and reporting. Keep in mind however that this exposes the email content to a third party. If you self host n8n, you can deploy a cli tool to rasterize locally instead."}, "typeVersion": 1}, {"id": "9076f9e9-f4fb-409a-9580-1ae459094c31", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [2880, 123.72476075009968], "parameters": {"color": 7, "width": 507.82894736842223, "height": 537.9199760920052, "content": "![hctiapi](https://uploads.n8n.io/templates/openai.png)\n## AI-Powered Email Analysis with ChatGPT\n\nThis section leverages AI to analyze email content and headers for phishing indicators. The **ChatGPT Analysis** node utilizes the ChatGPT-4 model to review the email screenshot and associated metadata, including message headers. It generates a detailed report indicating whether the email might be a phishing attempt. The output is formatted specifically for Jira\u2019s wiki-style renderer, making it ready for seamless integration into ticketing workflows. This ensures thorough and automated email threat assessments."}, "typeVersion": 1}, {"id": "ca2488af-e787-4675-802a-8b4f2d845376", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [3400, 122.88662032580646], "parameters": {"color": 7, "width": 692.434210526317, "height": 529.5475902005091, "content": "![hctiapi](https://uploads.n8n.io/templates/jira.png)\n## Automated Jira Ticket Creation for Phishing Reports\n\nThis section streamlines the process of reporting phishing emails by automatically creating detailed Jira tickets. The **Create Jira Ticket** node compiles email information, including the subject, recipient, body text, and ChatGPT's phishing analysis, into a structured ticket. The **Rename Screenshot** node ensures that the email screenshot file is appropriately labeled for attachment. Finally, the **Upload Screenshot of Email to Jira** node attaches the email\u2019s visual representation to the ticket, providing additional context for the security team. This integration ensures that phishing reports are logged with all necessary details, enabling efficient tracking and resolution."}, "typeVersion": 1}]
{"Gmail Trigger": {"main": [[{"node": "Set Gmail Variables", "type": "main", "index": 0}]]}, "Format Headers": {"main": [[{"node": "Set Outlook Variables", "type": "main", "index": 0}]]}, "Screenshot HTML": {"main": [[{"node": "Retrieve Screenshot", "type": "main", "index": 0}]]}, "ChatGPT Analysis": {"main": [[{"node": "Create Jira Ticket", "type": "main", "index": 0}]]}, "Rename Screenshot": {"main": [[{"node": "Upload Screenshot of Email to Jira", "type": "main", "index": 0}]]}, "Create Jira Ticket": {"main": [[{"node": "Rename Screenshot", "type": "main", "index": 0}]]}, "Retrieve Screenshot": {"main": [[{"node": "ChatGPT Analysis", "type": "main", "index": 0}]]}, "Set Email Variables": {"main": [[{"node": "Screenshot HTML", "type": "main", "index": 0}]]}, "Set Gmail Variables": {"main": [[{"node": "Set Email Variables", "type": "main", "index": 0}]]}, "Set Outlook Variables": {"main": [[{"node": "Set Email Variables", "type": "main", "index": 0}]]}, "Microsoft Outlook Trigger": {"main": [[{"node": "Retrieve Headers of Email", "type": "main", "index": 0}]]}, "Retrieve Headers of Email": {"main": [[{"node": "Format Headers", "type": "main", "index": 0}]]}}
Qualifying Appointment Requests with AI & n8n Forms
[{"id": "76589d1c-45f3-4a89-906f-8ef300d34964", "name": "n8n Form Trigger", "type": "n8n-nodes-base.formTrigger", "position": [-2520, -280], "webhookId": "5e7637dd-d222-4786-8cdc-7b66cebc1481", "parameters": {"path": "schedule_appointment", "options": {"ignoreBots": true, "appendAttribution": true, "useWorkflowTimezone": true}, "formTitle": "Schedule an Appointment", "formFields": {"values": [{"fieldLabel": "Your Name", "placeholder": "eg. Sam Smith", "requiredField": true}, {"fieldType": "email", "fieldLabel": "Email", "placeholder": "eg. sam@example.com", "requiredField": true}, {"fieldType": "textarea", "fieldLabel": "Enquiry", "placeholder": "eg. I'm looking for...", "requiredField": true}]}, "formDescription": "Welcome to Jim's Appointment Form.\nBefore we set a date, please tell me a little about yourself and how I can help."}, "typeVersion": 2.1}, {"id": "194b7073-fa33-4e75-85ed-c02724c8075c", "name": "Form End", "type": "n8n-nodes-base.form", "position": [-420, -260], "webhookId": "8fcc907b-bc2e-4fdf-a829-82c83e677724", "parameters": {"options": {"formTitle": "Appointment Request Sent!"}, "operation": "completion", "completionTitle": "Appointment Request Sent!", "completionMessage": "=Thank you for submitting an appointment request. A confirmation of this request will be sent to your inbox. I'll get back to you shortly with a confirmation of the appointment.\n\nHere is the summary of the appointment request.\n\nName: {{ $('Get Form Values').item.json.name }}\nDate & Time: {{ DateTime.fromISO($('Get Form Values').item.json.dateTime).format('EEE, dd MMM @ t') }}\nEnquiry: {{ $('Get Form Values').item.json.enquiry.trim() }}\n"}, "typeVersion": 1}, {"id": "688ea2cc-b595-4b6f-9214-d5dfd3893172", "name": "Enter Date & Time", "type": "n8n-nodes-base.form", "position": [-1260, -320], "webhookId": "0cd03415-66f8-4c82-8069-5bfd8ea310bd", "parameters": {"options": {"formTitle": "Enter a Date & Time", "formDescription": "=Please select a date and time"}, "defineForm": "json", "jsonOutput": "={{\n[\n {\n \"fieldLabel\":\"Date\",\n \"requiredField\":true,\n \"fieldType\": \"dropdown\",\n \"fieldOptions\":\n Array(5).fill(0)\n .map((_,idx) => $now.plus(idx+1, 'day'))\n .filter(d => !d.isWeekend)\n .map(d => ({ option: d.format('EEE, d MMM') }))\n },\n {\n \"fieldLabel\": \"Time\",\n \"requiredField\": true,\n \"fieldType\": \"dropdown\",\n \"fieldOptions\": [\n { \"option\": \"9:00 am\" },\n { \"option\": \"10:00 am\" },\n { \"option\": \"11:00 am\" },\n { \"option\": \"12:00 pm\" },\n { \"option\": \"1:00 pm\" },\n { \"option\": \"2:00 pm\" },\n { \"option\": \"3:00 pm\" },\n { \"option\": \"4:00 pm\" },\n { \"option\": \"5:00 pm\" },\n { \"option\": \"6:00 pm\" }\n ]\n }\n]\n}}"}, "typeVersion": 1}, {"id": "602c40f9-ab11-4908-aab3-1a199126e097", "name": "Get Form Values", "type": "n8n-nodes-base.set", "position": [-900, -260], "parameters": {"mode": "raw", "options": {}, "jsonOutput": "={{\n{\n name: $('n8n Form Trigger').first().json['Your Name'],\n email: $('n8n Form Trigger').first().json.Email,\n enquiry: $('n8n Form Trigger').first().json.Enquiry,\n dateTime: DateTime.fromFormat(`${$json.Date} ${$json.Time}`, \"EEE, dd MMM t\"),\n submittedAt: $('n8n Form Trigger').first().json.submittedAt,\n}\n}}"}, "typeVersion": 3.4}, {"id": "21f93645-5e27-4e9f-a72c-47a39e42a79c", "name": "Terms & Conditions", "type": "n8n-nodes-base.form", "position": [-1680, -240], "webhookId": "dcf32f99-8fb7-457a-8a58-ac1a018b1873", "parameters": {"options": {"formTitle": "Before we continue...", "formDescription": "=Terms and Conditions for Booking an Appointment\n\nNon-Binding Nature of Discussions:\nAny information shared, discussed, or agreed upon during the call is non-binding and provisional. No agreement, service, or commitment shall be considered confirmed unless explicitly documented and agreed to in writing.\n\nProhibition of Recording and Note-Taking Tools:\nBy proceeding with the appointment, the user agrees not to use AI assistants, note-taking applications, recording devices, or any other technology to record or transcribe the conversation, whether manually or automatically. This is to ensure confidentiality and respect for the integrity of the discussion.\n\nConfirmation of Understanding:\nBy booking this appointment, you acknowledge and accept these terms and conditions in full."}, "formFields": {"values": [{"fieldType": "dropdown", "fieldLabel": "Please select", "multiselect": true, "fieldOptions": {"values": [{"option": "I accept the terms and conditions"}]}, "requiredField": true}]}}, "typeVersion": 1}, {"id": "22e03fec-bd56-4fc3-864a-f1e81a864cb5", "name": "OpenAI Chat Model", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [-2340, -140], "parameters": {"options": {}}, "credentials": {"openAiApi": {"id": "8gccIjcuf3gvaoEr", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "8b4e9bba-cd57-46af-8042-4b47e5ebcd82", "name": "Has Accepted?", "type": "n8n-nodes-base.if", "position": [-1500, -240], "parameters": {"options": {}, "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "bc7c3e99-e610-4997-82a7-4851f2c04c19", "operator": {"type": "string", "operation": "startsWith"}, "leftValue": "={{ $json[\"Please select\"] }}", "rightValue": "I accept"}]}}, "typeVersion": 2.2}, {"id": "627a4c00-e831-4a77-8aad-f417f0f8e6dd", "name": "Send Receipt", "type": "n8n-nodes-base.gmail", "position": [-580, -260], "webhookId": "5f590407-4ab9-4ae6-bb85-38dbe41d6dce", "parameters": {"sendTo": "={{ $('Get Form Values').first().json.email }}", "message": "=<p>Dear {{ $('Get Form Values').first().json.name }},</p>\n<p>Thanks for requesting an appointment. We will review and get back to you shortly.</p>\n<p>Here is the summary of the request that was sent:</p>\n<p>\nName: {{ $('Get Form Values').first().json.name }}<br/>\nEmail: {{ $('Get Form Values').first().json.email }}<br/>\nEnquiry: {{ $('Get Form Values').first().json.enquiry }}<br/>\nSubmitted at: {{ $('Get Form Values').first().json.submittedAt }}\n</p>\n", "options": {}, "subject": "=Appointment Request Received for {{ DateTime.fromISO($('Get Form Values').first().json.dateTime).format('EEE, dd MMM @ t') }}"}, "credentials": {"gmailOAuth2": {"id": "Sf5Gfl9NiFTNXFWb", "name": "Gmail account"}}, "typeVersion": 2.1}, {"id": "91d3dd7d-53f8-4f8e-9af2-ec54cf7f42ad", "name": "Wait for Approval", "type": "n8n-nodes-base.gmail", "position": [340, -260], "webhookId": "ab9c6c5e-334d-44bb-a8fd-a58140bc680d", "parameters": {"sendTo": "=admin@example.com", "message": "=<h2>A new appointment request was submitted!</h2>\n<p>\nRequesting appointment date is <strong>{{ DateTime.fromISO($('Execute Workflow Trigger').item.json.dateTime).format('EEE, dd MMM @ t') }}</strong>.\n</p>\n<p>\nName: {{ $('Execute Workflow Trigger').first().json.name }}<br/>\nEmail: {{ $('Execute Workflow Trigger').first().json.email }}<br/>\nEnquiry Summary: {{ $json.text }}<br/>\nSubmitted at: {{ $('Execute Workflow Trigger').first().json.submittedAt }}\n</p>", "subject": "New Appointment Request!", "operation": "sendAndWait", "approvalOptions": {"values": {"approvalType": "double", "approveLabel": "Confirm"}}}, "credentials": {"gmailOAuth2": {"id": "Sf5Gfl9NiFTNXFWb", "name": "Gmail account"}}, "typeVersion": 2.1}, {"id": "7a02b57b-b9b1-45b1-9b3d-aebb84259875", "name": "Has Approval?", "type": "n8n-nodes-base.if", "position": [520, -260], "parameters": {"options": {}, "conditions": {"options": {"version": 2, "leftValue": "", "caseSensitive": true, "typeValidation": "strict"}, "combinator": "and", "conditions": [{"id": "e5e37acb-9e9d-4a9e-bf59-a35dfc035886", "operator": {"type": "boolean", "operation": "true", "singleValue": true}, "leftValue": "={{ $json.data.approved }}", "rightValue": ""}]}}, "typeVersion": 2.2}, {"id": "96aab8be-4c5e-4e14-a6ea-6d2b743551be", "name": "OpenAI Chat Model1", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [0, -120], "parameters": {"options": {}}, "credentials": {"openAiApi": {"id": "8gccIjcuf3gvaoEr", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "6f2b5454-70a3-4391-b785-bb871c3e2081", "name": "Create Appointment", "type": "n8n-nodes-base.googleCalendar", "position": [720, -340], "parameters": {"end": "={{ DateTime.fromISO($('Execute Workflow Trigger').first().json.dateTime).plus(30, 'minute').toISO() }}", "start": "={{ $('Execute Workflow Trigger').first().json.dateTime }}", "calendar": {"__rl": true, "mode": "list", "value": "c_5792bdf04bc395cbcbc6f7b754268245a33779d36640cc80a357711aa2f09a0a@group.calendar.google.com", "cachedResultName": "n8n-events"}, "additionalFields": {"summary": "=Appointment Scheduled - {{ $('Execute Workflow Trigger').item.json.name }} & Jim", "attendees": ["={{ $('Execute Workflow Trigger').item.json.email }}"], "description": "={{ $('Summarise Enquiry').first().json.text }}\n\nOriginal message:\n> {{ $('Execute Workflow Trigger').item.json.enquiry }}", "conferenceDataUi": {"conferenceDataValues": {"conferenceSolution": "hangoutsMeet"}}}}, "credentials": {"googleCalendarOAuth2Api": {"id": "kWMxmDbMDDJoYFVK", "name": "Google Calendar account"}}, "typeVersion": 1.2}, {"id": "e6881867-5b3c-4b85-b06a-a0a3c01be227", "name": "Send Rejection", "type": "n8n-nodes-base.gmail", "position": [720, -180], "webhookId": "5f590407-4ab9-4ae6-bb85-38dbe41d6dce", "parameters": {"sendTo": "={{ $('Execute Workflow Trigger').first().json.email }}", "message": "=<p>Dear {{ $('Execute Workflow Trigger').first().json.name }},</p>\n<p>Unfortunately, we cannot schedule the requested appointment at the requested time.</p>\n<p>Kind regards</p>\n", "options": {}, "subject": "=Appointment Request Rejected for {{ DateTime.fromISO($('Execute Workflow Trigger').first().json.dateTime).format('EEE, dd MMM @ t') }}"}, "credentials": {"gmailOAuth2": {"id": "Sf5Gfl9NiFTNXFWb", "name": "Gmail account"}}, "typeVersion": 2.1}, {"id": "40785eca-943c-45f6-b4a9-0c95538621ed", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [-2580, -555.2889298043726], "parameters": {"color": 7, "width": 763.0427617951669, "height": 611.898918296892, "content": "## 1. Qualify Enquiries Using AI\n[Learn more about the text classifier](https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.text-classifier/)\n\nWith n8n's multi-forms, you\u2019re no longer stuck creating long, overwhelming forms. Instead, you have more flexibility and control to design smarter, more engaging form experiences.\n\nIn this demo, we\u2019ll explore an appointment request scenario where a user wants to schedule a call to discuss their inquiry. However, not all inquiries require a meeting, making it a perfect use case for AI to pre-qualify the request. We can handle this validation using the text classifier node."}, "typeVersion": 1}, {"id": "985be8d1-e77a-475b-9ac2-dba163dbd950", "name": "Sticky Note6", "type": "n8n-nodes-base.stickyNote", "position": [-1800, -549.8684464902185], "parameters": {"color": 7, "width": 781.472405063291, "height": 606.0718987341766, "content": "## 2. Split Form For Better User Experience\n[Learn more about the forms](https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.form)\n\nOnboarding is a great reason to split your big form into smaller ones. Taking the user through a step by step process ensures a smooth experience and keeps them engaged throughout.\n\nHere, we take the opportunity of the extra context space to display a terms and conditions which the user must agree to making their request. The next form then asks for desired date and time of the event."}, "typeVersion": 1}, {"id": "9b0a3f0e-e15d-4d0e-b620-1acc78bf812c", "name": "Decline", "type": "n8n-nodes-base.form", "position": [-2020, -160], "webhookId": "4353eadb-b7a0-45f2-8dd8-5f6cd882d8d8", "parameters": {"options": {}, "operation": "completion", "completionTitle": "Send me a DM Instead!", "completionMessage": "Thanks for your enquiry but it may not necessarily need an appointment. Please feel free to email me instead at jim@example.com."}, "typeVersion": 1}, {"id": "fcd3eb7d-6389-4c07-97cc-275ae387c963", "name": "Decline1", "type": "n8n-nodes-base.form", "position": [-1260, -160], "webhookId": "4353eadb-b7a0-45f2-8dd8-5f6cd882d8d8", "parameters": {"options": {}, "operation": "completion", "completionTitle": "Send me a DM Instead!", "completionMessage": "Thanks for your enquiry but it may not necessarily need an appointment. Please feel free to email me instead at jim@example.com."}, "typeVersion": 1}, {"id": "d89427cb-fffb-4aa4-b55c-b315fa0e92be", "name": "Sticky Note7", "type": "n8n-nodes-base.stickyNote", "position": [-1000, -498.80432681242814], "parameters": {"color": 7, "width": 792.9401150747982, "height": 497.4250863060987, "content": "## 3. Send Acknowledgement to User and Start Approval Process\n[Learn more about the Gmail node](https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.gmail/)\n\nOnce all form steps are concluded, we can send a notification to the requester via email and in the background, trigger another email to the admin to initiate the approval process. The approval process works in a separate execution so doesn't interrupt the user's form experience."}, "typeVersion": 1}, {"id": "041081e1-ee98-4b40-aa14-1980b23f4031", "name": "Sticky Note8", "type": "n8n-nodes-base.stickyNote", "position": [-160, -620], "parameters": {"color": 7, "width": 609.4228768699652, "height": 287.178089758343, "content": "## 4. Approve or Decline Appointment\n[Learn more about the Waiting for Approval](https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.gmail/message-operations/#send-a-message-and-wait-for-approval)\n\nThe Wait for Approval feature for Gmail is a special operation which allows for human-in-the-loop interaction in n8n workflows. In this example, the human interaction is the approval of the appointment request. The feature will put the workflow in a waiting state where a message is sent to the admin with 2 buttons: confirm and decline.\n\nWhen the admin clicks on the confirm button, the workflow resumes from the Gmail node and a meeting event is created for the requesting user in Google Calendar.\n\nWhen declined, a rejection email is sent to the requester instead."}, "typeVersion": 1}, {"id": "d6af0f50-234f-46ca-aa41-7f3891aff8a3", "name": "Trigger Approval Process", "type": "n8n-nodes-base.executeWorkflow", "position": [-740, -260], "parameters": {"mode": "each", "options": {"waitForSubWorkflow": false}, "workflowId": {"__rl": true, "mode": "id", "value": "={{ $workflow.id }}"}}, "typeVersion": 1.1}, {"id": "e524d6df-9b6d-4d61-8e71-08a0d3a751d7", "name": "Execute Workflow Trigger", "type": "n8n-nodes-base.executeWorkflowTrigger", "position": [-160, -260], "parameters": {}, "typeVersion": 1}, {"id": "74dccbc1-7728-4336-a18a-2541007fd369", "name": "Summarise Enquiry", "type": "@n8n/n8n-nodes-langchain.chainLlm", "position": [0, -260], "parameters": {"text": "=The enquiry is as follows:\n{{ $('Execute Workflow Trigger').first().json.enquiry.substring(0, 500) }}", "messages": {"messageValues": [{"message": "Summarise the given enquiry"}]}, "promptType": "define"}, "typeVersion": 1.5}, {"id": "b74f0f5a-39f0-4db3-beba-03caf981c5d2", "name": "Sticky Note9", "type": "n8n-nodes-base.stickyNote", "position": [-3080, -640], "parameters": {"width": 468.6766398158801, "height": 690.6653164556957, "content": "## Try it out!\n\n### This n8n template is a simple appointment scheduling workflow using n8n forms with AI thrown in the mix for good measure. It also uses n8n's wait for approval feature which allows the ability to confirm appointment requests and create events in Google Calendar.\n\n### How it works\n* We start with a form trigger which asks for the purpose of the appointment.\n* Instantly, we can qualify this by using a text classifier node which uses AI's contextual understanding to ensure the appointment is worthwhile. If not, an alternative is suggested instead.\n* Multi-page forms are then used to set the terms of the appointment and ask the user for a desired date and time.\n* An acknowledgement is sent to the user while an approval by email process is triggered in the background.\n* In a subworkflow, we use Gmail with the wait for approval operation to send an approval form to the admin user who can either confirm or decline the appointment request.\n* When approved, a Google Calendar event is created. When declined, the user is notified via email that the appointment request was declined.\n\n### Need Help?\nJoin the [Discord](https://discord.com/invite/XPKeKXeB7d) or ask in the [Forum](https://community.n8n.io/)!\n\nHappy Hacking!\n"}, "typeVersion": 1}, {"id": "d3c87dfa-d6e5-402a-89e5-6d8f93b824a6", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [299, -280], "parameters": {"width": 177.66444188722656, "height": 257.56869965477557, "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n### \ud83d\udea8 Set your admin email here!"}, "typeVersion": 1}, {"id": "6351121d-6ebe-432d-b370-13296fd58e1a", "name": "Enquiry Classifier", "type": "@n8n/n8n-nodes-langchain.textClassifier", "position": [-2340, -280], "parameters": {"options": {"fallback": "other"}, "inputText": "={{ $json.Enquiry }}", "categories": {"categories": [{"category": "relevant enquiry", "description": "Enquire about AI, automation, digital products and product engineering."}]}}, "typeVersion": 1}]
{"Send Receipt": {"main": [[{"node": "Form End", "type": "main", "index": 0}]]}, "Has Accepted?": {"main": [[{"node": "Enter Date & Time", "type": "main", "index": 0}], [{"node": "Decline1", "type": "main", "index": 0}]]}, "Has Approval?": {"main": [[{"node": "Create Appointment", "type": "main", "index": 0}], [{"node": "Send Rejection", "type": "main", "index": 0}]]}, "Get Form Values": {"main": [[{"node": "Trigger Approval Process", "type": "main", "index": 0}]]}, "n8n Form Trigger": {"main": [[{"node": "Enquiry Classifier", "type": "main", "index": 0}]]}, "Enter Date & Time": {"main": [[{"node": "Get Form Values", "type": "main", "index": 0}]]}, "OpenAI Chat Model": {"ai_languageModel": [[{"node": "Enquiry Classifier", "type": "ai_languageModel", "index": 0}]]}, "Summarise Enquiry": {"main": [[{"node": "Wait for Approval", "type": "main", "index": 0}]]}, "Wait for Approval": {"main": [[{"node": "Has Approval?", "type": "main", "index": 0}]]}, "Enquiry Classifier": {"main": [[{"node": "Terms & Conditions", "type": "main", "index": 0}], [{"node": "Decline", "type": "main", "index": 0}]]}, "OpenAI Chat Model1": {"ai_languageModel": [[{"node": "Summarise Enquiry", "type": "ai_languageModel", "index": 0}]]}, "Terms & Conditions": {"main": [[{"node": "Has Accepted?", "type": "main", "index": 0}]]}, "Execute Workflow Trigger": {"main": [[{"node": "Summarise Enquiry", "type": "main", "index": 0}]]}, "Trigger Approval Process": {"main": [[{"node": "Send Receipt", "type": "main", "index": 0}]]}}
Voice RAG Chatbot with ElevenLabs and OpenAI
[{"id": "5898da57-38b0-4d29-af25-fe029cda7c4a", "name": "AI Agent", "type": "@n8n/n8n-nodes-langchain.agent", "position": [-180, 800], "parameters": {"text": "={{ $json.body.question }}", "options": {}, "promptType": "define"}, "typeVersion": 1.7}, {"id": "81bbedb6-5a07-4977-a68f-2bdc75b17aba", "name": "Vector Store Tool", "type": "@n8n/n8n-nodes-langchain.toolVectorStore", "position": [20, 1040], "parameters": {"name": "company", "description": "Risponde alle domande relative a ci\u00f2 che ti viene chiesto"}, "typeVersion": 1}, {"id": "fd021f6c-248d-41f4-a4f9-651e70692327", "name": "Qdrant Vector Store", "type": "@n8n/n8n-nodes-langchain.vectorStoreQdrant", "position": [-140, 1300], "parameters": {"options": {}, "qdrantCollection": {"__rl": true, "mode": "id", "value": "=COLLECTION"}}, "credentials": {"qdrantApi": {"id": "iyQ6MQiVaF3VMBmt", "name": "QdrantApi account"}}, "typeVersion": 1}, {"id": "84aca7bb-4812-498f-b319-88831e4ca412", "name": "Embeddings OpenAI", "type": "@n8n/n8n-nodes-langchain.embeddingsOpenAi", "position": [-140, 1460], "parameters": {"options": {}}, "credentials": {"openAiApi": {"id": "CDX6QM4gLYanh0P4", "name": "OpenAi account"}}, "typeVersion": 1.1}, {"id": "82e430db-2ad7-427d-bcf9-6aa226253d18", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [-760, 520], "parameters": {"color": 5, "width": 1400, "height": 240, "content": "# STEP 4\n\n## RAG System\n\nClick on \"test workflow\" on n8n and \"Test AI agent\" on ElevenLabs. If everything is configured correctly, when you ask a question to the agent, the webhook on n8n is activated with the \"question\" field in the body filled with the question asked to the voice agent.\n\nThe AI \u200b\u200bAgent will extract the information from the vector database, send it to the model to create the response which will be sent via the response webhook to ElevenLabs which will transform it into voice"}, "typeVersion": 1}, {"id": "6a19e9fa-50fa-4d51-ba41-d03c999e4649", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [-780, -880], "parameters": {"color": 3, "width": 1420, "height": 360, "content": "# STEP 1\n\n## Create an Agent on ElevenLabs \n- Create an agent on ElevenLabs (eg. test_n8n)\n- Add \"First message\" (eg. Hi, Can I help you?)\n- Add the \"System Prompt\" message... eg:\n'You are the waiter of \"Pizzeria da Michele\" in Verona. If you are asked a question, use the tool \"test_chatbot_elevenlabs\". When you receive the answer from \"test_chatbot_elevenlabs\" answer the user clearly and precisely.'\n- In Tools add a Webhook called eg. \"test_chatbot_elevenlabs\" and add the following description:\n'You are the waiter. Answer the questions asked and store them in the question field.'\n- Add the n8n webhook URL (method POST)\n- Enable \"Body Parameters\" and insert in the description \"Ask the user the question to ask the place.\", then in the \"Properties\" add a data type string called \"question\", value type \"LLM Prompt\" and description \"user question\""}, "typeVersion": 1}, {"id": "ec053ee7-3a4a-4697-a08c-5645810d23f0", "name": "When clicking \u2018Test workflow\u2019", "type": "n8n-nodes-base.manualTrigger", "position": [-740, -200], "parameters": {}, "typeVersion": 1}, {"id": "3e71e40c-a5cc-40cf-a159-aeedc97c47d1", "name": "Create collection", "type": "n8n-nodes-base.httpRequest", "position": [-440, -340], "parameters": {"url": "https://QDRANTURL/collections/COLLECTION", "method": "POST", "options": {}, "jsonBody": "{\n \"filter\": {}\n}", "sendBody": true, "sendHeaders": true, "specifyBody": "json", "authentication": "genericCredentialType", "genericAuthType": "httpHeaderAuth", "headerParameters": {"parameters": [{"name": "Content-Type", "value": "application/json"}]}}, "credentials": {"httpHeaderAuth": {"id": "qhny6r5ql9wwotpn", "name": "Qdrant API (Hetzner)"}}, "typeVersion": 4.2}, {"id": "240283fc-50ec-475c-bd24-e6d0a367c10c", "name": "Refresh collection", "type": "n8n-nodes-base.httpRequest", "position": [-440, -80], "parameters": {"url": "https://QDRANTURL/collections/COLLECTION/points/delete", "method": "POST", "options": {}, "jsonBody": "{\n \"filter\": {}\n}", "sendBody": true, "sendHeaders": true, "specifyBody": "json", "authentication": "genericCredentialType", "genericAuthType": "httpHeaderAuth", "headerParameters": {"parameters": [{"name": "Content-Type", "value": "application/json"}]}}, "credentials": {"httpHeaderAuth": {"id": "qhny6r5ql9wwotpn", "name": "Qdrant API (Hetzner)"}}, "typeVersion": 4.2}, {"id": "7d10fda0-c6ab-4bf5-b73e-b93a84937eff", "name": "Get folder", "type": "n8n-nodes-base.googleDrive", "position": [-220, -80], "parameters": {"filter": {"driveId": {"__rl": true, "mode": "list", "value": "My Drive", "cachedResultUrl": "https://drive.google.com/drive/my-drive", "cachedResultName": "My Drive"}, "folderId": {"__rl": true, "mode": "id", "value": "=test-whatsapp"}}, "options": {}, "resource": "fileFolder"}, "credentials": {"googleDriveOAuth2Api": {"id": "HEy5EuZkgPZVEa9w", "name": "Google Drive account"}}, "typeVersion": 3}, {"id": "c5761ad2-e66f-4d65-b653-0e89ea017f17", "name": "Download Files", "type": "n8n-nodes-base.googleDrive", "position": [0, -80], "parameters": {"fileId": {"__rl": true, "mode": "id", "value": "={{ $json.id }}"}, "options": {"googleFileConversion": {"conversion": {"docsToFormat": "text/plain"}}}, "operation": "download"}, "credentials": {"googleDriveOAuth2Api": {"id": "HEy5EuZkgPZVEa9w", "name": "Google Drive account"}}, "typeVersion": 3}, {"id": "1f031a11-8ef3-4392-a7db-9bca00840b8f", "name": "Default Data Loader", "type": "@n8n/n8n-nodes-langchain.documentDefaultDataLoader", "position": [380, 120], "parameters": {"options": {}, "dataType": "binary"}, "typeVersion": 1}, {"id": "7f614392-7bc7-408c-8108-f289a81d5cf6", "name": "Token Splitter", "type": "@n8n/n8n-nodes-langchain.textSplitterTokenSplitter", "position": [360, 280], "parameters": {"chunkSize": 300, "chunkOverlap": 30}, "typeVersion": 1}, {"id": "648c5b3d-37a8-4a89-b88c-38e1863f09dc", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [-240, -400], "parameters": {"color": 6, "width": 880, "height": 220, "content": "# STEP 2\n\n## Create Qdrant Collection\nChange:\n- QDRANTURL\n- COLLECTION"}, "typeVersion": 1}, {"id": "a6c50f3c-3c73-464e-9bdc-49de96401c1b", "name": "Qdrant Vector Store1", "type": "@n8n/n8n-nodes-langchain.vectorStoreQdrant", "position": [240, -80], "parameters": {"mode": "insert", "options": {}, "qdrantCollection": {"__rl": true, "mode": "id", "value": "=COLLECTION"}}, "credentials": {"qdrantApi": {"id": "iyQ6MQiVaF3VMBmt", "name": "QdrantApi account"}}, "typeVersion": 1}, {"id": "7e19ac49-4d90-4258-bd44-7ca4ffa0128a", "name": "Embeddings OpenAI1", "type": "@n8n/n8n-nodes-langchain.embeddingsOpenAi", "position": [220, 120], "parameters": {"options": {}}, "credentials": {"openAiApi": {"id": "CDX6QM4gLYanh0P4", "name": "OpenAi account"}}, "typeVersion": 1.1}, {"id": "bfa104a2-1f9c-4200-ae7b-4659894c1e6f", "name": "Sticky Note5", "type": "n8n-nodes-base.stickyNote", "position": [-460, -140], "parameters": {"color": 4, "width": 620, "height": 400, "content": "# STEP 3\n\n\n\n\n\n\n\n\n\n\n\n\n## Documents vectorization with Qdrant and Google Drive\nChange:\n- QDRANTURL\n- COLLECTION"}, "typeVersion": 1}, {"id": "a148ffcf-335f-455d-8509-d98c711ed740", "name": "Respond to ElevenLabs", "type": "n8n-nodes-base.respondToWebhook", "position": [380, 800], "parameters": {"options": {}}, "typeVersion": 1.1}, {"id": "5d19f73a-b8e8-4e75-8f67-836180597572", "name": "OpenAI", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [-300, 1040], "parameters": {"options": {}}, "credentials": {"openAiApi": {"id": "CDX6QM4gLYanh0P4", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "802b76e1-3f3e-490c-9e3b-65dc5b28d906", "name": "Listen", "type": "n8n-nodes-base.webhook", "position": [-700, 800], "webhookId": "e9f611eb-a8dd-4520-8d24-9f36deaca528", "parameters": {"path": "test_voice_message_elevenlabs", "options": {}, "httpMethod": "POST", "responseMode": "responseNode"}, "typeVersion": 2}, {"id": "bdc55a38-1d4b-48fe-bbd8-29bf1afd954a", "name": "Window Buffer Memory", "type": "@n8n/n8n-nodes-langchain.memoryBufferWindow", "position": [-140, 1040], "parameters": {}, "typeVersion": 1.3}, {"id": "2d5dd8cb-81eb-41bc-af53-b894e69e530c", "name": "OpenAI Chat Model", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [200, 1320], "parameters": {"options": {}}, "credentials": {"openAiApi": {"id": "CDX6QM4gLYanh0P4", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "92d04432-1dbb-4d79-9edc-42378aee1c53", "name": "Sticky Note6", "type": "n8n-nodes-base.stickyNote", "position": [-760, 1620], "parameters": {"color": 7, "width": 1400, "height": 240, "content": "# STEP 5\n\n## Add Widget\n\nAdd the widget to your business website by replacing AGENT_ID with the agent id you created on ElevenLabs\n\n<elevenlabs-convai agent-id=\"AGENT_ID\"></elevenlabs-convai><script src=\"https://elevenlabs.io/convai-widget/index.js\" async type=\"text/javascript\"></script>"}, "typeVersion": 1}]
{"Listen": {"main": [[{"node": "AI Agent", "type": "main", "index": 0}]]}, "OpenAI": {"ai_languageModel": [[{"node": "AI Agent", "type": "ai_languageModel", "index": 0}]]}, "AI Agent": {"main": [[{"node": "Respond to ElevenLabs", "type": "main", "index": 0}]]}, "Get folder": {"main": [[{"node": "Download Files", "type": "main", "index": 0}]]}, "Download Files": {"main": [[{"node": "Qdrant Vector Store1", "type": "main", "index": 0}]]}, "Token Splitter": {"ai_textSplitter": [[{"node": "Default Data Loader", "type": "ai_textSplitter", "index": 0}]]}, "Embeddings OpenAI": {"ai_embedding": [[{"node": "Qdrant Vector Store", "type": "ai_embedding", "index": 0}]]}, "OpenAI Chat Model": {"ai_languageModel": [[{"node": "Vector Store Tool", "type": "ai_languageModel", "index": 0}]]}, "Vector Store Tool": {"ai_tool": [[{"node": "AI Agent", "type": "ai_tool", "index": 0}]]}, "Embeddings OpenAI1": {"ai_embedding": [[{"node": "Qdrant Vector Store1", "type": "ai_embedding", "index": 0}]]}, "Refresh collection": {"main": [[{"node": "Get folder", "type": "main", "index": 0}]]}, "Default Data Loader": {"ai_document": [[{"node": "Qdrant Vector Store1", "type": "ai_document", "index": 0}]]}, "Qdrant Vector Store": {"ai_vectorStore": [[{"node": "Vector Store Tool", "type": "ai_vectorStore", "index": 0}]]}, "Window Buffer Memory": {"ai_memory": [[{"node": "AI Agent", "type": "ai_memory", "index": 0}]]}, "When clicking \u2018Test workflow\u2019": {"main": [[{"node": "Create collection", "type": "main", "index": 0}, {"node": "Refresh collection", "type": "main", "index": 0}]]}}
HTTP:InvalidHostHeader HTTP:CrossDomainRedirect
[{"parameters": {}, "id": "3d7ec041-6d7c-4516-b7a0-b89dd41aca5a", "name": "When clicking \"Test workflow\"", "type": "n8n-nodes-base.manualTrigger", "typeVersion": 1, "position": [-180, 660]}, {"parameters": {}, "id": "15c4faaf-6241-4215-8919-b66cc80f90aa", "name": "Success", "type": "n8n-nodes-base.noOp", "typeVersion": 1, "position": [720, 680]}, {"parameters": {"errorMessage": "Request was not sent, internal SSL error!"}, "id": "a98994f5-ad55-4a43-8121-78286e7a85b3", "name": "Stop and Error", "type": "n8n-nodes-base.stopAndError", "typeVersion": 1, "position": [680, 460]}, {"parameters": {"conditions": {"options": {"caseSensitive": true, "leftValue": "", "typeValidation": "strict"}, "conditions": [{"id": "e4bed74d-e103-4029-ab3c-77d5ff464b36", "leftValue": "={{ $json.error.status }}", "rightValue": 403, "operator": {"type": "number", "operation": "notExists", "singleValue": true}}, {"id": "be1eb71b-cccc-4433-95d2-4d4e7c19a2e8", "leftValue": "={{ $json.error.message }}", "rightValue": "ssl", "operator": {"type": "string", "operation": "contains"}}], "combinator": "and"}, "options": {}}, "id": "acea7bc3-c611-432e-aa30-74b3a550db5f", "name": "Internal SSL Error?", "type": "n8n-nodes-base.if", "typeVersion": 2, "position": [480, 660]}, {"parameters": {"url": "https://n8n.io", "sendHeaders": true, "headerParameters": {"parameters": [{"name": "Host", "value": "internal.domain"}]}, "options": {}}, "id": "e3c40b1d-1d18-4dd9-9168-35a801057836", "name": "Invalid Host header", "type": "n8n-nodes-base.httpRequest", "typeVersion": 4.1, "position": [260, 660], "onError": "continueRegularOutput"}, {"parameters": {"url": "https://httpbin.org/redirect-to", "sendQuery": true, "queryParameters": {"parameters": [{"name": "url", "value": "https://n8n.io"}]}, "options": {}}, "id": "69d69a4d-2786-4f74-bb92-6109814eb56e", "name": "Cross Domain Redirect", "type": "n8n-nodes-base.httpRequest", "typeVersion": 4.1, "position": [260, 860]}]
{"When clicking \"Test workflow\"": {"main": [[{"node": "Invalid Host header", "type": "main", "index": 0}, {"node": "Cross Domain Redirect", "type": "main", "index": 0}]]}, "Internal SSL Error?": {"main": [[{"node": "Stop and Error", "type": "main", "index": 0}], [{"node": "Success", "type": "main", "index": 0}]]}, "Invalid Host header": {"main": [[{"node": "Internal SSL Error?", "type": "main", "index": 0}]]}}
Redis:info set keys get delete
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "bfe11af4-fb50-452c-b976-4d03d10829d2"}, {"parameters": {}, "name": "Redis", "type": "n8n-nodes-base.redis", "typeVersion": 1, "position": [600, 300], "credentials": {"redis": {"id": "85", "name": "Redis creds"}}, "id": "d63e6bed-6d35-4f90-8a9f-11869262fd3c"}, {"parameters": {"operation": "set", "key": "={{$node[\"Set\"].json[\"key\"]}}", "value": "={{$node[\"Set\"].json[\"value\"]}}"}, "name": "Redis1", "type": "n8n-nodes-base.redis", "typeVersion": 1, "position": [750, 300], "credentials": {"redis": {"id": "85", "name": "Redis creds"}}, "id": "de5c3f28-1d4e-4c43-92c1-d9987e472c69"}, {"parameters": {"operation": "keys", "keyPattern": "={{$node[\"Set\"].json[\"key\"]}}"}, "name": "Redis2", "type": "n8n-nodes-base.redis", "typeVersion": 1, "position": [900, 300], "credentials": {"redis": {"id": "85", "name": "Redis creds"}}, "id": "00d6c08e-263e-43db-a93f-a0bf28d0d0bd"}, {"parameters": {"operation": "get", "propertyName": "value", "key": "={{$node[\"Set\"].json[\"key\"]}}", "options": {}}, "name": "Redis3", "type": "n8n-nodes-base.redis", "typeVersion": 1, "position": [1050, 300], "credentials": {"redis": {"id": "85", "name": "Redis creds"}}, "id": "1ee59e47-956c-4c04-b460-0409d488ae1f"}, {"parameters": {"operation": "delete", "key": "={{$node[\"Set\"].json[\"key\"]}}"}, "name": "Redis4", "type": "n8n-nodes-base.redis", "typeVersion": 1, "position": [1300, 300], "credentials": {"redis": {"id": "85", "name": "Redis creds"}}, "id": "08580c27-446e-4b5c-a8a2-956208327019"}, {"parameters": {"values": {"string": [{"name": "key", "value": "TestKey"}, {"name": "value", "value": "=Value{{Date.now()}}"}]}, "options": {}}, "name": "Set", "type": "n8n-nodes-base.set", "typeVersion": 1, "position": [450, 300], "id": "779cc18d-7a1a-454d-b70a-b54ae590c896"}, {"parameters": {"functionCode": "if($node['Set'].json['value'] !== $node['Redis3'].json['value'] ){\n throw new Error('Error in redis node');\n}\nreturn items;"}, "name": "Function", "type": "n8n-nodes-base.function", "typeVersion": 1, "position": [1300, 450], "notesInFlow": true, "notes": "validate the saved value", "id": "72efc2c0-6bb3-4560-b935-9231558081a8"}]
{"Redis": {"main": [[{"node": "Redis1", "type": "main", "index": 0}]]}, "Redis1": {"main": [[{"node": "Redis2", "type": "main", "index": 0}]]}, "Redis2": {"main": [[{"node": "Redis3", "type": "main", "index": 0}]]}, "Redis3": {"main": [[{"node": "Redis4", "type": "main", "index": 0}, {"node": "Function", "type": "main", "index": 0}]]}, "Set": {"main": [[{"node": "Redis", "type": "main", "index": 0}]]}, "Start": {"main": [[{"node": "Set", "type": "main", "index": 0}]]}}
Gmail:Draft:create getAll get delete:Label:create getAll get delete:Message:send getAll get reply delete:MessageLabel:add remove
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [340, 400], "id": "05c88b78-968b-4f4c-a1e9-8898251d3f7d"}, {"parameters": {"subject": "=Draft created at {{(new Date()).toGMTString()}}", "message": "=Draft Test Body", "additionalFields": {}}, "name": "Gmail", "type": "n8n-nodes-base.gmail", "typeVersion": 1, "position": [600, 230], "credentials": {"gmailOAuth2": {"id": "22", "name": "Gmail 0auth"}}, "id": "707afa42-fc6e-4117-84bc-29282319d5bb"}, {"parameters": {"operation": "getAll", "limit": 1, "additionalFields": {}}, "name": "Gmail1", "type": "n8n-nodes-base.gmail", "typeVersion": 1, "position": [760, 230], "credentials": {"gmailOAuth2": {"id": "22", "name": "Gmail 0auth"}}, "id": "c73d9c21-ea4d-4976-ad4b-2ae4b0fada15"}, {"parameters": {"operation": "get", "messageId": "={{$node[\"Gmail\"].json[\"id\"]}}", "additionalFields": {}}, "name": "Gmail2", "type": "n8n-nodes-base.gmail", "typeVersion": 1, "position": [920, 230], "credentials": {"gmailOAuth2": {"id": "22", "name": "Gmail 0auth"}}, "id": "67666251-4a70-441a-a383-5582d297edd5"}, {"parameters": {"operation": "delete", "messageId": "={{$node[\"Gmail\"].json[\"id\"]}}"}, "name": "Gmail3", "type": "n8n-nodes-base.gmail", "typeVersion": 1, "position": [1070, 230], "credentials": {"gmailOAuth2": {"id": "22", "name": "Gmail 0auth"}}, "id": "a0b1960d-1a73-43a4-9978-7d3634051884"}, {"parameters": {"resource": "label", "name": "=TestLabel{{Date.now()}}"}, "name": "Gmail4", "type": "n8n-nodes-base.gmail", "typeVersion": 1, "position": [600, 380], "credentials": {"gmailOAuth2": {"id": "22", "name": "Gmail 0auth"}}, "id": "f2ddc4ef-a79f-4764-ad1e-8fd88e8cc3d9"}, {"parameters": {"resource": "label", "operation": "getAll", "limit": 1}, "name": "Gmail5", "type": "n8n-nodes-base.gmail", "typeVersion": 1, "position": [760, 380], "credentials": {"gmailOAuth2": {"id": "22", "name": "Gmail 0auth"}}, "id": "0f6821e9-a68e-46ce-905c-78b14eaa6435"}, {"parameters": {"resource": "label", "operation": "get", "labelId": "={{$node[\"Gmail4\"].json[\"id\"]}}"}, "name": "Gmail7", "type": "n8n-nodes-base.gmail", "typeVersion": 1, "position": [920, 380], "credentials": {"gmailOAuth2": {"id": "22", "name": "Gmail 0auth"}}, "id": "c78804f2-5ea2-48e7-a98d-90ecb236d5b8"}, {"parameters": {"resource": "message", "subject": "=Subject {{(new Date()).toGMTString()}}", "message": "=Email Body {{(new Date()).toGMTString()}}", "toList": ["node8qa@gmail.com"], "additionalFields": {}}, "name": "Gmail8", "type": "n8n-nodes-base.gmail", "typeVersion": 1, "position": [610, 530], "credentials": {"gmailOAuth2": {"id": "22", "name": "Gmail 0auth"}}, "id": "3f832f5f-94e0-4f86-a041-cbf30655c43b"}, {"parameters": {"resource": "message", "operation": "getAll", "limit": 1, "additionalFields": {}}, "name": "Gmail9", "type": "n8n-nodes-base.gmail", "typeVersion": 1, "position": [1040, 530], "credentials": {"gmailOAuth2": {"id": "22", "name": "Gmail 0auth"}}, "id": "fb256709-1d09-478c-8a18-331830cd6df1"}, {"parameters": {"resource": "message", "operation": "get", "messageId": "={{$node[\"Gmail8\"].json[\"id\"]}}", "additionalFields": {}}, "name": "Gmail10", "type": "n8n-nodes-base.gmail", "typeVersion": 1, "position": [1190, 530], "credentials": {"gmailOAuth2": {"id": "22", "name": "Gmail 0auth"}}, "id": "5f15fa23-4149-410f-baa0-cca8123707b5"}, {"parameters": {"resource": "message", "operation": "delete", "messageId": "={{$node[\"Gmail8\"].json[\"id\"]}}"}, "name": "Gmail11", "type": "n8n-nodes-base.gmail", "typeVersion": 1, "position": [1620, 530], "credentials": {"gmailOAuth2": {"id": "22", "name": "Gmail 0auth"}}, "id": "33489121-9268-4bbf-ba17-e2673970d71c"}, {"parameters": {"resource": "message", "operation": "reply", "threadId": "={{$node[\"Gmail8\"].json[\"threadId\"]}}", "messageId": "={{$node[\"Gmail8\"].json[\"id\"]}}", "subject": "=Reply {{(new Date()).toGMTString()}}", "message": "=Reply body {{(new Date()).toGMTString()}}", "toList": ["node8qa@gmail.com"], "additionalFields": {}}, "name": "Gmail12", "type": "n8n-nodes-base.gmail", "typeVersion": 1, "position": [1330, 530], "credentials": {"gmailOAuth2": {"id": "22", "name": "Gmail 0auth"}}, "id": "1b8da955-757e-4973-a350-58abac6c4822"}, {"parameters": {"resource": "messageLabel", "messageId": "={{$node[\"Gmail8\"].json[\"id\"]}}", "labelIds": ["SPAM"]}, "name": "Gmail13", "type": "n8n-nodes-base.gmail", "typeVersion": 1, "position": [740, 650], "credentials": {"gmailOAuth2": {"id": "22", "name": "Gmail 0auth"}}, "id": "87698be8-16c6-496a-82fe-2ed1fcb3422a"}, {"parameters": {"resource": "message", "operation": "delete", "messageId": "={{$node[\"Gmail12\"].json[\"id\"]}}"}, "name": "Gmail14", "type": "n8n-nodes-base.gmail", "typeVersion": 1, "position": [1890, 530], "credentials": {"gmailOAuth2": {"id": "22", "name": "Gmail 0auth"}}, "id": "7f58e657-9bf8-4154-9353-39ac27d642cc"}, {"parameters": {"resource": "messageLabel", "operation": "remove", "messageId": "={{$node[\"Gmail8\"].json[\"id\"]}}", "labelIds": ["SPAM"]}, "name": "Gmail15", "type": "n8n-nodes-base.gmail", "typeVersion": 1, "position": [880, 650], "credentials": {"gmailOAuth2": {"id": "22", "name": "Gmail 0auth"}}, "id": "0ffaee84-f0cf-42fc-a47d-0c9a25ae6b90"}, {"parameters": {"resource": "label", "operation": "delete", "labelId": "={{$node[\"Gmail4\"].json[\"id\"]}}"}, "name": "Gmail16", "type": "n8n-nodes-base.gmail", "typeVersion": 1, "position": [1070, 380], "credentials": {"gmailOAuth2": {"id": "22", "name": "Gmail 0auth"}}, "id": "998e0199-62ef-462b-a353-b7721c95ad46"}, {"parameters": {"functionCode": "function sleep(milliseconds) {\n return new Promise(\n resolve => setTimeout(resolve, milliseconds)\n );\n}\n\nawait sleep(500);\n\n// Output data\nreturn items;"}, "name": "Sleep 0.5 Second", "type": "n8n-nodes-base.function", "position": [1470, 530], "typeVersion": 1, "id": "fea0314c-836f-43ea-8d3b-59fff652ad57"}, {"parameters": {"functionCode": "function sleep(milliseconds) {\n return new Promise(\n resolve => setTimeout(resolve, milliseconds)\n );\n}\n\nawait sleep(500);\n\n// Output data\nreturn items;"}, "name": "Sleep 0.5 Second1", "type": "n8n-nodes-base.function", "position": [1760, 530], "typeVersion": 1, "id": "677eb37a-3a00-4f00-aa8a-cfc7b373cc1c"}]
{"Gmail": {"main": [[{"node": "Gmail1", "type": "main", "index": 0}]]}, "Gmail1": {"main": [[{"node": "Gmail2", "type": "main", "index": 0}]]}, "Gmail2": {"main": [[{"node": "Gmail3", "type": "main", "index": 0}]]}, "Start": {"main": [[{"node": "Gmail8", "type": "main", "index": 0}, {"node": "Gmail4", "type": "main", "index": 0}, {"node": "Gmail", "type": "main", "index": 0}]]}, "Gmail4": {"main": [[{"node": "Gmail5", "type": "main", "index": 0}]]}, "Gmail5": {"main": [[{"node": "Gmail7", "type": "main", "index": 0}]]}, "Gmail9": {"main": [[{"node": "Gmail10", "type": "main", "index": 0}]]}, "Gmail8": {"main": [[{"node": "Gmail13", "type": "main", "index": 0}]]}, "Gmail10": {"main": [[{"node": "Gmail12", "type": "main", "index": 0}]]}, "Gmail12": {"main": [[{"node": "Sleep 0.5 Second", "type": "main", "index": 0}]]}, "Gmail13": {"main": [[{"node": "Gmail15", "type": "main", "index": 0}]]}, "Gmail15": {"main": [[{"node": "Gmail9", "type": "main", "index": 0}]]}, "Gmail7": {"main": [[{"node": "Gmail16", "type": "main", "index": 0}]]}, "Gmail14": {"main": [[]]}, "Sleep 0.5 Second": {"main": [[{"node": "Gmail11", "type": "main", "index": 0}]]}, "Sleep 0.5 Second1": {"main": [[{"node": "Gmail14", "type": "main", "index": 0}]]}, "Gmail11": {"main": [[{"node": "Sleep 0.5 Second1", "type": "main", "index": 0}]]}}
Qualify new leads in Google Sheets via OpenAI's GPT-4
[{"id": "1f179325-0bec-4e5c-8ebd-0a2bb3ebefaa", "name": "Merge", "type": "n8n-nodes-base.merge", "position": [1440, 340], "parameters": {"mode": "combine", "options": {}, "combinationMode": "mergeByPosition"}, "typeVersion": 2.1}, {"id": "7b548661-2b32-451f-ba52-91ca86728f1e", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [358, 136.3642172523962], "parameters": {"width": 442, "height": 360.6357827476038, "content": "### 1. Create a Google Sheet document\n* This template uses Google Sheet document connected to Google Forms, but a standalone Sheet document will work too\n* Adapt initial trigger to your needs: check for new entries periodically or add a manual trigger\n\n[Link to the Google Sheet template](https://docs.google.com/spreadsheets/d/1jk8ZbfOMObvHGGImc0sBJTZB_hracO4jRqfbryMgzEs)"}, "typeVersion": 1}, {"id": "308b4dce-4656-47bd-b217-69565b1c34f6", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [820, 420], "parameters": {"width": 471, "height": 322, "content": "### 2. Provide lead qualification instructions\n* Create a __system message__ with overall instructions\n* Add a __user message__ with the JSON variables\n* Set node parses the resulting JSON object, but you can also request a plain string response in the system message"}, "typeVersion": 1}, {"id": "c00442ca-98cf-4296-b084-f0881ce4fd39", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [1320, 222.18785942492013], "parameters": {"width": 355, "height": 269.81214057507987, "content": "### 3. Combine the initial data with GPT response\n* This Merge node puts together original records from the google sheet and responses from the OpenAI"}, "typeVersion": 1}, {"id": "62643a4c-a69c-4351-9960-20413285ff33", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [1700, 220], "parameters": {"width": 398, "height": 265, "content": "### 4. Update the Google Sheet document\n* Provide __Column to Match On__ (usually a timestamp in case of Google Forms)\n* Enter the result from GPT into a separate column"}, "typeVersion": 1}, {"id": "4cd58340-81c4-46c7-b346-25a9b6ef2910", "name": "Update lead status", "type": "n8n-nodes-base.googleSheets", "position": [1860, 340], "parameters": {"columns": {"value": {"Rating": "={{ $json.reply.rating }}", "Timestamp": "={{ $json.Timestamp }}"}, "schema": [{"id": "Timestamp", "type": "string", "display": true, "removed": false, "required": false, "displayName": "Timestamp", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Email Address", "type": "string", "display": true, "removed": true, "required": false, "displayName": "Email Address", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Your name", "type": "string", "display": true, "removed": true, "required": false, "displayName": "Your name", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Your business area", "type": "string", "display": true, "removed": true, "required": false, "displayName": "Your business area", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Your team size", "type": "string", "display": true, "removed": true, "required": false, "displayName": "Your team size", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "Rating", "type": "string", "display": true, "required": false, "displayName": "Rating", "defaultMatch": false, "canBeUsedToMatch": true}, {"id": "row_number", "type": "string", "display": true, "removed": true, "readOnly": true, "required": false, "displayName": "row_number", "defaultMatch": false, "canBeUsedToMatch": true}], "mappingMode": "defineBelow", "matchingColumns": ["Timestamp"]}, "options": {}, "operation": "update", "sheetName": {"__rl": true, "mode": "list", "value": 72739218, "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1jk8ZbfOMObvHGGImc0sBJTZB_hracO4jRqfbryMgzEs/edit#gid=72739218", "cachedResultName": "Form Responses 1"}, "documentId": {"__rl": true, "mode": "list", "value": "1jk8ZbfOMObvHGGImc0sBJTZB_hracO4jRqfbryMgzEs", "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1jk8ZbfOMObvHGGImc0sBJTZB_hracO4jRqfbryMgzEs/edit?usp=drivesdk", "cachedResultName": "Join Community (Responses)"}}, "credentials": {"googleSheetsOAuth2Api": {"id": "RtRiRezoxiWkzZQt", "name": "Ted's Tech Talks Google account"}}, "typeVersion": 4.2}, {"id": "fea0acee-13b6-441a-8cf9-c8fedbc4617d", "name": "Extract JSON reply", "type": "n8n-nodes-base.set", "position": [1120, 580], "parameters": {"fields": {"values": [{"name": "reply", "type": "objectValue", "objectValue": "={{ JSON.parse($json.message.content) }}"}]}, "include": "selected", "options": {}}, "typeVersion": 3.2}, {"id": "0a0608fe-894f-4eb5-b690-233c6dfc0428", "name": "Qualify leads with GPT", "type": "n8n-nodes-base.openAi", "position": [900, 580], "parameters": {"prompt": {"messages": [{"role": "system", "content": "Your task is to qualify incoming leads. Leads are form submissions to a closed community group. Use the following criteria for a quality lead:\n\n1. We are looking for decision makers who run companies or who have some teams. The bigger the team - the better. Basically, everyone with some level of responsibility should be accepted. This is the main criterion.\n2. Email from a non-standard domain. Ideally this should be a corporate domain, but this is a secondary criterion.\n\nPlease thing step by step whether a lead is quality or not?\n\nIf at least one of the criteria satisfy, reply with \"qualified\" in response. Otherwise reply \"not qualified\". Reply with a JSON of the following structure: {\"rating\":\"string\",\"explanation\":\"string\"}. Reply only with with the JSON and nothing more!"}, {"content": "=Here's a lead info:\nName: {{ $json['Your name'] }}\nEmail: {{ $json['Email Address'] }}\nBusiness area: {{ $json['Your business area'] }}\nSize of the team: {{ $json['Your team size'] }}"}]}, "options": {"temperature": 0.3}, "resource": "chat", "chatModel": "gpt-4-turbo-preview"}, "credentials": {"openAiApi": {"id": "rveqdSfp7pCRON1T", "name": "Ted's Tech Talks OpenAi"}}, "typeVersion": 1.1}, {"id": "22fdec69-a4a9-430d-9950-79195799ae7a", "name": "Check for new entries", "type": "n8n-nodes-base.googleSheetsTrigger", "position": [520, 340], "parameters": {"event": "rowAdded", "options": {}, "pollTimes": {"item": [{"mode": "everyMinute"}]}, "sheetName": {"__rl": true, "mode": "list", "value": 72739218, "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1jk8ZbfOMObvHGGImc0sBJTZB_hracO4jRqfbryMgzEs/edit#gid=72739218", "cachedResultName": "Form Responses 1"}, "documentId": {"__rl": true, "mode": "list", "value": "1jk8ZbfOMObvHGGImc0sBJTZB_hracO4jRqfbryMgzEs", "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1jk8ZbfOMObvHGGImc0sBJTZB_hracO4jRqfbryMgzEs/edit?usp=drivesdk", "cachedResultName": "Join Community (Responses)"}}, "credentials": {"googleSheetsTriggerOAuth2Api": {"id": "m33qCYf9eEvSgo0x", "name": "Ted's Tech Talks Google Sheets Trigger"}}, "typeVersion": 1}]
{"Merge": {"main": [[{"node": "Update lead status", "type": "main", "index": 0}]]}, "Extract JSON reply": {"main": [[{"node": "Merge", "type": "main", "index": 1}]]}, "Check for new entries": {"main": [[{"node": "Merge", "type": "main", "index": 0}, {"node": "Qualify leads with GPT", "type": "main", "index": 0}]]}, "Qualify leads with GPT": {"main": [[{"node": "Extract JSON reply", "type": "main", "index": 0}]]}}
📈 Receive Daily Market News from FT.com to your Microsoft outlook inbox
[{"id": "d2a24a9b-9cf3-4de0-82e7-5d858658d4b4", "name": "Extract specific content", "type": "n8n-nodes-base.html", "notes": "Extract selected headlines, editor's picks, spotlight etc.", "position": [800, 340], "parameters": {"options": {"cleanUpText": true}, "operation": "extractHtmlContent", "extractionValues": {"values": [{"key": "Headline #1", "cssSelector": "#site-content > div:nth-child(1) > section > div > div > div.layout-desktop__grid.layout-desktop__grid--span4.layout-desktop__grid--column-start-1.layout-desktop__grid--row-start-1.layout-desktop__grid--with-border.layout--default > div > div > div > div.story-group-stacked__primary-story > div > div > div > div > div.primary-story__teaser"}, {"key": "Headline #2", "cssSelector": "#site-content > div:nth-child(1) > section > div > div > div.layout-desktop__grid.layout-desktop__grid--span6.layout-desktop__grid--column-start-5.layout-desktop__grid--row-start-1.layout-desktop__grid--with-border.layout--default > div > div > div > div > div > div.story-group__article.story-group__article--featured > div > div.featured-story-content > div.headline.js-teaser-headline.headline--scale-5.headline--color-black > a > span"}, {"key": "Editor's Picks", "cssSelector": "#site-content > div:nth-child(1) > section > div > div > div.layout-desktop__grid.layout-desktop__grid--span2.layout-desktop__grid--column-start-11.layout-desktop__grid--row-start-1.layout--default > div"}, {"key": "Top Stories", "cssSelector": "#site-content > div:nth-child(3) > section > div", "skipSelectors": "h2"}, {"key": "Spotlight", "cssSelector": "#site-content > div:nth-child(6) > section", "skipSelectors": "h2"}, {"key": "Various News", "cssSelector": "#site-content > div:nth-child(8) > section", "skipSelectors": "h2"}, {"key": "Europe News", "cssSelector": "#site-content > div:nth-child(13) > section", "skipSelectors": "h2"}]}}, "notesInFlow": true, "typeVersion": 1.2}, {"id": "38af5df2-65ce-4f04-aed3-6f71d81a37df", "name": "Get financial news online", "type": "n8n-nodes-base.httpRequest", "notes": "Url : https://www.ft.com/", "position": [580, 340], "parameters": {"url": "https://www.ft.com/", "options": {}}, "notesInFlow": true, "typeVersion": 4.2}, {"id": "764b2209-bf20-4feb-b000-fa261459a617", "name": "Schedule Trigger", "type": "n8n-nodes-base.scheduleTrigger", "position": [360, 340], "parameters": {"rule": {"interval": [{"triggerAtHour": 7}]}}, "typeVersion": 1.2}, {"id": "96b337ba-6fe7-47ec-8385-58bfc6c789cb", "name": "Google Gemini Chat Model", "type": "@n8n/n8n-nodes-langchain.lmChatGoogleGemini", "position": [1200, 520], "parameters": {"options": {}}, "credentials": {"googlePalmApi": {"id": "450x4z8bKvomb0tZ", "name": "Google Gemini(PaLM) Api account"}}, "typeVersion": 1}, {"id": "925eabf3-3619-4da2-be2c-bda97c605d4d", "name": "Gather the elements", "type": "n8n-nodes-base.set", "position": [1020, 340], "parameters": {"options": {}, "assignments": {"assignments": [{"id": "5412a5ee-dbbe-4fcc-98a5-6fafc37b94d1", "name": "News together", "type": "string", "value": "=Yahoo news :\n\n{{ $json['Headline '] }};\n\n{{ $('HTML').item.json['News #1'] }};\n\n{{ $('HTML').item.json['News #2'] }};\n\nFinancial times news :\n\n{{ $('Extract specific content').item.json['Headline #1'] }};\n\n{{ $('Extract specific content').item.json['Headline #2'] }};\n\n{{ $('Extract specific content').item.json['Editor\\'s Picks'] }};\n\n{{ $('Extract specific content').item.json['Top Stories'] }};\n\n{{ $('Extract specific content').item.json.Spotlight }};\n\n{{ $('Extract specific content').item.json['Various News'] }};\n\n{{ $('Extract specific content').item.json['Europe News'] }};\n\n"}]}}, "typeVersion": 3.4}, {"id": "5445b14f-25e8-4759-82d4-985961ca7fdd", "name": "AI Agent", "type": "@n8n/n8n-nodes-langchain.agent", "position": [1200, 340], "parameters": {"text": "=Here are the news to summarise :\n\n{{ $json['News together'] }}", "options": {"systemMessage": "You role is to summarise the financial news from today. The summary will help an investor to have a clear view of the market, and to make better choice. \n\nYou will write the body of an e-mail using a well structured html format"}, "promptType": "define"}, "typeVersion": 1.6}, {"id": "30b76eac-d646-44d8-bc41-46aa2d9fe05f", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [-200, 200], "parameters": {"width": 683.6774193548385, "height": 581.4193548387093, "content": "# Financial News Recap Workflow\n\nThis workflow automates the daily email delivery of curated financial news to a designated recipient at 7:00 AM. It extracts relevant financial news articles, structures the content, and sends it in a concise summary format via Microsoft Outlook.\n\n### Workflow Steps\n1. **Schedule Trigger** \n Sets the workflow to activate daily at 7:00 AM.\n2. **Fetch Financial News** \n Retrieves financial news content from [ft.com](https://www.ft.com/) using an HTTP Request node.\n3. **Extract News Headlines and Sections** \n Using CSS selectors, this node parses specific sections of the HTML page to gather key headlines and sections:\n - Headline #1, Headline #2\n - Editor's Picks\n - etc.\n4. **Aggregate News Content** \n Combines all extracted news sections into a single data set, organizing content under relevant categories.\n5. **AI Agent for Summarization** \n A Google Gemini Chat Model generates a structured summary in HTML format, optimized to provide investors with a clear market overview.\n6. **Email Dispatch** \n Sends the summarized content via Microsoft Outlook with a subject \"Financial news from today,\" formatted in HTML for clarity and readability.\n"}, "typeVersion": 1}, {"id": "7f2b6e9a-8b14-4083-a05c-3b76aae601a8", "name": "Send the summary by e-mail", "type": "n8n-nodes-base.microsoftOutlook", "position": [1540, 340], "parameters": {"subject": "Financial news from today", "bodyContent": "=News of the day : \n\n{{ $json.output }}", "toRecipients": "", "additionalFields": {"bodyContentType": "html"}}, "credentials": {"microsoftOutlookOAuth2Api": {"id": "8asOQiRWBGic8ei8", "name": "Microsoft Outlook account"}}, "typeVersion": 2}]
{"AI Agent": {"main": [[{"node": "Send the summary by e-mail", "type": "main", "index": 0}]]}, "Schedule Trigger": {"main": [[{"node": "Get financial news online", "type": "main", "index": 0}]]}, "Gather the elements": {"main": [[{"node": "AI Agent", "type": "main", "index": 0}]]}, "Extract specific content": {"main": [[{"node": "Gather the elements", "type": "main", "index": 0}]]}, "Google Gemini Chat Model": {"ai_languageModel": [[{"node": "AI Agent", "type": "ai_languageModel", "index": 0}]]}, "Get financial news online": {"main": [[{"node": "Extract specific content", "type": "main", "index": 0}]]}}
uProc:Internet:*;
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "471ee767-0f84-4092-8848-b32bfa27c904"}, {"parameters": {"group": "internet", "tool": "getDeviceByUa", "useragent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36", "additionalOptions": {}}, "name": "uProc1", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [420, 300], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "225c9e0c-c8df-4a5c-99c1-ab87c07c5747"}, {"parameters": {"group": "internet", "tool": "getUrlByDomain", "domain": "n8n.io", "additionalOptions": {}}, "name": "uProc2", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [550, 300], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "d05ce8e6-52bc-4cdf-8ca9-8e736dab51e7"}, {"parameters": {"group": "internet", "tool": "getDomainByIp", "ip": "104.21.37.3", "additionalOptions": {}}, "name": "uProc3", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [680, 300], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "ec459164-9037-4974-86db-51572db34457"}, {"parameters": {"group": "internet", "tool": "getDomainByUrl", "url": "https://n8n.io", "additionalOptions": {}}, "name": "uProc4", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [810, 300], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "de574cfe-b7b8-4d7e-bf9d-874994cd72a1"}, {"parameters": {"group": "internet", "tool": "checkDomainCertificate", "domain": "n8n.io", "additionalOptions": {}}, "name": "uProc5", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [940, 300], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "6a965548-4b41-4ec7-a171-b808fa56f874"}, {"parameters": {"group": "internet", "tool": "getDomainCertificate", "domain": "n8n.io", "additionalOptions": {}}, "name": "uProc6", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [1070, 300], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "8c1aa668-7b5d-43cd-aa59-9c9fc7734514"}, {"parameters": {"group": "internet", "domain": "n8n.io", "additionalOptions": {}}, "name": "uProc7", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [1200, 300], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "221ef5e2-caf2-4454-b3e9-82f7741e1fe7"}, {"parameters": {"group": "internet", "tool": "checkDomainFormat", "domain": "n8n.io", "additionalOptions": {}}, "name": "uProc8", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [1330, 300], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "3c2fbae3-b5d5-4a07-9d07-9dc12e18b96d"}, {"parameters": {"group": "internet", "tool": "getDomainIsp", "domain": "n8n.io", "additionalOptions": {}}, "name": "uProc9", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [1460, 300], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "a05ff442-89be-4566-8ab4-a0a6be404b8c"}, {"parameters": {"group": "internet", "tool": "checkDomainMx", "domain": "n8n.io", "additionalOptions": {}}, "name": "uProc10", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [1590, 300], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "28f8de7b-97db-4ba4-ae60-d7715a47b433"}, {"parameters": {"group": "internet", "tool": "getUrlPdf", "url": "https://n8n.io", "additionalOptions": {}}, "name": "uProc11", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [1720, 300], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "866ba0e4-3011-4c2a-aab6-dedd534b0ccf"}, {"parameters": {"group": "internet", "tool": "checkDomainRecord", "domain": "n8n.io", "type": "NS", "additionalOptions": {}}, "name": "uProc12", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [1850, 300], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "edd0634b-e73d-4b56-ac05-2ebc2986af7c"}, {"parameters": {"group": "internet", "tool": "getDomainRecord", "domain": "n8n.io", "type": "NS", "additionalOptions": {}}, "name": "uProc13", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [1980, 300], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "97d92f60-cf96-4f11-88c6-5f0c13466cc8"}, {"parameters": {"group": "internet", "tool": "getDomainRecords", "domain": "n8n.io", "additionalOptions": {}}, "name": "uProc14", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [2110, 300], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "2b48dcec-a2bc-422f-bd74-60e237726f93"}, {"parameters": {"group": "internet", "tool": "checkDomainReverse", "ip": "104.21.37.3", "domain": "n8n.io", "additionalOptions": {}}, "name": "uProc15", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [2240, 300], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "25a7db94-89db-4c44-b5ea-610921ea78c5"}, {"parameters": {"group": "internet", "tool": "getDomainReverseIp", "domain": "n8n.io", "additionalOptions": {}}, "name": "uProc16", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [2370, 300], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "4dcf45b3-9786-4c41-9b5a-be82a46927b1"}, {"parameters": {"group": "internet", "tool": "getUrlShareableLinks", "text": "n8n rocks!", "url": "https://n8n.io/", "additionalOptions": {}}, "name": "uProc17", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [2500, 300], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "bc8d869f-0f74-40aa-ad4f-a602e6703526"}, {"parameters": {"group": "internet", "tool": "getDomainTechnologies", "domain": "n8n.io", "additionalOptions": {}}, "name": "uProc18", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [2630, 300], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "c19223f4-34f6-4fc0-8580-a706d079a0ff"}, {"parameters": {"group": "internet", "tool": "getUrlTechnologies", "url": "https://n8n.io", "additionalOptions": {}}, "name": "uProc19", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [2760, 300], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "cd0c931e-5ced-4300-8d38-4c6b13d7f9d7"}, {"parameters": {"group": "internet", "tool": "getDomainVisits", "domain": "n8n.io", "additionalOptions": {}}, "name": "uProc20", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [2890, 300], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "e63b384c-db6c-4f60-867a-e0b1c185e13d"}, {"parameters": {"group": "internet", "tool": "getDomainWhois", "domain": "n8n.io", "additionalOptions": {}}, "name": "uProc21", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [3020, 300], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "111d4ba6-cdb8-4879-94db-b26f52a0a8fd"}, {"parameters": {"group": "internet", "tool": "getIpWhois", "ip": "104.21.37.3", "additionalOptions": {}}, "name": "uProc22", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [420, 470], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "33cd2d4d-710a-485f-a54d-db721b95be59"}, {"parameters": {"group": "internet", "tool": "getFileCopiedBetweenUrls", "source": "https://n8n.io/_nuxt/img/df5be1c.png", "destination": "test", "additionalOptions": {}}, "name": "uProc23", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [550, 470], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "01eadfc0-0bc0-4630-b54a-a254917686d3"}, {"parameters": {"group": "internet", "tool": "getUrlAnalysis", "url": "https://n8n.io", "additionalOptions": {}}, "name": "uProc24", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [680, 470], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "309d8b34-9d8f-4f04-8487-5849906b23fb"}, {"parameters": {"group": "internet", "tool": "getNetAton", "ip": "104.21.37.3", "additionalOptions": {}}, "name": "uProc25", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [810, 470], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "8560b080-f140-4dec-9ab6-a7135c9a0ccc"}, {"parameters": {"group": "internet", "tool": "checkUrlContains", "url": "104.21.37.3", "regex": "n8n", "additionalOptions": {}}, "name": "uProc26", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [940, 470], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "9d7ea1fd-7b6c-4023-8452-de501689d0e0"}, {"parameters": {"group": "internet", "tool": "getUrlContents", "url": "https://n8n.io", "selector": "h1", "additionalOptions": {}}, "name": "uProc27", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [1070, 470], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "61e3e8c3-619e-430a-99fb-dc0e30c85177"}, {"parameters": {"group": "internet", "tool": "getUrlContentsParsed", "url": "https://n8n.io", "additionalOptions": {}}, "name": "uProc28", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [1200, 470], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "cd18157f-d519-4700-a0f6-acb17688bf38"}, {"parameters": {"group": "internet", "tool": "getUrlDecode", "url": "https://n8n.io", "additionalOptions": {}}, "name": "uProc29", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [1330, 470], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "94bac370-001b-42bd-aab8-0a3265166e43"}, {"parameters": {"group": "internet", "tool": "getUrlEncode", "url": "https://n8n.io", "additionalOptions": {}}, "name": "uProc30", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [1460, 470], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "8af8cfea-c432-404f-83a1-0fb46c7a86e3"}, {"parameters": {"group": "internet", "tool": "checkUrlExist", "url": "https://n8n.io", "additionalOptions": {}}, "name": "uProc31", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [1590, 470], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "ec8594b3-8ae9-4a76-9f71-d1cec1508e00"}, {"parameters": {"group": "internet", "tool": "getNetFixip", "number": "104.21.37.3", "additionalOptions": {}}, "name": "uProc32", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [1720, 470], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "7c981264-b095-4827-81a0-751991548cda"}, {"parameters": {"group": "internet", "tool": "checkNetHostAlive", "host": "https://n8n.io", "additionalOptions": {}}, "name": "uProc33", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [1850, 470], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "ad04ee24-86dc-4972-ac6a-c6f5dd731c72"}, {"parameters": {"group": "internet", "tool": "getUrlListContentsParsed", "url": "https://n8n.io", "additionalOptions": {}}, "name": "uProc34", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [1980, 470], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "b7a838aa-9b5a-41a8-ad4e-078d5bae0386"}, {"parameters": {"group": "internet", "tool": "getNetNtoa", "number": "10421373", "additionalOptions": {}}, "name": "uProc35", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [2110, 470], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "99b81130-900a-4eff-afe1-9f812071071f"}, {"parameters": {"group": "internet", "tool": "getUrlParsed", "url": "https://n8n.io", "additionalOptions": {}}, "name": "uProc36", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [2240, 470], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "02263618-4341-43a3-97ff-579b3ae5849b"}, {"parameters": {"group": "internet", "tool": "getNetScan", "host": "https://n8n.io", "additionalOptions": {}}, "name": "uProc37", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [2370, 470], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "f12e7ab7-f2eb-419f-8a7d-5e630849ac5c"}, {"parameters": {"group": "internet", "tool": "checkNetServiceUp", "host": "https://n8n.io", "port": "80", "additionalOptions": {}}, "name": "uProc38", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [2500, 470], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "30cdf3be-b9eb-4c91-8c8a-979ed1672bea"}, {"parameters": {"group": "internet", "tool": "getUrlTables", "url": "https://n8n.io", "table": "3", "additionalOptions": {}}, "name": "uProc39", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [2630, 470], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "ed5bf95c-cdd4-4eb8-810f-ac18703f3743"}, {"parameters": {"group": "internet", "tool": "checkUrlValid", "url": "https://n8n.io", "additionalOptions": {}}, "name": "uProc40", "type": "n8n-nodes-base.uproc", "typeVersion": 1, "position": [2760, 470], "credentials": {"uprocApi": {"id": "142", "name": "uProc API creds"}}, "id": "6f264af2-ffbe-44cc-9b31-2e64d2b83b9b"}]
{"uProc1": {"main": [[{"node": "uProc2", "type": "main", "index": 0}]]}, "uProc2": {"main": [[{"node": "uProc3", "type": "main", "index": 0}]]}, "uProc3": {"main": [[{"node": "uProc4", "type": "main", "index": 0}]]}, "uProc4": {"main": [[{"node": "uProc5", "type": "main", "index": 0}]]}, "uProc5": {"main": [[{"node": "uProc6", "type": "main", "index": 0}]]}, "uProc6": {"main": [[{"node": "uProc7", "type": "main", "index": 0}]]}, "uProc7": {"main": [[{"node": "uProc8", "type": "main", "index": 0}]]}, "uProc8": {"main": [[{"node": "uProc9", "type": "main", "index": 0}]]}, "uProc9": {"main": [[{"node": "uProc10", "type": "main", "index": 0}]]}, "uProc10": {"main": [[{"node": "uProc11", "type": "main", "index": 0}]]}, "uProc11": {"main": [[{"node": "uProc12", "type": "main", "index": 0}]]}, "uProc12": {"main": [[{"node": "uProc13", "type": "main", "index": 0}]]}, "uProc13": {"main": [[{"node": "uProc14", "type": "main", "index": 0}]]}, "uProc14": {"main": [[{"node": "uProc15", "type": "main", "index": 0}]]}, "uProc15": {"main": [[{"node": "uProc16", "type": "main", "index": 0}]]}, "uProc16": {"main": [[{"node": "uProc17", "type": "main", "index": 0}]]}, "uProc17": {"main": [[{"node": "uProc18", "type": "main", "index": 0}]]}, "uProc18": {"main": [[{"node": "uProc19", "type": "main", "index": 0}]]}, "uProc19": {"main": [[{"node": "uProc20", "type": "main", "index": 0}]]}, "uProc20": {"main": [[{"node": "uProc21", "type": "main", "index": 0}]]}, "uProc22": {"main": [[{"node": "uProc23", "type": "main", "index": 0}]]}, "uProc23": {"main": [[{"node": "uProc24", "type": "main", "index": 0}]]}, "uProc24": {"main": [[{"node": "uProc25", "type": "main", "index": 0}]]}, "uProc25": {"main": [[{"node": "uProc26", "type": "main", "index": 0}]]}, "uProc26": {"main": [[{"node": "uProc27", "type": "main", "index": 0}]]}, "uProc27": {"main": [[{"node": "uProc28", "type": "main", "index": 0}]]}, "uProc28": {"main": [[{"node": "uProc29", "type": "main", "index": 0}]]}, "uProc29": {"main": [[{"node": "uProc30", "type": "main", "index": 0}]]}, "uProc30": {"main": [[{"node": "uProc31", "type": "main", "index": 0}]]}, "uProc31": {"main": [[{"node": "uProc32", "type": "main", "index": 0}]]}, "uProc32": {"main": [[{"node": "uProc33", "type": "main", "index": 0}]]}, "uProc33": {"main": [[{"node": "uProc34", "type": "main", "index": 0}]]}, "uProc34": {"main": [[{"node": "uProc35", "type": "main", "index": 0}]]}, "uProc35": {"main": [[{"node": "uProc36", "type": "main", "index": 0}]]}, "uProc36": {"main": [[{"node": "uProc37", "type": "main", "index": 0}]]}, "uProc37": {"main": [[{"node": "uProc38", "type": "main", "index": 0}]]}, "uProc38": {"main": [[{"node": "uProc39", "type": "main", "index": 0}]]}, "uProc39": {"main": [[{"node": "uProc40", "type": "main", "index": 0}]]}, "Start": {"main": [[{"node": "uProc1", "type": "main", "index": 0}, {"node": "uProc22", "type": "main", "index": 0}]]}}
GitLab:Repository:get getIssues:Issue:create createComment edit get lock:Release:create get getAll update delete:User:getRepositories
[{"parameters": {}, "name": "Start", "type": "n8n-nodes-base.start", "typeVersion": 1, "position": [250, 300], "id": "57d13714-f0f8-46af-a51c-4d6691fe9a52"}, {"parameters": {"resource": "repository", "operation": "get", "owner": "nodeqa", "repository": "nodemationQA"}, "name": "Gitlab", "type": "n8n-nodes-base.gitlab", "typeVersion": 1, "position": [560, 180], "id": "63131b59-53e5-431c-9c4e-daf68d14629c", "credentials": {"gitlabApi": {"id": "19", "name": "Gitlap token"}}, "notes": "IGNORED_PROPERTIES=topics"}, {"parameters": {"resource": "repository", "owner": "nodeqa", "repository": "nodemationQA", "getRepositoryIssuesFilters": {}}, "name": "Gitlab1", "type": "n8n-nodes-base.gitlab", "typeVersion": 1, "position": [820, 180], "id": "6d4cf9da-8e20-45ac-a97e-b78365c53ae9", "credentials": {"gitlabApi": {"id": "19", "name": "Gitlap token"}}, "notes": "CAP_RESULTS_LENGTH=1"}, {"parameters": {"owner": "nodeqa", "repository": "nodemationQA", "title": "=Issue - {{(new Date()).toDateString()}}", "body": "=QA Test on {{(new Date()).toDateString()}}", "labels": [], "assignee_ids": []}, "name": "Gitlab2", "type": "n8n-nodes-base.gitlab", "typeVersion": 1, "position": [550, 330], "id": "6fd68a0d-f82b-4470-8ba0-624caac71815", "credentials": {"gitlabApi": {"id": "19", "name": "Gitlap token"}}}, {"parameters": {"operation": "createComment", "owner": "nodeqa", "repository": "nodemationQA", "issueNumber": "={{$node[\"Gitlab2\"].json[\"iid\"]}}", "body": "=Comment on issue - {{(new Date()).toString()}}"}, "name": "Gitlab3", "type": "n8n-nodes-base.gitlab", "typeVersion": 1, "position": [710, 330], "id": "f996bfa2-d08a-4943-bd32-6c3042345c24", "credentials": {"gitlabApi": {"id": "19", "name": "Gitlap token"}}}, {"parameters": {"operation": "edit", "owner": "nodeqa", "repository": "nodemationQA", "issueNumber": "={{$node[\"Gitlab2\"].json[\"iid\"]}}", "editFields": {"description": "=Edited {{$node[\"Gitlab2\"].json[\"description\"]}}"}}, "name": "Gitlab4", "type": "n8n-nodes-base.gitlab", "typeVersion": 1, "position": [870, 330], "id": "1dfade56-7b02-4c36-952f-729006aa4dbd", "credentials": {"gitlabApi": {"id": "19", "name": "Gitlap token"}}}, {"parameters": {"operation": "get", "owner": "nodeqa", "repository": "nodemationQA", "issueNumber": "={{$node[\"Gitlab2\"].json[\"iid\"]}}"}, "name": "Gitlab5", "type": "n8n-nodes-base.gitlab", "typeVersion": 1, "position": [1020, 330], "id": "1ff45615-93bb-41b3-83d2-6a6135a77ee9", "credentials": {"gitlabApi": {"id": "19", "name": "Gitlap token"}}}, {"parameters": {"operation": "lock", "owner": "nodeqa", "repository": "nodemationQA", "issueNumber": "={{$node[\"Gitlab2\"].json[\"iid\"]}}"}, "name": "Gitlab6", "type": "n8n-nodes-base.gitlab", "typeVersion": 1, "position": [1180, 330], "id": "f6367788-80ca-45a4-a018-c66b8815f911", "credentials": {"gitlabApi": {"id": "19", "name": "Gitlap token"}}}, {"parameters": {"resource": "release", "owner": "nodeqa", "repository": "nodemationQA", "releaseTag": "=Release-tag-test{{Date.now()}}", "additionalFields": {"name": "=Release{{Date.now()}}", "ref": "master"}}, "name": "Gitlab7", "type": "n8n-nodes-base.gitlab", "typeVersion": 1, "position": [540, 490], "id": "5744f348-d468-45cd-90d8-b37502f20f49", "credentials": {"gitlabApi": {"id": "19", "name": "Gitlap token"}}}, {"parameters": {"resource": "user", "owner": "n8nqa"}, "name": "Gitlab8", "type": "n8n-nodes-base.gitlab", "typeVersion": 1, "position": [540, 640], "id": "919f48e5-1999-40af-89c2-8adce98e843b", "credentials": {"gitlabApi": {"id": "19", "name": "Gitlap token"}}, "notes": "IGNORED_PROPERTIES=topics"}, {"parameters": {"resource": "release", "operation": "get", "owner": "nodeqa", "repository": "nodemationQA", "projectId": "24497029", "tag_name": "={{$node[\"Gitlab7\"].json[\"tag_name\"]}}"}, "name": "Gitlab9", "type": "n8n-nodes-base.gitlab", "typeVersion": 1, "position": [710, 490], "id": "782007ea-d789-442c-b44d-fc34e737e467", "credentials": {"gitlabApi": {"id": "19", "name": "Gitlap token"}}}, {"parameters": {"resource": "release", "operation": "getAll", "owner": "nodeqa", "repository": "nodemationQA", "projectId": "24497029", "limit": 1, "additionalFields": {}}, "name": "Gitlab10", "type": "n8n-nodes-base.gitlab", "typeVersion": 1, "position": [870, 490], "id": "b441f646-eaef-41b8-934a-d349ae7563b5", "credentials": {"gitlabApi": {"id": "19", "name": "Gitlap token"}}}, {"parameters": {"resource": "release", "operation": "update", "owner": "nodeqa", "repository": "nodemationQA", "projectId": "24497029", "tag_name": "={{$node[\"Gitlab7\"].json[\"tag_name\"]}}", "additionalFields": {"name": "=Updated{{$node[\"Gitlab7\"].json[\"name\"]}}"}}, "name": "Gitlab11", "type": "n8n-nodes-base.gitlab", "typeVersion": 1, "position": [1020, 490], "id": "f2598d6c-084c-4d97-9e95-b36e1f56faa2", "credentials": {"gitlabApi": {"id": "19", "name": "Gitlap token"}}}, {"parameters": {"resource": "release", "operation": "delete", "owner": "nodeqa", "repository": "nodemationQA", "projectId": "24497029", "tag_name": "={{$node[\"Gitlab7\"].json[\"tag_name\"]}}"}, "name": "Gitlab12", "type": "n8n-nodes-base.gitlab", "typeVersion": 1, "position": [1180, 490], "id": "36983c2c-6114-4692-b925-279a5ec8055b", "credentials": {"gitlabApi": {"id": "19", "name": "Gitlap token"}}}]
{"Gitlab": {"main": [[{"node": "Gitlab1", "type": "main", "index": 0}]]}, "Start": {"main": [[{"node": "Gitlab", "type": "main", "index": 0}, {"node": "Gitlab2", "type": "main", "index": 0}, {"node": "Gitlab7", "type": "main", "index": 0}, {"node": "Gitlab8", "type": "main", "index": 0}]]}, "Gitlab2": {"main": [[{"node": "Gitlab3", "type": "main", "index": 0}]]}, "Gitlab3": {"main": [[{"node": "Gitlab4", "type": "main", "index": 0}]]}, "Gitlab4": {"main": [[{"node": "Gitlab5", "type": "main", "index": 0}]]}, "Gitlab5": {"main": [[{"node": "Gitlab6", "type": "main", "index": 0}]]}, "Gitlab7": {"main": [[{"node": "Gitlab9", "type": "main", "index": 0}]]}, "Gitlab9": {"main": [[{"node": "Gitlab10", "type": "main", "index": 0}]]}, "Gitlab10": {"main": [[{"node": "Gitlab11", "type": "main", "index": 0}]]}, "Gitlab11": {"main": [[{"node": "Gitlab12", "type": "main", "index": 0}]]}}
News Extraction
[{"id": "97711d12-20de-40aa-b994-d2b10f20a5e5", "name": "Extract the HTML with the right css class", "type": "n8n-nodes-base.html", "position": [-500, 0], "parameters": {"options": {"trimValues": true}, "operation": "extractHtmlContent", "extractionValues": {"values": [{"key": "data", "attribute": "href", "cssSelector": "=div:nth-child(9) > div:nth-child(3) > a:nth-child(2)", "returnArray": true, "returnValue": "attribute"}]}}, "typeVersion": 1}, {"id": "b874b570-daae-4878-b525-07ac30756eb1", "name": "Summary", "type": "n8n-nodes-base.openAi", "position": [-880, 440], "parameters": {"model": "gpt-4-1106-preview", "prompt": {"messages": [{"content": "=Create a summary in less than 70 words {{ $json[\"content\"] }}"}]}, "options": {}, "resource": "chat"}, "credentials": {"openAiApi": {"id": "0Vdk5RlVe7AoUdAM", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "72696278-2d44-4073-936a-6fe9df1bc7d8", "name": "Keywords", "type": "n8n-nodes-base.openAi", "position": [-880, 620], "parameters": {"model": "gpt-4-1106-preview", "prompt": {"messages": [{"content": "=name the 3 most important technical keywords in {{ $json[\"content\"] }} ? just name them without any explanations or other sentences"}]}, "options": {}, "resource": "chat"}, "credentials": {"openAiApi": {"id": "0Vdk5RlVe7AoUdAM", "name": "OpenAi account"}}, "typeVersion": 1}, {"id": "0bfdb3be-76ef-4bb3-902f-f0869342b83c", "name": "Rename keywords", "type": "n8n-nodes-base.set", "position": [-700, 620], "parameters": {"fields": {"values": [{"name": "keywords", "stringValue": "={{ $json[\"message\"][\"content\"] }}"}]}, "include": "none", "options": {}}, "typeVersion": 3.1}, {"id": "0387cf34-41c9-4729-8570-1db7b17c42f4", "name": "Rename Summary", "type": "n8n-nodes-base.set", "position": [-700, 440], "parameters": {"fields": {"values": [{"name": "=summary", "stringValue": "={{ $json[\"message\"][\"content\"] }}"}]}, "include": "none", "options": {}}, "typeVersion": 3.1}, {"id": "5fa1702c-f0bf-4524-bc8f-6f550dd83f1e", "name": "Merge", "type": "n8n-nodes-base.merge", "position": [-480, 560], "parameters": {"mode": "combine", "options": {}, "combinationMode": "mergeByPosition"}, "typeVersion": 2.1}, {"id": "25128a71-b0d5-49a4-adb8-c3fbe03c0a85", "name": "Extract date", "type": "n8n-nodes-base.html", "position": [-500, -160], "parameters": {"options": {}, "operation": "extractHtmlContent", "extractionValues": {"values": [{"key": "data", "cssSelector": "div:nth-child(9) > div:nth-child(2) > span:nth-child(1)", "returnArray": true}]}}, "typeVersion": 1}, {"id": "138b3bd6-494a-49b9-b5b8-c9febcfef9fb", "name": "Select posts of last 7 days", "type": "n8n-nodes-base.code", "position": [120, 0], "parameters": {"jsCode": "const currentDate = new Date();\nconst sevenDaysAgo = new Date(currentDate.setDate(currentDate.getDate() - 70)); // Change the number of days going back to your liking (e.g. from -7 to -1) -> BUT sync with the cron job (first node)\n\nconst filteredItems = items.filter(item => {\n const postDate = new Date(item.json[\"Date\"]); // Assuming \"Date\" is the field name in the extracted html\n return postDate >= sevenDaysAgo;\n});\n\nreturn filteredItems;\n"}, "typeVersion": 2}, {"id": "1ace953b-e298-4fc2-8970-327f736889ec", "name": "Merge date & links", "type": "n8n-nodes-base.merge", "position": [-100, 0], "parameters": {"mode": "combine", "options": {}, "combinationMode": "mergeByPosition"}, "typeVersion": 2.1}, {"id": "bba692fc-c225-41be-a969-179d8b99c071", "name": "HTTP Request1", "type": "n8n-nodes-base.httpRequest", "position": [320, 0], "parameters": {"url": "={{ $json[\"Link\"] }}", "options": {}}, "typeVersion": 4.1}, {"id": "26671065-631f-4684-9ee1-15f26b4cf1e4", "name": "Merge Content with Date & Link", "type": "n8n-nodes-base.merge", "position": [500, 260], "parameters": {"mode": "combine", "options": {}, "combinationMode": "mergeByPosition"}, "typeVersion": 2.1}, {"id": "79beb744-97b8-4072-824a-6736b0a080ef", "name": "Extract individual posts", "type": "n8n-nodes-base.html", "position": [500, 0], "parameters": {"options": {}, "operation": "extractHtmlContent", "extractionValues": {"values": [{"key": "title", "cssSelector": "h1.fl-heading > span:nth-child(1)"}, {"key": "content", "cssSelector": ".fl-node-5c7574ae7d5c6 > div:nth-child(1)"}]}}, "typeVersion": 1}, {"id": "e89d9de5-875b-453e-825a-26f2bebcc8df", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [80, -107], "parameters": {"width": 180.9747474601832, "height": 276.31054308676767, "content": "Select only the newest news: todays date going back xy days"}, "typeVersion": 1}, {"id": "8a603f2f-4208-48c7-b169-e5613f13fa7d", "name": "Merge ChatGPT output with Date & Link", "type": "n8n-nodes-base.merge", "position": [-180, 560], "parameters": {"mode": "combine", "options": {}, "combinationMode": "mergeByPosition"}, "typeVersion": 2.1}, {"id": "e1036421-9ce1-4121-a692-602410ec7c95", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "disabled": true, "position": [-539.7802584556148, -4.722020203185366], "parameters": {"width": 182.2748213508401, "height": 304.2550759710132, "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nExtracting the individual links of the press release page in order to retrieve the individual posts on their respective **url**"}, "typeVersion": 1}, {"id": "3655ab22-6a17-429a-9d9b-d96bbcc78fee", "name": "Sticky Note2", "type": "n8n-nodes-base.stickyNote", "position": [-538.404803912782, -304], "parameters": {"width": 178.75185894039254, "height": 289.463147786618, "content": "Extracting the dates of the posts of the press release page.\nThe right CSS selector has to be chosen.\n[More info on datagrab.io](https://datagrab.io/blog/guide-to-css-selectors-for-web-scraping/)"}, "typeVersion": 1}, {"id": "2e27fb4c-426a-41e1-b5fb-9b2d78acd2a7", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [-1300, -299.82161760751774], "parameters": {"width": 334.4404040637068, "height": 1127.2017245821128, "content": "# Scraping posts of a news site without RSS feed\n\n\nThe [News Site](https://www.colt.net/resources/type/news/) from Colt, a telecom company, does not offer an RSS feed, therefore web scraping is the \nchoice to extract and process the news.\n\nThe goal is to get only the newest posts, a summary of each post and their respective (technical) keywords.\n\nNote that the news site offers the links to each news post, but not the individual news. We collect first the links and dates of each post before extracting the newest ones.\n\nThe result is sent to a SQL database, in this case a NocoDB database.\n\nThis process happens each week thru a cron job.\n\n**Requirements**:\n- Basic understanding of CSS selectors and how to get them via browser (usually: right click &rarr; inspect)\n- ChatGPT API account - normal account is not sufficient\n- A NocoDB database - of course you may choose any type of output target\n\n**Assumptions**:\n- CSS selectors work on the news site\n- The post has a date with own CSS selector - meaning date is not part of the news content\n\n**\"Warnings\"**\n- Not every site likes to be scraped, especially not in high frequency\n- Each website is structured in different ways, the workflow may then need several adaptations.\n\n\nHappy about any suggestion to improve. You may contact me on **Mastodon**: https://bonn.social/@askans"}, "typeVersion": 1}, {"id": "d43bd5b7-2aff-4a07-8aca-ca4747ec6c4d", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [-927.8447474890202, -80], "parameters": {"width": 153.90180146729315, "height": 237.91333335255808, "content": "Weekly cron job"}, "typeVersion": 1}, {"id": "e732d136-fcf1-4fc3-8bb6-bdcea3c78d9e", "name": "Sticky Note5", "type": "n8n-nodes-base.stickyNote", "position": [-760, -80], "parameters": {"width": 185.41515152389002, "height": 241.454848504947, "content": "The html of the news site is being retrieved: https://www.colt.net/resources/type/news/"}, "typeVersion": 1}, {"id": "d5e29ec3-5ef2-42f3-b316-9350644dbba4", "name": "Sticky Note6", "type": "n8n-nodes-base.stickyNote", "position": [-340, -306], "parameters": {"width": 187.3613302133812, "height": 469.2923233086395, "content": "As the extraction are returned as arrays, they transformed into individual JSON items to enable looping with other nodes"}, "typeVersion": 1}, {"id": "1af15c45-32c0-4abf-a35d-be7206823569", "name": "Sticky Note7", "type": "n8n-nodes-base.stickyNote", "position": [-120, -103.54151515238902], "parameters": {"width": 150, "height": 274.50898992724416, "content": "The links of the individual posts and the dates of the posts "}, "typeVersion": 1}, {"id": "f7c42748-f227-42d0-a9e2-fcb16dbd0f75", "name": "Retrieve the web page for further processsing", "type": "n8n-nodes-base.httpRequest", "position": [-720, 0], "parameters": {"url": "https://www.colt.net/resources/type/news/", "options": {"response": {"response": {"responseFormat": "text"}}}}, "typeVersion": 4.1}, {"id": "b2c36f26-8221-478f-a4b0-22758b1e5e58", "name": "Sticky Note9", "type": "n8n-nodes-base.stickyNote", "position": [292, -100], "parameters": {"width": 155.0036363426638, "height": 272.1479798256519, "content": "Get the html of each individual **newest** post"}, "typeVersion": 1}, {"id": "6ae05c31-c09a-4b4e-a013-41571937bc39", "name": "Sticky Note10", "type": "n8n-nodes-base.stickyNote", "position": [460, -100], "parameters": {"width": 184.07417896879767, "height": 269.2504410842093, "content": "Extracting the title & content (text) of each individual news post with the right CSS selector"}, "typeVersion": 1}, {"id": "e2da76d4-0c8c-4c61-924f-50aa9387e9ab", "name": "Sticky Note11", "type": "n8n-nodes-base.stickyNote", "position": [460, 180], "parameters": {"width": 191.87778190338406, "height": 234.13422787857044, "content": "Merge link to url, date with content (text) and title of each news psot"}, "typeVersion": 1}, {"id": "c124aaac-dce6-4658-9027-bdfe5c0c81e6", "name": "Sticky Note12", "type": "n8n-nodes-base.stickyNote", "position": [-907.2264215202996, 331.0681740778203], "parameters": {"width": 150, "height": 256.2444361932317, "content": "Create a summary of each news post with ChatGPT. You need a ChatGPT API account for this"}, "typeVersion": 1}, {"id": "c9037e74-007b-4e44-b7f9-90e78b853eb5", "name": "Sticky Note13", "type": "n8n-nodes-base.stickyNote", "position": [-909.595196087218, 610.7495589157902], "parameters": {"width": 152.85976723045226, "height": 218.52702200939785, "content": "\n\n\n\n\n\n\n\n\n\n\n\n\n\nGet the 3 keywords of each news post"}, "typeVersion": 1}, {"id": "756397d9-de80-4114-9dee-b4f4b9593333", "name": "Sticky Note14", "type": "n8n-nodes-base.stickyNote", "position": [-740, 340], "parameters": {"width": 182.7735784797001, "height": 489.05192374172555, "content": "Just a renaming of data fields and eliminating unnecessary ones"}, "typeVersion": 1}, {"id": "a0dcb254-f064-45ed-8e22-30a6d079085b", "name": "Sticky Note15", "type": "n8n-nodes-base.stickyNote", "position": [-520, 480], "parameters": {"width": 169.7675735887227, "height": 254.94383570413422, "content": "Merge summary and keywords of each news post"}, "typeVersion": 1}, {"id": "82993166-b273-4b82-a954-554c6892f825", "name": "Schedule Trigger each week", "type": "n8n-nodes-base.scheduleTrigger", "position": [-900, 0], "parameters": {"rule": {"interval": [{"field": "weeks", "triggerAtDay": [3], "triggerAtHour": 4, "triggerAtMinute": 32}]}}, "typeVersion": 1.1}, {"id": "3d670eb9-5a36-4cd9-8d2c-40adf848485e", "name": "Sticky Note16", "type": "n8n-nodes-base.stickyNote", "position": [-220, 477.5081090810816], "parameters": {"width": 180.1723775015045, "height": 260.5279202647822, "content": "Add title, link and date to summary and keywords of each news post"}, "typeVersion": 1}, {"id": "62021393-e988-4834-9fa2-75a957b42890", "name": "NocoDB news database", "type": "n8n-nodes-base.nocoDb", "position": [60, 560], "parameters": {"table": "mhbalmu9aaqcun6", "fieldsUi": {"fieldValues": [{"fieldName": "=News_Source", "fieldValue": "=Colt"}, {"fieldName": "Title", "fieldValue": "={{ $json[\"title\"] }}"}, {"fieldName": "Date", "fieldValue": "={{ $json[\"Date\"] }}"}, {"fieldName": "Link", "fieldValue": "={{ $json[\"Link\"] }}"}, {"fieldName": "Summary", "fieldValue": "={{ $json[\"summary\"] }}"}, {"fieldName": "Keywords", "fieldValue": "={{ $json[\"keywords\"] }}"}]}, "operation": "create", "projectId": "prqu4e8bjj4bv1j", "authentication": "nocoDbApiToken"}, "credentials": {"nocoDbApiToken": {"id": "gjNns0VJMS3P2RQ3", "name": "NocoDB Token account"}}, "typeVersion": 2}, {"id": "e59e9fab-10a7-470b-afa6-e1d4b4e57723", "name": "Sticky Note17", "type": "n8n-nodes-base.stickyNote", "position": [280, 480], "parameters": {"width": 483.95825869942666, "height": 268.5678114630957, "content": "## News summaries and keywords &rarr; database\n\n[NocoDB](https://nocodb.com/) is an SQL database, here we store the news summaries and keywords for further processing. Any other output target can be chosen here, e.g. e-mail, Excel etc.\n\nYou need first have that database structured before appending the news summaries and additional fields. The you can shape this node.\n\nSome fields may be edited in the database itself (e.g. relevance of the news to you) and may be filled therefore with a default value or not at all"}, "typeVersion": 1}, {"id": "253b414b-9a5b-4a25-892b-9aa011d55d28", "name": "Sticky Note18", "type": "n8n-nodes-base.stickyNote", "position": [20, 480], "parameters": {"width": 262.99083066277313, "height": 268.56781146309544, "content": ""}, "typeVersion": 1}, {"id": "438e8dde-ce0a-4e5e-8d62-d735d19ec189", "name": "Create single link items", "type": "n8n-nodes-base.itemLists", "position": [-300, 0], "parameters": {"options": {"destinationFieldName": "Link"}, "fieldToSplitOut": "data"}, "typeVersion": 3}, {"id": "d721776b-fefc-4e72-91ef-6710f10b0393", "name": "Create single date items", "type": "n8n-nodes-base.itemLists", "position": [-300, -160], "parameters": {"options": {"destinationFieldName": "Date"}, "fieldToSplitOut": "data"}, "typeVersion": 3}]
{"Merge": {"main": [[{"node": "Merge ChatGPT output with Date & Link", "type": "main", "index": 1}]]}, "Summary": {"main": [[{"node": "Rename Summary", "type": "main", "index": 0}]]}, "Keywords": {"main": [[{"node": "Rename keywords", "type": "main", "index": 0}]]}, "Extract date": {"main": [[{"node": "Create single date items", "type": "main", "index": 0}]]}, "HTTP Request1": {"main": [[{"node": "Extract individual posts", "type": "main", "index": 0}]]}, "Rename Summary": {"main": [[{"node": "Merge", "type": "main", "index": 0}]]}, "Rename keywords": {"main": [[{"node": "Merge", "type": "main", "index": 1}]]}, "Merge date & links": {"main": [[{"node": "Select posts of last 7 days", "type": "main", "index": 0}]]}, "Create single date items": {"main": [[{"node": "Merge date & links", "type": "main", "index": 0}]]}, "Create single link items": {"main": [[{"node": "Merge date & links", "type": "main", "index": 1}]]}, "Extract individual posts": {"main": [[{"node": "Merge Content with Date & Link", "type": "main", "index": 0}]]}, "Schedule Trigger each week": {"main": [[{"node": "Retrieve the web page for further processsing", "type": "main", "index": 0}]]}, "Select posts of last 7 days": {"main": [[{"node": "Merge Content with Date & Link", "type": "main", "index": 1}, {"node": "HTTP Request1", "type": "main", "index": 0}]]}, "Merge Content with Date & Link": {"main": [[{"node": "Summary", "type": "main", "index": 0}, {"node": "Keywords", "type": "main", "index": 0}, {"node": "Merge ChatGPT output with Date & Link", "type": "main", "index": 0}]]}, "Merge ChatGPT output with Date & Link": {"main": [[{"node": "NocoDB news database", "type": "main", "index": 0}]]}, "Extract the HTML with the right css class": {"main": [[{"node": "Create single link items", "type": "main", "index": 0}]]}, "Retrieve the web page for further processsing": {"main": [[{"node": "Extract the HTML with the right css class", "type": "main", "index": 0}, {"node": "Extract date", "type": "main", "index": 0}]]}}
BasicLLMChain:OpenAIChat
[{"parameters": {"model": "gpt-3.5-turbo-0125", "options": {"temperature": 0}}, "id": "7b0bb72a-9a3e-4dbf-a875-cdc429bf333a", "name": "OpenAI Chat Model", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "typeVersion": 1, "position": [640, 600], "credentials": {"openAiApi": {"id": "Zak03cqeLUOsgkFI", "name": "OpenAi account"}}}, {"parameters": {}, "id": "4832e182-9823-45c4-9289-51299debbe4c", "name": "When clicking \"Test workflow\"", "type": "n8n-nodes-base.manualTrigger", "typeVersion": 1, "position": [460, 460]}, {"parameters": {"promptType": "define", "text": "How much is 1+1? Only provide the numerical answer without any other text.\n"}, "id": "6f978929-e85a-44cc-999b-8e670bd65314", "name": "Open AI Chat", "type": "@n8n/n8n-nodes-langchain.chainLlm", "typeVersion": 1.5, "position": [620, 460]}]
{"OpenAI Chat Model": {"ai_languageModel": [[{"node": "Open AI Chat", "type": "ai_languageModel", "index": 0}]]}, "When clicking \"Test workflow\"": {"main": [[{"node": "Open AI Chat", "type": "main", "index": 0}]]}}
Podcast Digest
[{"id": "48bf1045-cfc1-4b37-9cce-86634bd97480", "name": "When clicking \"Execute Workflow\"", "type": "n8n-nodes-base.manualTrigger", "position": [-420, 580], "parameters": {}, "typeVersion": 1}, {"id": "75f2e528-e5fe-4508-b98f-e1f71f803e60", "name": "Podcast Episode Transcript", "type": "n8n-nodes-base.code", "position": [-220, 580], "parameters": {"jsCode": "return { transcript: `So throughout the last couple episodes we\u2019ve been doing on the philosophy of mind\u2026there\u2019s been an IDEA that we\u2019ve referenced MULTIPLE TIMES\u2026 and really just glossed over it as something, that\u2019s PRACTICALLY self evident. \n\n\n\nThe idea\u2026 is that when we THINK about consciousness\u2026 we can SPLIT it into two different types\u2026there\u2019s ACCESS consciousness on the one hand\u2026 and PHENOMENAL consciousness on the other. This is what we\u2019ve been saying. \n\n\n\nWhen it comes to ACCESS consciousness\u2026that\u2019s stuff we CAN explain with neuroscience things like memories, information processing, our field of visual awareness\u2026we can CLEARLY EXPLAIN a bit about how all THAT stuff works.\n\n\n\nBut in this conversation so far, what KEEPS on being said\u2026 is that what we CAN\u2019T SEEM to explain\u2026is PHENOMENAL consciousness\u2026you know, the subjective experience, that UNDERLIES conscious thought. That it FEELS like something to be me. There\u2019s this idea\u2026that this phenomenal consciousness is something separate\u2026something fundamental, something in a category ALL IT\u2019S OWN\u2026 that needs to be explained. You can explain a lot of stuff about access consciousness\u2026but you can\u2019t explain PHENOMENAL consciousness. \n\n\n\nBut if you were a good materialist listening to the discussions on this series so far\u2026and you\u2019re sitting in the back of the room, being SUPER PATIENT, NOT SAYING ANYTHING trying to be respectful to all the other ideas being presented\u2026maybe there\u2019s a part of you so far that\u2019s just been BOILING inside, because you\u2019re waiting for the part of the show where we\u2019re ACTUALLY going to call that GIANT assumption that\u2019s being made into question. \n\n\n\nBecause a materialist might say, SURE\u2026phenomenal consciousness is PRETTY mysterious and all. But DOES that necessarily mean that it\u2019s something that NEEDS a further explanation? \n\n\n\nThis is a good question. What is the difference\u2026 between EXPLAINING ALL of the component PARTS of our subjective experience again the thoughts, memories, information processing\u2026what\u2019s the difference between explaining all that and explaining phenomenal consciousness\u2026 in itself? Like what does that even mean?\n\n\n\nThat\u2019s kinda like you saying\u2026well\u2026 you can EXPLAIN the delicious waffle cone. You can EXPLAIN the creamy chocolatey goodness inside, you can EXPLAIN the RAINBOW colored SPRINKLES. But you CAN\u2019T explain the ICE CREAM CONE\u2026in ITSELF, now can you? \n\n\n\nI mean at a CERTAIN point what are we even talking about anymore? IS phenomenal consciousness REALLY something that\u2019s ENTIRELY SEPARATE that needs to be explained? \n\n\n\nMaybe, it DOESN\u2019T need to be explained. Maybe phenomenal consciousness is less a thing in itself\u2026and MORE a sort of ATTRIBUTION we make\u2026 about a particular INTERSECTION of those component parts that we CAN study and explain. \n\n\n\nNow obviously there\u2019s a bit to clarify there\u2026 and going over some popular arguments as to why that might be the case will take a good portion of the episode here today. But maybe a good place to start is to ask the question\u2026if the hard problem of consciousness is to be able to explain why it FEELS like something to be me\u2026and your SOLUTION to that is that maybe we don\u2019t even need to explain that. One thing you\u2019re gonna HAVE to explain no matter what\u2026 is why it SEEMS to MOST people living in today\u2019s world\u2026that phenomenal consciousness IS something that needs to be explained. \n\n\n\nRight before we began this series we did an episode on Susan Sontag and the power of the metaphors we casually use in conversations. And we talked about how these metaphors ACTUALLY go on to have a pretty huge impact on the way we contextualize the things in our lives. \n\n\n\nWell the philosopher Susan Blackmore, and apparently\u2026 I ONLY cover female philosophers by the name of Susan or Simone on this show\u2026but anyway SUSAN BLACKMORE, huge player in these modern conversations about the mysteries of consciousness\u2026and she thinks that if it\u2019s DIFFICULT for someone to wrap their brain around the idea that phenomenal consciousness is NOT something that is conceptually distinct\u2026it MAY BE because of the METAPHORS about consciousness that we use in everyday conversation that are directing the way you THINK about consciousness\u2026 into a particular lane that\u2019s incorrect. \n\n\n\nFor example, there\u2019s a way people think about consciousness\u2026 that\u2019s TRAGICALLY common in today\u2019s world\u2026it\u2019s become known as the Cartesian theater. So Cartesian obviously referring to Descartes. And when Descartes arrives at his substance dualism where the MIND is something ENTIRELY SEPARATE from the BODY\u2026this EVENT in the history of philosophy goes on to CHANGE the way that people start to see their conscious experience. They start to think\u2026 well what I am\u2026is I\u2019m this conscious creature, sort of perched up here inside of this head\u2026and I\u2019m essentially\u2026sitting in a theater, LOOKING OUT through a set of eyes which are kind of like the screen in a theater\u2026and on the screen what I SEE is the outside world. \n\n\n\nNow nobody ACTUALLY believes this is what is happening. Every person on this god forsaken planet KNOWS that there isn\u2019t a movie theater up in their heads. But hearing and using this metaphor DOES SHADE the way that they see their own conscious experience. The casual use of the metaphor\u2026 ALLOWS people to smuggle in assumptions about their subjective experience, that we REALLY have no evidence to be assuming. \n\n\n\nFor example, when the mind and body is totally separate\u2026maybe it becomes EASIER for people to believe that they\u2019re a SPIRIT that\u2019s INHABITING a body. Maybe it just makes it easier for people to VIEW their subjective, phenomenal consciousness as something SEPARATE from the body that needs to be explained in itself. WHATEVER IT IS though\u2026the point to Susan Blackmore is that metaphors you use have an IMPACT on your intuitions about consciousness. And she thinks there\u2019s several OTHER examples that fall into the very same CATEGORY as the Cartesian Theater. \n\n\n\nHow about the idea that there\u2019s a unified, single, STREAM of consciousness that you\u2019re experiencing. The STREAM being the metaphor there. Susan Blackmore asks is a SINGLE, unified STREAM, REALLY the way that you experience your conscious thought? Like when you REALLY pay attention is that how you\u2019re existing?\n\n\n\nShe says most likely the only reason people SEE their consciousness in terms of a stream\u2026is because of the specific way that people are often asked to OBSERVE their own consciousness. There\u2019s a BIAS built into the way that we\u2019re checking in. How do people typically do it? Well they\u2019ll take a moment\u2026they\u2019ll stop what they\u2019re doing\u2026and they\u2019ll ask themselves: what does it feel like to be ME right now. They\u2019ll pay attention, they\u2019ll listen, they\u2019ll try to come up with an answer to the question\u2026and they\u2019ll realize that there\u2019s a PARTICULAR set of thoughts, feelings and perceptions that it FEELS like, to be YOU in THAT moment. \n\n\n\nBut then that person can wait for an hour\u2026come back later, and ask the very SAME QUESTION in a different moment: what does it feel like to be me right now\u2026and low and behold a totally DIFFERENT set of thoughts, feelings and perceptions come up. \n\n\n\nAnd then what we OFTEN DO as people at that point\u2026 is we FILL IN that empty space between those two moments with some ethereal STREAM of consciousness that we assume MUST HAVE existed between the two. \n\n\n\nBut at some OTHER level\u2026RATIONALLY we KNOW\u2026that for the whole time that we WEREN\u2019T doing this accounting of what it FEELS like to be me\u2026we KNOW that there were TONS of different unconscious meta-processes going on\u2026all doing their own things, sometimes interacting with each other, most of the time not. We KNOW that our EXPERIENCE of consciousness is just directing our attention to one PIECE of our mental activity or another\u2026 and that all those pieces of mental activity KEEP on operating whether we\u2019re FOCUSING on one of them or not. \n\n\n\nSo is there a specific LOCATION where there\u2019s some sort of collective STREAM where all of this stuff is bound together HOLISTICALLY? Is there ANY good reason to ASSUME that it NEEDS to BE that way? Could it be that the continuity of this mental activity is more of an ILLUSION\u2026 than it is a reality?\n\n\n\nAnd if this sounds impossible at first\u2026think of OTHER illusions that we KNOW go on in the brain. Think of how any SINGLE sector of the brain CREATES a similar sort of illusion. Memories. We KNOW that DIFFERENT parts of the brain are responsible for different types of memory. Semantic memory in the frontal cortex, episodic memory in the hippocampus, procedural memory in the cerebellum. ALL of these different areas work together in concert with each other, it\u2019s ALL seemingly unified. \n\n\n\nWhen someone cuts me off in traffic and I\u2019m choosing a reaction\u2026I don\u2019t CONSCIOUSLY, travel down to my cerebellum and say hey 200 million years ago how did my lizard grandfather react when a lizard cut him off in traffic\u2026no MULTIPLE different parts of the brain work together and create an ILLUSION of continuity. And the SAME thing goes for our VISUAL experience of the world. The SAME thing happens with our emotions. \n\n\n\nHere\u2019s Susan Blackmore saying: the traditional METAPHORS that we casually throw around about consciousness\u2026even with just a LITTLE bit of careful observation of your own experience\u2026being someone up in a theater in your head with a unified, continuous STREAM of your own consciousness\u2026this ISN\u2019T even how our experiences SEEM. \n\n\n\nNow it should be said if you were sufficiently COMMITTED to the process\u2026you could ABSOLUTELY carry on in life with a complete LACK of self awareness fueled by the METAPHORS of pop-psychology and MOVIES and TV shows, and you could DEFINITELY LIVE in a state of illusion about it. But that DOESN\u2019T make it right\u2026and what happens she asks when those METAPHORS go on to impact the way we conduct science or break things down philosophically? She says:\n\n\n\n\u201cNeuroscience and disciplined introspection give the same answer: there are multiple parallel processes with no clear distinction between conscious and unconscious ones. Consciousness is an attribution we make, not a property of only some special events or processes. Notions of the stream, contents, continuity and function of consciousness are all misguided as is the search for the neural correlates of consciousness.\u201d\n\n\n\nThe MORE you think about the ILLUSIONS that our brains create for the sake of simplicity\u2026the more the question starts to emerge: what if there is no CENTRALIZED HEADQUARTERS of the brain where the subjective experience of YOU\u2026is being produced? \n\n\n\nWhat if consciousness\u2026is an emergent property that exists\u2026ONLY, when there is a VERY SPECIFIC organization of physical systems? \n\n\n\nThere are people that believe that phenomenal consciousness\u2026 is an ILLUSION, they\u2019re often called Illusionists\u2026and what someone like THAT may say is sure, fully acknowledge there are other theories about what may ultimately explain phenomenal consciousness\u2026but isn\u2019t it ALSO, ENTIRELY POSSIBLE\u2026that what it FEELS like to be YOU\u2026is an illusion created by several, distributed processes of the brain running in parallel? Multiple different channels, exerting simultaneous influence on a variety of subsystems of the brain. That these subsystems talk to each other, they compete with each other, they ebb and flow between various states of representation. \n\n\n\nBut that these different DRAFTS of cognitive processes come together, to create a type of simplification of what\u2019s going on in aggregate\u2026 and that simplification is what YOU experience as\u2026 YOU. I mean we have our five senses that help us map the EXTERNAL world and they do so in a way that is often crude and incomplete. Could it be\u2026 that we SIMILARLY\u2026 have a crude misrepresentation of our own brain activity that SIMILARLY, allows us to be able to function efficiently as a person? \n\n\n\nIf you were looking for another METAPHOR to apply here that an illusionist might say is probably better for people to think of themselves in terms of\u2026 because its not gonna lead us down that rabbit hole of the cartesian theater\u2026its to THINK of phenomenal CONSCIOUSNESS\u2026as being SIMILAR to a USER INTERFACE or a DESKTOP on a computer. \n\n\n\nThe idea is: what IS the desktop of a computer? Well its a bunch of simplified ICONS on a screen, that allow you to essentially manipulate the ELECTRICAL VOLTAGE going on in between transistors on computer hardware. But AS you\u2019re pushing buttons to CHANNEL this electricity, getting things DONE on the computer\u2026you don\u2019t ACTUALLY need to know ANYTHING ABOUT the complex inner workings of how the software and hardware are operating.\n\n\n\nThe philosopher Daniel Dennett INTRODUCES the metaphor here in his famous book called Consciousness Explained (1991). He says:\n\n\n\n\u201cWhen I interact with the computer, I have limited access to the events occurring within it. Thanks to the schemes of presentation devised by the programmers, I am treated to an elaborate audiovisual metaphor, an interactive drama acted out on the stage of keyboard, mouse, and screen. I, the User, am subjected to a series of benign illusions: I seem to be able to move the cursor (a powerful and visible servant) to the very place in the computer where I keep my file, and once that I see that the cursor has arrived \u2018there\u2019, by pressing a key I get it to retrieve the file, spreading it out on a long scroll that unrolls in front of a window (the screen) at my command. I can make all sorts of things happen inside the computer by typing in various commands, pressing various buttons, and I don\u2019t have to know the details; I maintain control by relying on my understanding of the detailed audiovisual metaphors provided by the User illusion.\u201d\n\n\n\nSo if we take this metaphor seriously\u2026then the idea that you are some sort of privileged observer of everything that\u2019s going on in your mind\u2026that starts to seem like it\u2019s just FALSE. To Daniel Dennett\u2026we don\u2019t know what\u2019s REALLY happening at the deepest levels of our brains\u2026we only know what SEEMS to be happening. We are constantly acting in certain ways, doing things\u2026and then AFTER the fact making up reasons for why we ACTED in the way that we did.\n\n\n\nPoint is: you don\u2019t need to know EVERYTHING that\u2019s going on at EVERY LEVEL of a computer\u2026 to be able to for example, drag a file that you don\u2019t need anymore into the trash can on your desktop. You just drag the file into the trash can on this convenient, intuitive SCREEN. In fact you could make the argument that KNOWING about all the information being processed at other levels would get in the way of you being able to get things done that are USEFUL.\n\n\n\nBut\u2026 as its been said many times before\u2026to RELATE this back to our subjective experience of consciousness\u2026to an ILLUSIONIST\u2026 we have to acknowledge the fact\u2026that there is NO MORE\u2026 a TRASH CAN inside of your computer screen\u2026as there is a separate PHENOMENAL SUBJECT inside of your brain that needs to be explained. THAT\u2026is an ILLUSION. What you HAVE\u2026 Daniel Dennett refers to as an EDITED DIGEST, of events that are going on inside your brain. \n\n\n\nSo again just to clarify\u2026an ILLUSIONIST\u2026 doesn\u2019t DOUBT the existence of access consciousness, they\u2019re not saying that the OUTSIDE WORLD is an illusion\u2026 No, just the phenomenal REPRESENTATION of brain activity\u2026just the subjective YOU that experiences the world phenomenologically.\n\n\n\nThe philosopher Keith Frankish gives the example of a television set to describe the type of illusion they\u2019re talking about. He says: \n\n\n\u201cThink of watching a movie. What your eyes are actually witnessing is a series of still images rapidly succeeding each other. But your visual system represents these images as a single fluid moving image. The motion is an illusion. Similarly, illusionists argue, your introspective system misrepresents complex patterns of brain activity as simple phenomenal properties. The phenomenality is an illusion.\u201d\n\n\n\nWhen it FEELS LIKE SOMETHING to be you\u2026these phenomena are \u201cmetaphorical representations\u201d of REAL neural events that are going on\u2026and they definitely help us navigate reality\u2026they definitely ARE useful\u2026 but nothing about those phenomena\u2026 offer ANY sort of deep insight into the processes involved to produce that experience. So in THAT sense, they are an illusion. \n\n\n\nAnd Daniel Dennett goes HARD on ANYONE trying to smuggle in ANY MORE MAGIC than needs to be brought in to EXPLAIN consciousness. He wrote a GREAT entry in the journal of consciousness studies in 2016 called Illusionism as the obvious default theory of consciousness. \n\n\n\nNow what\u2019s he GETTING at with that title? Why should consciousness being an ILLUSION\u2026 be the DEFAULT theory we should all START from? Well he COMPARES the possibility of consciousness being an illusion\u2026with ANOTHER kind of illusion. The kind of illusion that you\u2019d see in VEGAS at a MAGIC show. \n\n\n\nBecause what HAPPENS at a MAGIC show? Well there are GREAT efforts MADE by the magician you\u2019re watching\u2026to TRICK you into thinking that what you\u2019re seeing is real. \n\n\n\nYou\u2019re watching the magic show from a VERY specific point of view\u2026CAREFULLY selected by the magician to LIMIT the information you have. They got lights and smoke and music to DISTRACT you, they\u2019re usually wearing some kind of bedazzled, cowboy costume looks like they got it at spirit Halloween, their poor assistant is dressed in God knows what to distract you. \n\n\n\nAnd when they DO the trick and the ILLUSION is finally COMPLETE\u2026and you\u2019re sitting there AMAZED, WONDERING as to how they defied the laws of nature and actually sawed someone in half and put them back together in front of you\u2026imagine someone in the crowd writing a REVIEW of the show the next day and saying, welp\u2026I guess EVERYTHING we KNOW about science needs to be rethought\u2026I mean this man is CLEARLY a wizard\u2026he is CLEARLY outside the bounds of natural constraints that we THOUGHT existed\u2026it\u2019s time to RETHINK our ENTIRE theoretical model.\n\n\n\nDaniel Dennett says who would EVER TAKE that person seriously? They\u2019d be laughed off the internet if they wrote that. And RIGHTFULLY SO. And SIMILARLY when it comes to these modern conversations about consciousness\u2026why would we EVER assume that our entire theoretical MODEL is flawed? Why would we ASSUME the supernatural? Why wouldn\u2019t we assume that anything that seems magical or mysterious definitely HAS a natural explanation\u2026and that we just don\u2019t understand it yet? \n\n\n\nIf you ONLY saw a magic trick from a single angle, like sitting in the audience of a theater\u2026it would be silly for us to assume that there wasn\u2019t a different perspective available that would SHOW how the trick was done. Similarly\u2026 we ONLY REALLY SEE the qualia of our subjective experience from the angle of introspection. \n\n\n\nThis is why to daniel dennett\u2026the DEFAULT position we should be starting from\u2026the MOST parsimonious explanation for a mystery that contradicts everything else we know\u2026is that it\u2019s an illusion. \n\n\n\nIt\u2019s funny because it\u2019s an argument that\u2019s coming from a place that\u2019s SIMILAR to where a panpsychist may be coming from, but it\u2019s arriving at a totally different conclusion. Panpsychist might say that we don\u2019t yet know enough about the human brain to write OFF the possibility that consciousness exists at some level underneath. Here\u2019s an illusionist position that\u2019s saying, yeah, we certainly HAVEN\u2019T been doing science long enough to know EVERYTHING about the brain\u2026and think of all the low hanging fruit in the sciences that could potentially EXPLAIN this mystery if only we have more time to study it. \n\n\n\nMore than that\u2026to an illusionist\u2026maybe there is something ABOUT the nature of the illusion that we\u2019re experiencing, that is NOT fully explainable by studying the physical properties of the brain. Maybe studying the ILLUSION ITSELF\u2026 is where we should be focusing more of our attention. \n\n\n\nBut that said\u2026there\u2019s no shortage of people out there that have PROBLEMS with saying consciousness is an illusion. For example\u2026 the philosopher Massimo Pigliucci, who by the way fun trivia fact is the only person OTHER than phillip goff that we\u2019ve ever interviewed on this show all the way back in our HUME series\u2026anyway HE once wrote an article where he talks about how Illusionism\u2026AS an ANSWER to the hard problem of consciousness\u2026is something that HE thinks HEAVILY relies on the specific definition you\u2019re using of what an ILLUSION is or what CONSCIOUSNESS is. \n\n\n\nTo explain what he means\u2026 let\u2019s go back to the metaphor about the icons on the computer screen. Massimo Pigliucci says this metaphor that Daniel Dennett presents in Consciousness Explained\u2026is a POWERFUL metaphor when it comes to describing the relationship between phenomenal consciousness\u2026 and the underlying neural machinery that makes it possible. It\u2019s great. But what HE can\u2019t seem to understand is why ANYONE would EVER CALL what\u2019s going ON there\u2026an \u201cillusion\u201d? Why USE the word illusion? \n\n\n\nWhen you hear the word illusion he says\u2026 you think of mind trickery, smoke and mirrors. But that\u2019s not what\u2019s happening when it comes to the user interface of a computer. He says, \u201ccomputer icons, cursors and so forth are not illusions, they are causally efficacious representations\u2026 of underlying machine language processes.\u201d \n\n\n\nWhat he\u2019s getting at\u2026 is that there\u2019s no ILLUSION going on here. There IS a connection between the underlying processes of the brain and our phenomenal experience of it. If it were truly an illusion, there would BE no real connection. But he says if you wanted to use that same logic\u2026would you say that the wheel of your CAR is an illusion? I mean when you\u2019re driving down the road and you turn the wheel\u2026you\u2019re not aware of the complexity of everything the car is doing, all of the internal communication going on to be able to turn the car in whatever direction you\u2019re going. Does that make it an illusion when you turn the steering wheel left and everything moves that makes the car go left? No, the steering wheel is causally connected to the underlying machinery\u2026 and that steering wheel makes it POSSIBLE for you to actually be able to drive the car efficiently. So why would you ever choose the word ILLUSION\u2026 to describe\u2026 what\u2019s going ON there? \n\n\n\nMassimo Pigliucci thinks there\u2019s an easy trap for someone to fall into living in today\u2019s world\u2026he calls it a sort of reductionist temptation\u2026we come from a LONG HISTORY in the sciences of progressively reducing things to a deeper, more fundamental level of their component parts\u2026 and then the assumption has usually been that if you can find a lower level of description about something\u2026for example if we can explain what PHENOMENAL CONSCIOUSNESS is, with a neurobiological explanation\u2026well then THAT explanation, must be MORE TRUE than anything going on at a more macro level\u2026at the level of the consciousness we experience every day. It must be a more FUNDAMENTAL explanation, and therefore a BETTER explanation. \n\n\n\nYou\u2019ll see this same kind of thinking going on when someone assumes the atoms that MAKE UP an apple\u2026 are more REAL in some sense than the apple in macroscopic reality\u2026the assumption being that the apple as WE experience it is some kind of an illusion created by our flawed SENSES and that it\u2019s somehow less valuable. \n\n\n\nBut this whole way of thinking\u2026is UNWORKABLE he says. We\u2019ve learned over the course of THOUSANDS of years of trying to STUDY the things around us\u2026that different levels of description\u2026 are USEFUL for different purposes. \n\n\n\nHe gives a series of examples: he says, \u201cIf we are interested in the biochemistry of the brain, then the proper level of description is the subcellular one, taking lower levels (eg, the quantum one) as background conditions. If we want a broader picture of how the brain works, we need to move up to the anatomical level, which takes all previous levels, from the subcellular to the quantum one, as background conditions. But if we want to talk to other human beings about how we feel and what we are experiencing, then it is the psychological level of description (the equivalent of Dennett\u2019s icons and cursors) that, far from being illusory, is the most valuable.\u201d\n\n\n\nReality plays by different sets of rules at different scales. And different SCALES of reality are USEFUL for different types of inquiry. When you\u2019re going about your everyday life do you assume that the ground is solid? Or do you use the lower level of description at the atomic level where the ground is really 99.9% empty space?\n\n\n\nSo when it comes to consciousness\u2026if we\u2019re gonna SAY that a neurobiological description of what\u2019s going on invalidates the experience of what\u2019s going on at the level of subjectivity, that subjectivity is nothing but an illusion\u2026then why stop at the neurobiological level he says? Why not say that neurons are actually an illusion because they\u2019re ultimately made up of molecules? Why not say that MOLECULES are illusions because they\u2019re really made up of quarks and gluons. You can do this INFINITELY. \n\n\n\nAnd maybe on a more GENERAL note\u2026JUST when it comes to this lifelong process of trying to be as clear thinking of a human being as you possibly CAN be\u2026maybe part of that whole process\u2026 is accepting the fact that there is no, single, monistic way of analyzing reality that is the ULTIMATE METHOD of understanding it. Maybe understanding reality\u2026 just takes a more pluralistic approach, maybe GETTING as close to the truth as we can as people takes LOOKING at reality from many different angles at many different scales, and maybe phenomenal consciousness is an important scale of reality\u2026 that we need to be considering. \n\n\n\nSo from Daniel Dennett and Keith Frankish offering a take on HOW consciousness might be an illusion\u2026to Susan Blackmore offering a take on WHY the illusion of consciousness is such an easy trap to FALL into\u2026I think if anyone you\u2019re in a conversation with calls themselves an illusionist\u2026then unless you\u2019re talking to David Copperfield I think you\u2019ll at LEAST be able to understand the main reasons for why someone may THINK this way about consciousness. \n\n\n\nAnd this is the point in the conversation where we hit a bit of a crossroads\u2026SAME crossroads that we\u2019ve seen with OTHER theories of consciousness in the series so far. At a certain point...there are GOOD reasons to believe that phenomenal consciousness may be an illusion\u2026and there are good reasons to DOUBT whether that is true or not. As we\u2019ve talked about at a certain point with these conversations you just have to CHOOSE to believe in something, and then deal with the prescriptive implications of BELIEVING it after the fact\u2026and one of the ones with Illusionism in particular is you can start to wonder, the more you think about it, how much consciousness being an illusion, ACTUALLY has an impact on ANYTHING going on in your everyday life or your relationship to society. \n\n\n\nIt\u2019s actually pretty interesting to consider\u2026how much the possibility of consciousness being an illusion\u2026DIRECTLY MIRRORS, OTHER, unsolved conversations in the philosophy of mind more broadly. Like for example\u2026the ongoing debate about whether FREE WILL is an illusion. \n\n\n\nIn fact in order to be able to talk about the societal impacts of consciousness being an illusion we have to talk about free will being one as well. \n\n\n\nNext episode we\u2019re going to dive into it. Free will, free wont, hard determinism and the implications of ALL of these when it comes to structuring our societies. Keep your eyes open for it, it will be out soon! Thanks for everyone on Patreon and thanks for checking out the website at philosophizethis.org\n\n\n\nBut as always, thank you for listening. Talk to you next time. `}"}, "typeVersion": 2}, {"id": "70b657d9-5a8f-4a9e-8d4e-18940ba35683", "name": "Workflow Input to JSON Document", "type": "@n8n/n8n-nodes-langchain.documentJsonInputLoader", "position": [80, 780], "parameters": {"pointers": "/transcript"}, "typeVersion": 1}, {"id": "b05c5e26-5a1d-4717-868d-3b05783a0d24", "name": "Recursive Character Text Splitter", "type": "@n8n/n8n-nodes-langchain.textSplitterRecursiveCharacterTextSplitter", "position": [220, 900], "parameters": {"chunkSize": 6000, "chunkOverlap": 1000}, "typeVersion": 1}, {"id": "1b78b734-167e-4eb6-ba2e-19bbecd3a75e", "name": "Sticky Note", "type": "n8n-nodes-base.stickyNote", "position": [-100, 460], "parameters": {"width": 455.5091388435286, "height": 577.6862533692728, "content": "## Chunk the transcript into several parts, and refine-summarize it "}, "typeVersion": 1}, {"id": "86ac5fad-307f-4f95-ad1c-1ba00a29e807", "name": "Topics", "type": "n8n-nodes-base.itemLists", "position": [920, 580], "parameters": {"options": {}, "fieldToSplitOut": "topics"}, "typeVersion": 3}, {"id": "078890f1-d840-479e-b702-ce6f9e3b4852", "name": "Summarize Transcript", "type": "@n8n/n8n-nodes-langchain.chainSummarization", "position": [-40, 580], "parameters": {"type": "refine"}, "typeVersion": 1}, {"id": "4a583efe-ff24-4bc1-b3e7-89651e3147c7", "name": "GPT 4 - Extract", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [560, 755], "parameters": {"model": "gpt-4", "options": {"temperature": 0.8}}, "credentials": {"openAiApi": {"id": "wJtZwsVKW5v6R2Iy", "name": "OpenAi account 2"}}, "typeVersion": 1}, {"id": "b658f2c1-3f60-4ff0-8b7b-2b2ebe1b1f5e", "name": "Wikipedia1", "type": "@n8n/n8n-nodes-langchain.toolWikipedia", "position": [1380, 900], "parameters": {}, "typeVersion": 1}, {"id": "5bffc33d-bb52-4432-bb82-ce2005be3c06", "name": "Sticky Note1", "type": "n8n-nodes-base.stickyNote", "position": [480, 460], "parameters": {"width": 615.8516011477997, "height": 443.66706715913415, "content": "## Generate Questions and Topics from the summary and make sure the response follows required schema."}, "typeVersion": 1}, {"id": "53626ccb-451d-4ed8-8512-2daa74baf556", "name": "Send Digest", "type": "n8n-nodes-base.gmail", "position": [1900, 580], "parameters": {"sendTo": "oleg@n8n.io", "message": "=Greetings \ud83d\udc4b,\nHope you're doing well! Here's your digest for this week's episode of Philoshopy This! \n\n<h2>\ud83c\udf99 Episode Summary</h2>\n{{ $json.summary }}\n\n<h2>\ud83d\udca1 Topics Discussed</h2>\n{{ $json.topics.join('\\n') }}\n\n<h2>\u2753 Questions to Ponder</h2>\n{{ $json.questions.join('\\n') }}", "options": {}, "subject": "Podcast Digest", "emailType": "html"}, "credentials": {"gmailOAuth2": {"id": "kLFedNEM8Zwkergv", "name": "Gmail account"}}, "typeVersion": 2}, {"id": "751ffffe-190e-4fc6-93ff-0021c98f225d", "name": "Sticky Note3", "type": "n8n-nodes-base.stickyNote", "position": [1220, 460], "parameters": {"width": 359.3751741576458, "height": 567.5105121293799, "content": "## Ask Agent to research and explain each topic using Wikipedia\n\n"}, "typeVersion": 1}, {"id": "0165bec2-f390-44a8-8435-ba718cf18465", "name": "Format topic text & title", "type": "n8n-nodes-base.code", "position": [1740, 580], "parameters": {"jsCode": "const inputItems = $input.all();\nconst topics = [];\nconst questions = [];\nconst summary = $('Summarize Transcript').item.json.response.output_text;\n// Format Topics\nfor (const [index, topic] of inputItems.entries()) {\n const title = $('Topics').all()[index].json.topic\n\n topics.push(`\n <h3>${title}</h3>\n <p>${topic.json.output}</p>`.trim()\n )\n}\n\n// Format Questions\nfor (const question of $('Extract Topics & Questions').item.json.questions) {\n questions.push(`\n <h3>${question.question}</h3>\n <p>${question.why}</p>`.trim()\n )\n}\n\nreturn { topics, summary, questions }"}, "typeVersion": 2}, {"id": "497c5a49-e4cb-4c1f-98c2-49088ced2e72", "name": "Structured Output Parser", "type": "@n8n/n8n-nodes-langchain.outputParserStructured", "position": [720, 755], "parameters": {"jsonSchema": "{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"title\": \"Generated schema for Root\",\n \"type\": \"object\",\n \"properties\": {\n \"questions\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"question\": {\n \"type\": \"string\"\n },\n \"why\": {\n \"type\": \"string\",\n \"description\": \"Explanation of why this question is relevant for the context\"\n }\n },\n \"required\": [\n \"question\",\n \"why\"\n ]\n }\n },\n \"topics\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"topic\": {\n \"type\": \"string\"\n },\n \"why\": {\n \"type\": \"string\",\n \"description\": \"A few sentences explanation of why this topic is relevant for the context\"\n }\n },\n \"required\": [\n \"topic\",\n \"why\"\n ]\n }\n }\n },\n \"required\": [\n \"questions\",\n \"topics\"\n ]\n}"}, "typeVersion": 1}, {"id": "6b42d3bf-912e-4df3-91c6-2eba06dbe27c", "name": "Extract Topics & Questions", "type": "@n8n/n8n-nodes-langchain.chainLlm", "position": [560, 580], "parameters": {"prompt": "=Come up with a list of questions and further topics to explore that are relevant for the context. Make sure questions are relevant to the topics but not verbatim. Think hard about what the appropriate questions should be and how it relates to the summarization.\nPodcast Summary: {{ $json.response.output_text }}"}, "typeVersion": 1}, {"id": "701c2977-0c17-4fa0-ad4b-afbbbaa6f044", "name": "GPT3.5 - Research", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [1280, 780], "parameters": {"model": "gpt-3.5-turbo-16k", "options": {"temperature": 0.8}}, "credentials": {"openAiApi": {"id": "wJtZwsVKW5v6R2Iy", "name": "OpenAi account 2"}}, "typeVersion": 1}, {"id": "0da11c5a-ffd3-47a0-a082-9eaf9d18fc10", "name": "GPT3.5 - Summarize", "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi", "position": [-60, 780], "parameters": {"model": "gpt-3.5-turbo-16k", "options": {"temperature": 0}}, "credentials": {"openAiApi": {"id": "wJtZwsVKW5v6R2Iy", "name": "OpenAi account 2"}}, "typeVersion": 1}, {"id": "bbb29b9f-f765-4f0c-926f-1b34a6eb999c", "name": "Sticky Note4", "type": "n8n-nodes-base.stickyNote", "position": [1700, 460], "parameters": {"width": 371.7094059635757, "height": 330.6932614555254, "content": "## Format as HTML and send via Gmail"}, "typeVersion": 1}, {"id": "cfdde2b8-5fb7-4eb6-b821-e5d0511bcabd", "name": "Research & Explain Topics", "type": "@n8n/n8n-nodes-langchain.agent", "position": [1260, 580], "parameters": {"text": "=Topic: {{ $json.topic }}\n\nContext: {{ $('Summarize Transcript').item.json.response.output_text }}\n", "agent": "openAiFunctionsAgent"}, "typeVersion": 1}]
{"Topics": {"main": [[{"node": "Research & Explain Topics", "type": "main", "index": 0}]]}, "Wikipedia1": {"ai_tool": [[{"node": "Research & Explain Topics", "type": "ai_tool", "index": 0}]]}, "GPT 4 - Extract": {"ai_languageModel": [[{"node": "Extract Topics & Questions", "type": "ai_languageModel", "index": 0}]]}, "GPT3.5 - Research": {"ai_languageModel": [[{"node": "Research & Explain Topics", "type": "ai_languageModel", "index": 0}]]}, "GPT3.5 - Summarize": {"ai_languageModel": [[{"node": "Summarize Transcript", "type": "ai_languageModel", "index": 0}]]}, "Summarize Transcript": {"main": [[{"node": "Extract Topics & Questions", "type": "main", "index": 0}]]}, "Structured Output Parser": {"ai_outputParser": [[{"node": "Extract Topics & Questions", "type": "ai_outputParser", "index": 0}]]}, "Format topic text & title": {"main": [[{"node": "Send Digest", "type": "main", "index": 0}]]}, "Research & Explain Topics": {"main": [[{"node": "Format topic text & title", "type": "main", "index": 0}]]}, "Extract Topics & Questions": {"main": [[{"node": "Topics", "type": "main", "index": 0}]]}, "Podcast Episode Transcript": {"main": [[{"node": "Summarize Transcript", "type": "main", "index": 0}]]}, "Workflow Input to JSON Document": {"ai_document": [[{"node": "Summarize Transcript", "type": "ai_document", "index": 0}]]}, "When clicking \"Execute Workflow\"": {"main": [[{"node": "Podcast Episode Transcript", "type": "main", "index": 0}]]}, "Recursive Character Text Splitter": {"ai_textSplitter": [[{"node": "Workflow Input to JSON Document", "type": "ai_textSplitter", "index": 0}]]}}
Automate testimonials in Strapi with n8n
[{"name": "Simplify Result", "type": "n8n-nodes-base.set", "position": [680, 100], "parameters": {"values": {"string": [{"name": "Content", "value": "={{$json[\"full_text\"].replace(/(?:https?|ftp):\\/\\/[\\n\\S]+/g, '')}}"}, {"name": "Author", "value": "={{$json[\"user\"][\"name\"]}} (@{{$json[\"user\"][\"screen_name\"]}})"}, {"name": "Created", "value": "={{new Date($json[\"created_at\"]).toISOString()}}"}, {"name": "URL", "value": "=https://twitter.com/{{$json[\"user\"][\"screen_name\"]}}/status/{{$json[\"id_str\"]}}"}]}, "options": {}, "keepOnlySet": true}, "typeVersion": 1}, {"name": "Store in Strapi", "type": "n8n-nodes-base.strapi", "position": [1780, 100], "parameters": {"columns": "Content,Author,Created,URL", "operation": "create", "contentType": "posts"}, "credentials": {"strapiApi": {"id": "136", "name": "Strapi Demo"}}, "typeVersion": 1}, {"name": "Every 30 Minutes", "type": "n8n-nodes-base.interval", "position": [240, 100], "parameters": {"unit": "minutes", "interval": 30}, "typeVersion": 1}, {"name": "Is Retweet or Old?", "type": "n8n-nodes-base.if", "position": [900, 100], "parameters": {"conditions": {"string": [{"value1": "={{$json[\"Content\"]}}", "value2": "RT @", "operation": "startsWith"}], "dateTime": [{"value1": "={{$json[\"Created\"]}}", "value2": "={{new Date(new Date().getTime() - 30 * 60 * 1000)}}", "operation": "before"}]}, "combineOperation": "any"}, "typeVersion": 1}, {"name": "Search Tweets", "type": "n8n-nodes-base.twitter", "position": [460, 100], "parameters": {"operation": "search", "searchText": "(strapi OR n8n.io) AND lang:en", "additionalFields": {"tweetMode": "extended", "resultType": "recent"}}, "credentials": {"twitterOAuth1Api": {"id": "15", "name": "@MutedJam"}}, "typeVersion": 1}, {"name": "Webhook", "type": "n8n-nodes-base.webhook", "position": [240, -120], "webhookId": "6f833370-9068-44ef-8e56-4ceb563a851e", "parameters": {"path": "6f833370-9068-44ef-8e56-4ceb563a851e", "options": {}, "httpMethod": "POST"}, "typeVersion": 1}, {"name": "Simplify Webhook Result", "type": "n8n-nodes-base.set", "position": [460, -120], "parameters": {"values": {"string": [{"name": "Content", "value": "={{$json[\"body\"][\"data\"][\"fields\"][1][\"value\"]}}"}, {"name": "Author", "value": "={{$json[\"body\"][\"data\"][\"fields\"][0][\"value\"]}}"}, {"name": "Created", "value": "={{new Date().toISOString()}}"}, {"name": "URL"}]}, "options": {}, "keepOnlySet": true}, "typeVersion": 1}, {"name": "Analyze Form Submission", "type": "n8n-nodes-base.googleCloudNaturalLanguage", "position": [680, -220], "parameters": {"content": "={{$json[\"Content\"]}}", "options": {}}, "credentials": {"googleCloudNaturalLanguageOAuth2Api": {"id": "138", "name": "Google Cloud Natural Language account"}}, "typeVersion": 1}, {"name": "Analyze Tweet", "type": "n8n-nodes-base.googleCloudNaturalLanguage", "position": [1120, 200], "parameters": {"content": "={{$json[\"Content\"]}}", "options": {}}, "credentials": {"googleCloudNaturalLanguageOAuth2Api": {"id": "138", "name": "Google Cloud Natural Language account"}}, "typeVersion": 1}, {"name": "Merge Form Sentiment with Source", "type": "n8n-nodes-base.merge", "position": [900, -120], "parameters": {"mode": "mergeByIndex"}, "typeVersion": 1}, {"name": "Merge Tweet Sentiment with Source", "type": "n8n-nodes-base.merge", "position": [1340, 100], "parameters": {"mode": "mergeByIndex"}, "typeVersion": 1}, {"name": "Positive Form Sentiment?", "type": "n8n-nodes-base.if", "position": [1120, -120], "parameters": {"conditions": {"number": [{"value1": "={{$json[\"documentSentiment\"][\"score\"]}}", "value2": 0.4, "operation": "larger"}]}}, "typeVersion": 1}, {"name": "Store Form Submission in Strapi", "type": "n8n-nodes-base.strapi", "position": [1340, -120], "parameters": {"columns": "Content,Author,Created,URL", "operation": "create", "contentType": "posts"}, "credentials": {"strapiApi": {"id": "136", "name": "Strapi Demo"}}, "typeVersion": 1}, {"name": "Positive Tweet Sentiment?", "type": "n8n-nodes-base.if", "position": [1560, 100], "parameters": {"conditions": {"number": [{"value1": "={{$json[\"documentSentiment\"][\"score\"]}}", "value2": 0.3, "operation": "larger"}]}}, "typeVersion": 1}]
{"Webhook": {"main": [[{"node": "Simplify Webhook Result", "type": "main", "index": 0}]]}, "Analyze Tweet": {"main": [[{"node": "Merge Tweet Sentiment with Source", "type": "main", "index": 1}]]}, "Search Tweets": {"main": [[{"node": "Simplify Result", "type": "main", "index": 0}]]}, "Simplify Result": {"main": [[{"node": "Is Retweet or Old?", "type": "main", "index": 0}]]}, "Every 30 Minutes": {"main": [[{"node": "Search Tweets", "type": "main", "index": 0}]]}, "Is Retweet or Old?": {"main": [null, [{"node": "Analyze Tweet", "type": "main", "index": 0}, {"node": "Merge Tweet Sentiment with Source", "type": "main", "index": 0}]]}, "Analyze Form Submission": {"main": [[{"node": "Merge Form Sentiment with Source", "type": "main", "index": 0}]]}, "Simplify Webhook Result": {"main": [[{"node": "Analyze Form Submission", "type": "main", "index": 0}, {"node": "Merge Form Sentiment with Source", "type": "main", "index": 1}]]}, "Positive Form Sentiment?": {"main": [[{"node": "Store Form Submission in Strapi", "type": "main", "index": 0}]]}, "Positive Tweet Sentiment?": {"main": [[{"node": "Store in Strapi", "type": "main", "index": 0}]]}, "Merge Form Sentiment with Source": {"main": [[{"node": "Positive Form Sentiment?", "type": "main", "index": 0}]]}, "Merge Tweet Sentiment with Source": {"main": [[{"node": "Positive Tweet Sentiment?", "type": "main", "index": 0}]]}}