8
n8n 中文网amn8n.com

AI 联系人丰富

中级

这是一个自动化工作流,包含 9 个节点。主要使用 Code, Webhook, Supabase, HttpRequest 等节点。 AI驱动联系人智能与丰富,使用OpenAI/Anthropic和Supabase

前置要求
  • HTTP Webhook 端点(n8n 会自动生成)
  • Supabase URL 和 API Key
  • 可能需要目标 API 的认证凭证

分类

-
工作流预览
可视化展示节点连接关系,支持缩放和平移
导出工作流
复制以下 JSON 配置到 n8n 导入,即可使用此工作流
{
  "name": "AI 联系人丰富",
  "tags": [
    {
      "id": "customer-support",
      "name": "customer-support",
      "createdAt": "2025-01-14T00:00:00.000Z",
      "updatedAt": "2025-01-14T00:00:00.000Z"
    },
    {
      "id": "ai-automation",
      "name": "ai-automation",
      "createdAt": "2025-01-14T00:00:00.000Z",
      "updatedAt": "2025-01-14T00:00:00.000Z"
    }
  ],
  "nodes": [
    {
      "id": "webhook-trigger",
      "name": "Webhook触发器",
      "type": "n8n-nodes-base.webhook",
      "position": [
        250,
        300
      ],
      "webhookId": "contact-enrichment-webhook",
      "parameters": {
        "path": "contact-enrichment",
        "options": {}
      },
      "typeVersion": 1
    },
    {
      "id": "process-data",
      "name": "处理数据",
      "type": "n8n-nodes-base.code",
      "position": [
        450,
        300
      ],
      "parameters": {
        "functionCode": "// Extract and process data\nconst data = {\n  id: Date.now().toString(),\n  ...$input.item.json,\n  timestamp: new Date().toISOString()\n};\nreturn { json: data };"
      },
      "typeVersion": 2
    },
    {
      "id": "prepare-ai",
      "name": "准备 AI 请求",
      "type": "n8n-nodes-base.code",
      "position": [
        650,
        300
      ],
      "parameters": {
        "functionCode": "// AI Configuration\nconst aiConfig = {\n  provider: $env.AI_PROVIDER || 'openai',\n  apiKey: $env.AI_API_KEY,\n  model: $env.AI_MODEL || 'gpt-3.5-turbo',\n  endpoint: $env.AI_ENDPOINT\n};\nreturn { json: { aiConfig, data: $json } };"
      },
      "typeVersion": 2
    },
    {
      "id": "call-ai",
      "name": "调用 AI API",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        850,
        300
      ],
      "parameters": {
        "url": "={{$json.aiConfig.provider === 'openai' ? 'https://api.openai.com/v1/chat/completions' : $json.aiConfig.endpoint}}",
        "method": "POST",
        "sendBody": true,
        "sendHeaders": true,
        "authentication": "genericCredentialType",
        "bodyParameters": {
          "parameters": [
            {
              "name": "model",
              "value": "={{$json.aiConfig.model}}"
            },
            {
              "name": "messages",
              "value": "={{JSON.stringify([{role: 'user', content: JSON.stringify($json.data)}])}}"
            }
          ]
        },
        "genericAuthType": "httpHeaderAuth",
        "headerParameters": {
          "parameters": [
            {
              "name": "Content-Type",
              "value": "application/json"
            },
            {
              "name": "Authorization",
              "value": "=Bearer {{$json.aiConfig.apiKey}}"
            }
          ]
        }
      },
      "typeVersion": 4
    },
    {
      "id": "save-to-db",
      "name": "保存到 Supabase",
      "type": "n8n-nodes-base.supabase",
      "position": [
        1050,
        300
      ],
      "parameters": {
        "table": "workflow_logs",
        "values": "=AI Contact Enrichment,={{JSON.stringify($json)}},={{JSON.stringify($json)}},={{new Date().toISOString()}}",
        "columns": "workflow_name,data,ai_response,created_at",
        "operation": "insert"
      },
      "credentials": {
        "supabaseApi": {
          "id": "supabase-credentials",
          "name": "Supabase API"
        }
      },
      "typeVersion": 1
    },
    {
      "id": "format-response",
      "name": "格式化响应",
      "type": "n8n-nodes-base.code",
      "position": [
        1250,
        300
      ],
      "parameters": {
        "functionCode": "return { json: { success: true, workflow: 'AI Contact Enrichment', timestamp: new Date().toISOString() } };"
      },
      "typeVersion": 2
    },
    {
      "id": "sticky-overview",
      "name": "便签",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        240,
        60
      ],
      "parameters": {
        "width": 380,
        "height": 380,
        "content": "## 🔍 AI 联系人丰富工作流"
      },
      "typeVersion": 1
    },
    {
      "id": "sticky-setup",
      "name": "便签 1",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        640,
        60
      ],
      "parameters": {
        "width": 360,
        "height": 380,
        "content": "## 📋 所需设置"
      },
      "typeVersion": 1
    },
    {
      "id": "sticky-flow",
      "name": "便签 2",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        1040,
        60
      ],
      "parameters": {
        "width": 340,
        "height": 300,
        "content": "## 🔄 工作流流程"
      },
      "typeVersion": 1
    }
  ],
  "settings": {
    "executionOrder": "v1"
  },
  "updatedAt": "2025-01-14T00:00:00.000Z",
  "versionId": "1",
  "staticData": null,
  "connections": {
    "Call AI API": {
      "main": [
        [
          {
            "node": "Save to Supabase",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Process Data": {
      "main": [
        [
          {
            "node": "Prepare AI Request",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Webhook Trigger": {
      "main": [
        [
          {
            "node": "Process Data",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Save to Supabase": {
      "main": [
        [
          {
            "node": "Format Response",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Prepare AI Request": {
      "main": [
        [
          {
            "node": "Call AI API",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  },
  "triggerCount": 1
}
常见问题

如何使用这个工作流?

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

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

中级

需要付费吗?

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

工作流信息
难度等级
中级
节点数量9
分类-
节点类型5
难度说明

适合有一定经验的用户,包含 6-15 个节点的中等复杂度工作流

作者
Shelly-Ann Davy

Shelly-Ann Davy

@SheCodesFlow

Founder of The Workflow Muse & @SheCodesFlow. I craft elegant, task-focused automations for creators, founders, and soft-tech enthusiasts. “Automate with grace. Scale with power.”

外部链接
在 n8n.io 查看

分享此工作流