Spaces:
Sleeping
Sleeping
File size: 1,127 Bytes
720c6ed | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | {
"name": "Auto-Sync Connector Docs to Dedicated Supabase DB",
"nodes": [
{
"parameters": {
"rule": { "interval": [{ "field": "days" }] }
},
"name": "Daily Trigger",
"type": "n8n-nodes-base.scheduleTrigger",
"typeVersion": 1,
"position": [250, 300]
},
{
"parameters": {
"url": "={{$json.connectorDocsUrl}}"
},
"name": "Scrape Official Docs",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4.1,
"position": [450, 300]
},
{
"parameters": {
"tableName": "connector_knowledge_vectors",
"operation": "upsert"
},
"name": "Supabase Vector Store (Dedicated DB)",
"type": "@n8n/n8n-nodes-langchain.vectorStoreSupabase",
"typeVersion": 1,
"position": [650, 300]
}
],
"connections": {
"Daily Trigger": { "main": [ [ { "node": "Scrape Official Docs", "type": "main", "index": 0 } ] ] },
"Scrape Official Docs": { "main": [ [ { "node": "Supabase Vector Store (Dedicated DB)", "type": "main", "index": 0 } ] ] }
},
"active": false,
"settings": {}
}
|