8
n8n 中文网amn8n.com

Reddit助手

高级

这是一个自动化工作流,包含 31 个节点。主要使用 Set, Code, Wait, Merge, Filter 等节点。 使用F5Bot提醒和GPT-5个性化评论自动化Reddit回复

前置要求
  • Google 账号和 Gmail API 凭证
  • Google Sheets API 凭证
  • OpenAI API Key

分类

-
工作流预览
可视化展示节点连接关系,支持缩放和平移
导出工作流
复制以下 JSON 配置到 n8n 导入,即可使用此工作流
{
  "id": "GrveDEE7fH9mRpAI",
  "meta": {
    "instanceId": "52254486b159b349334953c1738da94e90477c7604aa8db2062d11afc0120739",
    "templateCredsSetupCompleted": true
  },
  "name": "Reddit助手",
  "tags": [
    {
      "id": "ieqEVthNwLDfYSc1",
      "name": "Emp0",
      "createdAt": "2025-05-06T11:04:25.307Z",
      "updatedAt": "2025-05-06T11:04:25.307Z"
    }
  ],
  "nodes": [
    {
      "id": "29031df0-dd8c-4f96-bf92-39f757d73099",
      "name": "Gmail 触发器",
      "type": "n8n-nodes-base.gmailTrigger",
      "position": [
        -2160,
        576
      ],
      "parameters": {
        "simple": false,
        "filters": {
          "sender": "admin@f5bot.com"
        },
        "options": {},
        "pollTimes": {
          "item": [
            {
              "mode": "everyMinute"
            }
          ]
        }
      },
      "credentials": {
        "gmailOAuth2": {
          "id": "2tse7fIyCdDwG3Zm",
          "name": "Gmail"
        }
      },
      "typeVersion": 1.3
    },
    {
      "id": "f7237452-ff16-4c73-8aeb-5efacabb8ba8",
      "name": "编辑字段",
      "type": "n8n-nodes-base.set",
      "position": [
        -1776,
        576
      ],
      "parameters": {
        "options": {},
        "assignments": {
          "assignments": [
            {
              "id": "f58cb366-4c57-459e-b04c-5265de98f6fd",
              "name": "Text",
              "type": "string",
              "value": "={{ $json.text }}"
            }
          ]
        }
      },
      "typeVersion": 3.4
    },
    {
      "id": "3d214040-c455-4190-a2b7-68162c279ded",
      "name": "获取帖子",
      "type": "n8n-nodes-base.reddit",
      "position": [
        -1200,
        480
      ],
      "parameters": {
        "postId": "={{ $json.postId }}",
        "operation": "get",
        "subreddit": "={{ $json.subreddit }}"
      },
      "credentials": {
        "redditOAuth2Api": {
          "id": "rIyaOqpm6SelzXHv",
          "name": "Reddit account"
        }
      },
      "typeVersion": 1
    },
    {
      "id": "4986c00a-0ad2-4372-b12d-2969211130c0",
      "name": "合并",
      "type": "n8n-nodes-base.merge",
      "position": [
        -720,
        336
      ],
      "parameters": {
        "mode": "combine",
        "options": {},
        "combineBy": "combineByPosition"
      },
      "typeVersion": 3.2
    },
    {
      "id": "0f224f38-0887-400b-a395-787c6a119f75",
      "name": "JavaScript1中的代码",
      "type": "n8n-nodes-base.code",
      "position": [
        -1408,
        576
      ],
      "parameters": {
        "jsCode": "let posts = [];\nconst input = JSON.stringify($input.first().json.urls);\n\n// Match all encoded Reddit URLs from F5Bot links\nconst regex = /https:\\/\\/f5bot\\.com\\/url\\?u=([^&\\s>]+)/g;\nlet match;\n\nwhile ((match = regex.exec(input)) !== null) {\n  try {\n    const decoded = decodeURIComponent(match[1]);\n    if (decoded.includes(\"reddit.com/r/\")) {\n      const redditMatch = decoded.match(/reddit\\.com\\/r\\/([^/]+)\\/comments\\/([^/]+)/);\n      if (redditMatch) {\n        const subreddit = redditMatch[1];\n        const postId = redditMatch[2];\n        posts.push({ subreddit, postId, url: decoded });\n      }\n    }\n  } catch (e) {}\n}\n\n// remove duplicates\nconst uniquePosts = [];\nconst seen = new Set();\nfor (const p of posts) {\n  if (!seen.has(p.url)) {\n    seen.add(p.url);\n    uniquePosts.push(p);\n  }\n}\n\nreturn { \n  json: uniquePosts[0] \n};\n"
      },
      "typeVersion": 2
    },
    {
      "id": "52b466d0-c09f-48e1-b8ba-7284cdece760",
      "name": "筛选自己的帖子",
      "type": "n8n-nodes-base.filter",
      "position": [
        -1056,
        480
      ],
      "parameters": {
        "options": {},
        "conditions": {
          "options": {
            "version": 2,
            "leftValue": "",
            "caseSensitive": true,
            "typeValidation": "strict"
          },
          "combinator": "and",
          "conditions": [
            {
              "id": "33942da9-064a-4bdb-9848-871cdc3c7e75",
              "operator": {
                "type": "string",
                "operation": "notEquals"
              },
              "leftValue": "=Altruistic-Brother37",
              "rightValue": "={{ $json.author }}"
            }
          ]
        }
      },
      "typeVersion": 2.2
    },
    {
      "id": "df891fe9-b3f3-43d2-a462-ada80c72640b",
      "name": "AI Agent",
      "type": "@n8n/n8n-nodes-langchain.agent",
      "position": [
        -400,
        336
      ],
      "parameters": {
        "text": "=Title: {{ $json.Title }}\nText: {{ $json.Text }}\nsubreddit_rules: {{ JSON.stringify($json.subreddit_rules) }}\nsubreddit: {{ JSON.stringify($json.subreddit_about) }}\nnotes: {{ $json.notes || null }}\n",
        "options": {
          "systemMessage": "=Act as a skilled Reddit indian marketing expert who writes authentic, first-person comments that feel human and community-friendly while tactically promoting a product when rules allow.\n\nTask\nCraft a short Reddit comment reply (max 255 characters) that fits naturally in conversation threads, follows subreddit rules, and—if permitted—casually promotes one product with its link.\nIf promo isn’t allowed, reply with relatable insight or story instead. If links isnt allowed, no need to use links but you must always get a list of products from the Google Sheets Tool\n\nContext\nYou’ll receive:\n- Post_Title and Post_Text → the Reddit post content\n- rules_summary → subreddit rules\n- Access to a Google Sheets Tool containing product, service, content names and URLs of things i make\n\nReasoning\n- Read the post title + text to understand tone and user intent.\n- Check rules_summary for promo policy.\n- If self-promo allowed → pick one product name + link via the Google Sheets Tool.\n- If not allowed → skip product mention and write useful, personal comment.\n- Write in first person; sound casual, experienced, and fast-typing (e.g., “u,” “ur,” “idk”).\n- Avoid buzzwords, fluff, or fake enthusiasm—keep it natural, human, and valuable.\n- Make sure tone matches a senior direct-marketing pro chatting informally.\n\nOutput Format\n- Return only the Reddit comment text (no markdown, no explanation).\n- Keep under 255 characters.\n- Use short, quick sentences.\n- First-person only.\n\nStop Conditions\n✅ Output stops once one valid, rule-compliant Reddit comment is produced.\n✅ Skip promotion if forbidden.\n✅ No external text, tags, or formatting beyond the comment itself.",
          "returnIntermediateSteps": true
        },
        "promptType": "define",
        "hasOutputParser": true
      },
      "typeVersion": 2.2
    },
    {
      "id": "37241eeb-fa26-4dd9-87e9-05624d148bf8",
      "name": "AI输入",
      "type": "n8n-nodes-base.set",
      "position": [
        -912,
        480
      ],
      "parameters": {
        "options": {},
        "assignments": {
          "assignments": [
            {
              "id": "1083ab50-5f1c-4f6e-8695-f71578c072c4",
              "name": "Title",
              "type": "string",
              "value": "={{ $json.title }}"
            },
            {
              "id": "84d5cea9-20cd-4f31-acbd-90a7cd9f598e",
              "name": "Text",
              "type": "string",
              "value": "={{ $json.selftext }}"
            }
          ]
        }
      },
      "typeVersion": 3.4
    },
    {
      "id": "b94bfefa-b2af-4e6a-a011-4cc13887dd8f",
      "name": "OpenAI 聊天模型",
      "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi",
      "position": [
        -464,
        608
      ],
      "parameters": {
        "model": {
          "__rl": true,
          "mode": "list",
          "value": "gpt-5-nano",
          "cachedResultName": "gpt-5-nano"
        },
        "options": {}
      },
      "credentials": {
        "openAiApi": {
          "id": "0h6ODbQuIzgmJQq1",
          "name": "OpenAi account 3"
        }
      },
      "typeVersion": 1.2
    },
    {
      "id": "806e4ba5-0de3-46cc-833d-48f9007beea7",
      "name": "在帖子中创建评论",
      "type": "n8n-nodes-base.reddit",
      "position": [
        144,
        336
      ],
      "parameters": {
        "postId": "={{ $('Get a post').item.json.id }}",
        "resource": "postComment",
        "commentText": "={{ $json.output.comment }}"
      },
      "credentials": {
        "redditOAuth2Api": {
          "id": "rIyaOqpm6SelzXHv",
          "name": "Reddit account"
        }
      },
      "typeVersion": 1
    },
    {
      "id": "11daf05f-5194-4c93-ab5a-f19f15c8c666",
      "name": "结构化输出解析器",
      "type": "@n8n/n8n-nodes-langchain.outputParserStructured",
      "position": [
        -128,
        608
      ],
      "parameters": {
        "schemaType": "manual",
        "inputSchema": "{\n\t\"type\": \"object\",\n\t\"properties\": {\n\t\t\"comment\": {\n\t\t\t\"type\": \"string\"\n        }\n\t\t\n\t}\n}"
      },
      "typeVersion": 1.3
    },
    {
      "id": "92689bbf-300e-48be-b924-fad10f6efea7",
      "name": "编辑字段1",
      "type": "n8n-nodes-base.set",
      "position": [
        -912,
        320
      ],
      "parameters": {
        "options": {},
        "assignments": {
          "assignments": [
            {
              "id": "82d428d7-4bd9-4ed8-bcdd-8481c9c2d957",
              "name": "subreddit_about",
              "type": "object",
              "value": "={{ $('Subreddit about').first().json }}"
            },
            {
              "id": "32b21d89-2cec-438f-a4b6-dbf8e5fc4f4e",
              "name": "subreddit_rules",
              "type": "object",
              "value": "={{ $json }}"
            }
          ]
        }
      },
      "typeVersion": 3.4
    },
    {
      "id": "bb820e45-6899-45a4-b8bf-07e4d638ba2e",
      "name": "当获取数据集行时",
      "type": "n8n-nodes-base.evaluationTrigger",
      "position": [
        -2128,
        1600
      ],
      "parameters": {
        "source": "googleSheets",
        "sheetName": {
          "__rl": true,
          "mode": "list",
          "value": 1627839178,
          "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1GYCExj_vkpQi_xtSJDv0EGsKJoPXo8GFf7JerKZpVFg/edit#gid=1627839178",
          "cachedResultName": "reddit evaluations"
        },
        "documentId": {
          "__rl": true,
          "mode": "list",
          "value": "1GYCExj_vkpQi_xtSJDv0EGsKJoPXo8GFf7JerKZpVFg",
          "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1GYCExj_vkpQi_xtSJDv0EGsKJoPXo8GFf7JerKZpVFg/edit?usp=drivesdk",
          "cachedResultName": "Blog Automation"
        }
      },
      "credentials": {
        "googleSheetsOAuth2Api": {
          "id": "dNmdYyKDCj9rTeSw",
          "name": "Gsheet"
        }
      },
      "typeVersion": 4.7
    },
    {
      "id": "bea43dd9-92b4-4811-944d-de8f76a83a90",
      "name": "获取 Google 表格",
      "type": "n8n-nodes-base.googleSheetsTool",
      "position": [
        -304,
        608
      ],
      "parameters": {
        "options": {},
        "sheetName": {
          "__rl": true,
          "mode": "list",
          "value": 814034323,
          "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1DbPO7U68-YlOHhb8fIlGu2ImD_N-cm0E-8pwc7qnAo4/edit#gid=814034323",
          "cachedResultName": "promo"
        },
        "documentId": {
          "__rl": true,
          "mode": "list",
          "value": "1DbPO7U68-YlOHhb8fIlGu2ImD_N-cm0E-8pwc7qnAo4",
          "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1DbPO7U68-YlOHhb8fIlGu2ImD_N-cm0E-8pwc7qnAo4/edit?usp=drivesdk",
          "cachedResultName": "Reddit"
        }
      },
      "credentials": {
        "googleSheetsOAuth2Api": {
          "id": "dNmdYyKDCj9rTeSw",
          "name": "Gsheet"
        }
      },
      "typeVersion": 4.7
    },
    {
      "id": "ccfc1730-f266-45cf-ab70-f786c361e96f",
      "name": "评估文本格式",
      "type": "n8n-nodes-base.evaluation",
      "position": [
        304,
        1280
      ],
      "parameters": {
        "metric": "categorization",
        "options": {
          "metricName": "contains dash"
        },
        "operation": "setMetrics",
        "actualAnswer": "={{ $('AI Agent').first().json.output.comment.includes(\"—\") }}",
        "expectedAnswer": "false"
      },
      "typeVersion": 4.8
    },
    {
      "id": "b033365a-04ce-4102-9a13-8f9607ff95fd",
      "name": "评估文本中的链接",
      "type": "n8n-nodes-base.evaluation",
      "position": [
        304,
        1456
      ],
      "parameters": {
        "metric": "categorization",
        "options": {
          "metricName": "contains link"
        },
        "operation": "setMetrics",
        "actualAnswer": "={{ $('AI Agent').first().json.output.comment.includes(\"https://\") }}",
        "expectedAnswer": "true"
      },
      "typeVersion": 4.8
    },
    {
      "id": "a8a89f02-6394-4b55-adf2-d1adf04bcb70",
      "name": "评估电子表格工具",
      "type": "n8n-nodes-base.evaluation",
      "position": [
        304,
        1632
      ],
      "parameters": {
        "metric": "toolsUsed",
        "options": {
          "metricName": "Tools Used"
        },
        "operation": "setMetrics",
        "expectedTools": "Get Google Sheet",
        "intermediateSteps": "={{ $('AI Agent').first().json.intermediateSteps }}"
      },
      "typeVersion": 4.8
    },
    {
      "id": "1fd1a10c-19e1-4fd2-9ffc-bb9a3a2849e2",
      "name": "合并评估结果",
      "type": "n8n-nodes-base.merge",
      "position": [
        512,
        1296
      ],
      "parameters": {
        "mode": "combine",
        "options": {},
        "combineBy": "combineByPosition",
        "numberInputs": 3
      },
      "typeVersion": 3.2
    },
    {
      "id": "90eb0d88-d9f4-4f7a-8c24-ce73284eebc6",
      "name": "子版块简介",
      "type": "n8n-nodes-base.reddit",
      "position": [
        -1200,
        320
      ],
      "parameters": {
        "content": "rules",
        "resource": "subreddit",
        "subreddit": "={{ $json.subreddit }}"
      },
      "typeVersion": 1,
      "alwaysOutputData": true
    },
    {
      "id": "68fdc148-1a92-4c55-831d-2985517c66ea",
      "name": "子版块规则",
      "type": "n8n-nodes-base.reddit",
      "position": [
        -1056,
        320
      ],
      "parameters": {
        "content": "rules",
        "resource": "subreddit",
        "subreddit": "={{ $('Code in JavaScript1').item.json.subreddit }}"
      },
      "typeVersion": 1,
      "alwaysOutputData": true
    },
    {
      "id": "640958ad-76d6-4c32-941f-28e37461d0f8",
      "name": "设置评估输出",
      "type": "n8n-nodes-base.evaluation",
      "position": [
        688,
        1312
      ],
      "parameters": {
        "source": "googleSheets",
        "outputs": {
          "values": [
            {
              "outputName": "output",
              "outputValue": "={{ $('AI Agent').first().json.output.comment }}"
            },
            {
              "outputName": "contains link",
              "outputValue": "={{ $json[\"contains link\"] }}"
            },
            {
              "outputName": "contains dash",
              "outputValue": "={{ $json[\"contains dash\"] }}"
            },
            {
              "outputName": "Tools Used",
              "outputValue": "={{ $json[\"Tools Used\"] }}"
            }
          ]
        },
        "sheetName": {
          "__rl": true,
          "mode": "list",
          "value": 1627839178,
          "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1GYCExj_vkpQi_xtSJDv0EGsKJoPXo8GFf7JerKZpVFg/edit#gid=1627839178",
          "cachedResultName": "reddit evaluations"
        },
        "documentId": {
          "__rl": true,
          "mode": "list",
          "value": "1GYCExj_vkpQi_xtSJDv0EGsKJoPXo8GFf7JerKZpVFg",
          "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1GYCExj_vkpQi_xtSJDv0EGsKJoPXo8GFf7JerKZpVFg/edit?usp=drivesdk",
          "cachedResultName": "Blog Automation"
        }
      },
      "credentials": {
        "googleSheetsOAuth2Api": {
          "id": "dNmdYyKDCj9rTeSw",
          "name": "Gsheet"
        }
      },
      "typeVersion": 4.8
    },
    {
      "id": "e6583917-e190-4659-a9fb-7c7ab112ccd7",
      "name": "筛选子版块URL",
      "type": "n8n-nodes-base.code",
      "position": [
        -1600,
        576
      ],
      "parameters": {
        "jsCode": "const text = $json.Text || '';\nconst urls = Array.from(text.matchAll(/https?:\\/\\/[^\\n\\s]+/g)).map(match => match[0]);\nreturn [{ urls }];"
      },
      "typeVersion": 2
    },
    {
      "id": "5b2b514a-2171-4781-a921-ccd36b513848",
      "name": "延迟5分钟",
      "type": "n8n-nodes-base.wait",
      "position": [
        -1968,
        576
      ],
      "webhookId": "d9738785-7233-424a-a110-38fffe4d801e",
      "parameters": {
        "unit": "minutes"
      },
      "typeVersion": 1.1
    },
    {
      "id": "6a1b82db-9d63-41dd-b3de-022a823258dc",
      "name": "便签",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -2192,
        64
      ],
      "parameters": {
        "color": 6,
        "width": 928,
        "height": 1104,
        "content": "## 从f5机器人获取消息"
      },
      "typeVersion": 1
    },
    {
      "id": "e4f02e3a-c193-489a-9cd4-3d3eeaf171f1",
      "name": "便签1",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -2192,
        1216
      ],
      "parameters": {
        "color": 7,
        "width": 3088,
        "height": 576,
        "content": ""
      },
      "typeVersion": 1
    },
    {
      "id": "7e981083-99a7-4322-8299-48ed899529e1",
      "name": "便签3",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1248,
        64
      ],
      "parameters": {
        "color": 2,
        "width": 656,
        "height": 1104,
        "content": "## 从Reddit获取数据"
      },
      "typeVersion": 1
    },
    {
      "id": "b3eb5e4a-ea23-491f-a22b-ab768490cef0",
      "name": "便签4",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -576,
        64
      ],
      "parameters": {
        "color": 4,
        "width": 624,
        "height": 1104,
        "content": "## 获取产品和服务"
      },
      "typeVersion": 1
    },
    {
      "id": "8333f534-2635-4d63-9d33-f5242afc10c3",
      "name": "便签5",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        64,
        64
      ],
      "parameters": {
        "color": 5,
        "width": 816,
        "height": 1104,
        "content": "## 在Reddit上发布"
      },
      "typeVersion": 1
    },
    {
      "id": "84a9f086-a75e-413b-a438-421b3aa04d6d",
      "name": "便签 6",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1792,
        1248
      ],
      "parameters": {
        "color": 7,
        "width": 864,
        "height": 528,
        "content": "![评估结果](https://articles.emp0.com/wp-content/uploads/2025/10/reddit-automation-evaluations.png)"
      },
      "typeVersion": 1
    },
    {
      "id": "e4e1cc3f-50f1-458a-90be-6eac4acacd42",
      "name": "便签7",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -2192,
        1248
      ],
      "parameters": {
        "color": 7,
        "width": 400,
        "height": 528,
        "content": "## 评估"
      },
      "typeVersion": 1
    },
    {
      "id": "e68cecb2-b107-4da7-80d8-e3682f16fd5d",
      "name": "便签2",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -2176,
        192
      ],
      "parameters": {
        "color": 6,
        "width": 512,
        "height": 272,
        "content": ""
      },
      "typeVersion": 1
    }
  ],
  "active": true,
  "pinData": {},
  "settings": {
    "callerPolicy": "workflowsFromSameOwner",
    "errorWorkflow": "ernonQOxi07n6WGi",
    "availableInMCP": false,
    "executionOrder": "v1",
    "timeSavedPerExecution": 10
  },
  "versionId": "9cb89aa0-6678-4b81-a4e7-968327f7ad8e",
  "connections": {
    "Merge": {
      "main": [
        [
          {
            "node": "AI Agent",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "AI Agent": {
      "main": [
        [
          {
            "node": "Create a comment in a post",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Delay 5m": {
      "main": [
        [
          {
            "node": "Edit Fields",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Get a post": {
      "main": [
        [
          {
            "node": "Filter Own Posts",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Edit Fields": {
      "main": [
        [
          {
            "node": "Filter Subreddit URLs",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Edit Fields1": {
      "main": [
        [
          {
            "node": "Merge",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Input for AI": {
      "main": [
        [
          {
            "node": "Merge",
            "type": "main",
            "index": 1
          }
        ]
      ]
    },
    "Gmail Trigger": {
      "main": [
        [
          {
            "node": "Delay 5m",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Subreddit about": {
      "main": [
        [
          {
            "node": "Subreddit rules",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Subreddit rules": {
      "main": [
        [
          {
            "node": "Edit Fields1",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Filter Own Posts": {
      "main": [
        [
          {
            "node": "Input for AI",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Get Google Sheet": {
      "ai_tool": [
        [
          {
            "node": "AI Agent",
            "type": "ai_tool",
            "index": 0
          }
        ]
      ]
    },
    "Merge Evaluations": {
      "main": [
        [
          {
            "node": "Set Evaluation Output",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "OpenAI Chat Model": {
      "ai_languageModel": [
        [
          {
            "node": "AI Agent",
            "type": "ai_languageModel",
            "index": 0
          }
        ]
      ]
    },
    "Code in JavaScript1": {
      "main": [
        [
          {
            "node": "Subreddit about",
            "type": "main",
            "index": 0
          },
          {
            "node": "Get a post",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Evaluate text format": {
      "main": [
        [
          {
            "node": "Merge Evaluations",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Evaluate link in text": {
      "main": [
        [
          {
            "node": "Merge Evaluations",
            "type": "main",
            "index": 1
          }
        ]
      ]
    },
    "Filter Subreddit URLs": {
      "main": [
        [
          {
            "node": "Code in JavaScript1",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Set Evaluation Output": {
      "main": [
        []
      ]
    },
    "Evaluation ghseet tool": {
      "main": [
        [
          {
            "node": "Merge Evaluations",
            "type": "main",
            "index": 2
          }
        ]
      ]
    },
    "Structured Output Parser": {
      "ai_outputParser": [
        [
          {
            "node": "AI Agent",
            "type": "ai_outputParser",
            "index": 0
          }
        ]
      ]
    },
    "Create a comment in a post": {
      "main": [
        [
          {
            "node": "Evaluate text format",
            "type": "main",
            "index": 0
          },
          {
            "node": "Evaluate link in text",
            "type": "main",
            "index": 0
          },
          {
            "node": "Evaluation ghseet tool",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "When fetching a dataset row": {
      "main": [
        [
          {
            "node": "Edit Fields",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
常见问题

如何使用这个工作流?

复制上方的 JSON 配置代码,在您的 n8n 实例中创建新工作流并选择「从 JSON 导入」,粘贴配置后根据需要修改凭证设置即可。

这个工作流适合什么场景?

高级

需要付费吗?

本工作流完全免费,您可以直接导入使用。但请注意,工作流中使用的第三方服务(如 OpenAI API)可能需要您自行付费。

工作流信息
难度等级
高级
节点数量31
分类-
节点类型14
难度说明

适合高级用户,包含 16+ 个节点的复杂工作流

作者
Jay Emp0

Jay Emp0

@jay-emp0

AI and Automation developer. Im implementing n8n and ai tools to automate marketing and sales in companies

外部链接
在 n8n.io 查看

分享此工作流