8
n8n 한국어amn8n.com

공급업체 견적 비교기 및 지능형 AI 요약 테이블

중급

이것은Document Extraction, AI Summarization분야의자동화 워크플로우로, 9개의 노드를 포함합니다.주로 Wait, Webhook, Function, EmailSend, HttpRequest 등의 노드를 사용하며. Grok AI를 사용하여 공급자 견적을 비교하고 Google 스프레드시트 및 이메일로 내보냅니다.

사전 요구사항
  • HTTP Webhook 엔드포인트(n8n이 자동으로 생성)
  • 대상 API의 인증 정보가 필요할 수 있음
  • Google Sheets API 인증 정보
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
  "id": "I7WH7YAkU7thNKGJ",
  "meta": {
    "instanceId": "dd69efaf8212c74ad206700d104739d3329588a6f3f8381a46a481f34c9cc281",
    "templateCredsSetupCompleted": true
  },
  "name": "Vendor Quotation Comparator with Smart AI Summary Table",
  "tags": [],
  "nodes": [
    {
      "id": "f13d14c0-5c12-49dc-8fdc-09374c800045",
      "name": "견적 업로드",
      "type": "n8n-nodes-base.webhook",
      "position": [
        -480,
        -140
      ],
      "webhookId": "vendor-quote-upload",
      "parameters": {
        "path": "vendor-quote-upload",
        "options": {}
      },
      "typeVersion": 1
    },
    {
      "id": "3d583a32-3731-4b44-98b0-b90866128a54",
      "name": "파일 데이터 추출",
      "type": "n8n-nodes-base.function",
      "position": [
        -260,
        -140
      ],
      "parameters": {
        "functionCode": "return items.map(item => {\n  const file = item.binary['data'];\n  return {\n    json: {\n      fileName: file.fileName,\n      fileData: file.data\n    }\n  };\n});"
      },
      "typeVersion": 1
    },
    {
      "id": "bd191a98-5b73-4732-bffa-1c9d09faadb4",
      "name": "AI 요약",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        -40,
        -140
      ],
      "parameters": {
        "url": "https://api.grok.xai.com/summarize",
        "options": {}
      },
      "typeVersion": 1
    },
    {
      "id": "616fcc3f-2c98-4816-ad3a-5285e47322f5",
      "name": "요약 형식화",
      "type": "n8n-nodes-base.function",
      "position": [
        400,
        -140
      ],
      "parameters": {
        "functionCode": "return items.map(item => {\n  const summary = item.json;\n  return {\n    json: {\n      vendor: summary.vendor || 'Unknown',\n      price: summary.price || 0,\n      deliveryTime: summary.deliveryTime || 'N/A',\n      features: summary.features || []\n    }\n  };\n});"
      },
      "typeVersion": 1
    },
    {
      "id": "e322b3b3-3b5e-4a2b-b734-6d3c2a8a7a51",
      "name": "Google Sheets에 기록",
      "type": "n8n-nodes-base.googleSheets",
      "position": [
        620,
        -140
      ],
      "parameters": {
        "range": "QuotationSummary!A:D",
        "options": {},
        "sheetId": "your-google-sheet-id",
        "operation": "append"
      },
      "credentials": {
        "googleApi": {
          "id": "ScSS2KxGQULuPtdy",
          "name": "Google Sheets- test"
        }
      },
      "typeVersion": 1
    },
    {
      "id": "9e515cef-d701-47d3-b1a8-6b5e235ab5bf",
      "name": "회신 대기",
      "type": "n8n-nodes-base.wait",
      "position": [
        180,
        -140
      ],
      "webhookId": "4d3d095b-db33-4a57-a49b-bb0314c6c54b",
      "parameters": {},
      "typeVersion": 1.1
    },
    {
      "id": "6a812cc2-8d22-4e08-83af-0f0bafe66ac4",
      "name": "이메일 전송",
      "type": "n8n-nodes-base.emailSend",
      "position": [
        840,
        -140
      ],
      "webhookId": "98e88dd5-5189-4451-bdcc-7e4077b7d221",
      "parameters": {
        "text": "json: {\n      vendor: summary.vendor || 'Unknown',\n      price: summary.price || 0,\n      deliveryTime: summary.deliveryTime || 'N/A',\n      features: summary.features || []\n    }",
        "options": {},
        "subject": "Vendor Quotation Comparison",
        "toEmail": "team@gmail.com",
        "fromEmail": "admin@gmail.com",
        "emailFormat": "text"
      },
      "credentials": {
        "smtp": {
          "id": "G1kyF8cSWTZ4vouN",
          "name": "SMTP -test"
        }
      },
      "typeVersion": 2.1
    },
    {
      "id": "54b92d68-e46a-4af9-8fd2-c4cd16c36316",
      "name": "스티커 메모",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        300,
        -560
      ],
      "parameters": {
        "color": 4,
        "width": 580,
        "height": 260,
        "content": "## Minimal Google Sheet Columns (Top 5):\n\n**Vendor Name** – Name of the vendor\n\n**Total Amount** – Final quoted price\n\n**Delivery Timeline** – Estimated delivery time\n\n**AI Summary** – Key points from the quotation\n\n**Status** – e.g., Logged, Reviewed, Selected"
      },
      "typeVersion": 1
    },
    {
      "id": "ccf6e6a7-6e08-4cc5-ada8-5e70dd688ef1",
      "name": "스티커 메모1",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -500,
        -740
      ],
      "parameters": {
        "width": 680,
        "height": 560,
        "content": "### 🧷 **Notes for Each Node:**\n1. **Upload Quotes** (Webhook Trigger)\n   📌 *Triggers the workflow when vendor quote files are uploaded (via webhook).*\n   ➤ Accepts input like PDF, Excel, or other documents.\n\n2. **Extract File Data** (Code/Function Node)\n   📌 *Parses and extracts key data from uploaded quote files.*\n   ➤ Converts file contents to structured text or JSON.\n\n3. **AI Summarization** (HTTP Request to Grok API)\n   📌 *Sends the extracted data to an AI model to generate a comparison summary.*\n   ➤ Uses Grok or another LLM to create a smart summary.\n\n4. **Wait For Reply** (Wait Node)\n   📌 *Waits for the AI response before proceeding.*\n   ➤ Ensures no step runs before the summary is ready.\n\n5. **Format Summary** (Code/Function Node)\n   📌 *Cleans and formats the AI response into a readable comparison table.*\n   ➤ Converts raw AI output into structured rows/columns.\n\n6. **Log to Google Sheets** (Google Sheets Node)\n   📌 *Appends the formatted summary into a Google Sheet.*\n   ➤ Maintains a log of all vendor comparisons for easy tracking.\n\n7. **Send Email** (Email Node)\n   📌 *Emails the formatted summary to stakeholders or procurement team.*\n   ➤ Sends decision-ready content to the right people."
      },
      "typeVersion": 1
    }
  ],
  "active": false,
  "pinData": {},
  "settings": {
    "executionOrder": "v1"
  },
  "versionId": "5b1389b3-0c98-4fb8-8ac1-ba2de9c736c9",
  "connections": {
    "f13d14c0-5c12-49dc-8fdc-09374c800045": {
      "main": [
        [
          {
            "node": "3d583a32-3731-4b44-98b0-b90866128a54",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "616fcc3f-2c98-4816-ad3a-5285e47322f5": {
      "main": [
        [
          {
            "node": "e322b3b3-3b5e-4a2b-b734-6d3c2a8a7a51",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "9e515cef-d701-47d3-b1a8-6b5e235ab5bf": {
      "main": [
        [
          {
            "node": "616fcc3f-2c98-4816-ad3a-5285e47322f5",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "bd191a98-5b73-4732-bffa-1c9d09faadb4": {
      "main": [
        [
          {
            "node": "9e515cef-d701-47d3-b1a8-6b5e235ab5bf",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "3d583a32-3731-4b44-98b0-b90866128a54": {
      "main": [
        [
          {
            "node": "bd191a98-5b73-4732-bffa-1c9d09faadb4",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "e322b3b3-3b5e-4a2b-b734-6d3c2a8a7a51": {
      "main": [
        [
          {
            "node": "6a812cc2-8d22-4e08-83af-0f0bafe66ac4",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
자주 묻는 질문

이 워크플로우를 어떻게 사용하나요?

위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.

이 워크플로우는 어떤 시나리오에 적합한가요?

중급 - 문서 추출, AI 요약

유료인가요?

이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.

워크플로우 정보
난이도
중급
노드 수9
카테고리2
노드 유형7
난이도 설명

일정 경험을 가진 사용자를 위한 6-15개 노드의 중간 복잡도 워크플로우

저자
Oneclick AI Squad

Oneclick AI Squad

@oneclick-ai

The AI Squad Initiative is a pioneering effort to build, automate and scale AI-powered workflows using n8n.io. Our mission is to help individuals and businesses integrate AI agents seamlessly into their daily operations from automating tasks and enhancing productivity to creating innovative, intelligent solutions. We design modular, reusable AI workflow templates that empower creators, developers and teams to supercharge their automation with minimal effort and maximum impact.

외부 링크
n8n.io에서 보기

이 워크플로우 공유

카테고리

카테고리: 34