The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"name": "Wind Farm Maintenance Scheduler",
"nodes": [
{
"parameters": {
"content": "## Wind Farm Maintenance Scheduler",
"height": 520,
"width": 1100
},
"id": "9c8f8a11-cc71-43f1-a71b-db88184ff09c",
"name": "Sticky",
"type": "n8n-nodes-base.stickyNote",
"typeVersion": 1,
"position": [
-500,
-250
]
},
{
"parameters": {
"httpMethod": "POST",
"path": "wind_farm_maintenance_scheduler"
},
"id": "e2a690b3-9bf8-4e9c-82aa-ee390f53f58d",
"name": "Webhook",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [
-300,
0
]
},
{
"parameters": {
"chunkSize": 400,
"chunkOverlap": 40
},
"id": "9c9b29ed-2898-4035-b7e1-51e6772de2a3",
"name": "Splitter",
"type": "@n8n/n8n-nodes-langchain.textSplitterCharacterTextSplitter",
"typeVersion": 1,
"position": [
-100,
0
]
},
{
"parameters": {
"model": "default"
},
"id": "1820f73b-76d4-4597-9ee9-7188a2c45ce7",
"name": "Embeddings",
"type": "@n8n/n8n-nodes-langchain.embeddingsHuggingFace",
"typeVersion": 1,
"position": [
100,
0
],
"credentials": {
"huggingFaceApi": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"mode": "insert",
"indexName": "wind_farm_maintenance_scheduler"
},
"id": "579a5cc0-4687-4d99-b379-9fd6085db105",
"name": "Insert",
"type": "@n8n/n8n-nodes-langchain.vectorStoreWeaviate",
"typeVersion": 1,
"position": [
300,
0
],
"credentials": {
"weaviateApi": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"indexName": "wind_farm_maintenance_scheduler"
},
"id": "1100222d-8cb0-402a-a726-b6a77b6bdbd8",
"name": "Query",
"type": "@n8n/n8n-nodes-langchain.vectorStoreWeaviate",
"typeVersion": 1,
"position": [
300,
-180
],
"credentials": {
"weaviateApi": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"name": "Weaviate"
},
"id": "d256077f-23e0-4b0a-a15d-c37b724380e4",
"name": "Tool",
"type": "@n8n/n8n-nodes-langchain.toolVectorStore",
"typeVersion": 1,
"position": [
480,
-180
]
},
{
"parameters": {},
"id": "59b38520-1e17-48a4-8a07-d829d76594ef",
"name": "Memory",
"type": "@n8n/n8n-nodes-langchain.memoryBufferWindow",
"typeVersion": 1.3,
"position": [
480,
-40
]
},
{
"parameters": {},
"id": "78e9d735-34a8-4562-9173-75df6f9d105d",
"name": "Chat",
"type": "@n8n/n8n-nodes-langchain.lmChatOpenAi",
"typeVersion": 1,
"position": [
480,
-340
],
"credentials": {
"openAiApi": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"promptType": "define",
"text": "={{ $json }}"
},
"id": "db27c3e8-2164-4105-8900-03356d4bada3",
"name": "Agent",
"type": "@n8n/n8n-nodes-langchain.agent",
"typeVersion": 1,
"position": [
760,
-40
]
},
{
"parameters": {
"operation": "append",
"documentId": "SHEET_ID",
"sheetName": "Log"
},
"id": "d8018a30-fafb-4134-9c5f-fa3dcbe84fab",
"name": "Sheet",
"type": "n8n-nodes-base.googleSheets",
"typeVersion": 4,
"position": [
960,
-40
],
"credentials": {
"googleSheetsOAuth2Api": {
"name": "<your credential>"
}
}
}
],
"connections": {
"Webhook": {
"main": [
[
{
"node": "Splitter",
"type": "main",
"index": 0
},
{
"node": "Memory",
"type": "main",
"index": 0
}
]
]
},
"Splitter": {
"main": [
[
{
"node": "Embeddings",
"type": "main",
"index": 0
}
]
],
"ai_textSplitter": [
[
{
"node": "Insert",
"type": "ai_textSplitter",
"index": 0
}
]
]
},
"Embeddings": {
"ai_embedding": [
[
{
"node": "Insert",
"type": "ai_embedding",
"index": 0
},
{
"node": "Query",
"type": "ai_embedding",
"index": 0
}
]
]
},
"Insert": {
"ai_document": [
[]
]
},
"Query": {
"ai_vectorStore": [
[
{
"node": "Tool",
"type": "ai_vectorStore",
"index": 0
}
]
]
},
"Tool": {
"ai_tool": [
[
{
"node": "Agent",
"type": "ai_tool",
"index": 0
}
]
]
},
"Memory": {
"ai_memory": [
[
{
"node": "Agent",
"type": "ai_memory",
"index": 0
}
]
]
},
"Chat": {
"ai_languageModel": [
[
{
"node": "Agent",
"type": "ai_languageModel",
"index": 0
}
]
]
},
"Agent": {
"main": [
[
{
"node": "Sheet",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1"
}
}
Credentials you'll need
Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.
googleSheetsOAuth2ApihuggingFaceApiopenAiApiweaviateApi
About this workflow
Wind Farm Maintenance Scheduler. Uses stickyNote, textSplitterCharacterTextSplitter, embeddingsHuggingFace, vectorStoreWeaviate. Webhook trigger; 11 nodes.
Source: https://github.com/Zie619/n8n-workflows — original creator credit. Request a take-down →