「N8N」修訂間的差異

出自跨校選修
跳至導覽 跳至搜尋
行 1: 行 1:
 
[[分類:AI]]
 
[[分類:AI]]
 +
<p><strong>n8n</strong> 是一套
 +
<strong>開源的工作流程自動化工具(workflow automation
 +
tool)</strong></p>
 +
<hr />
 +
<h3 id="n8n-的主要特點">🧩 <strong>n8n 的主要特點</strong></h3>
 +
<table>
 +
<colgroup>
 +
<col style="width: 73%" />
 +
<col style="width: 26%" />
 +
</colgroup>
 +
<thead>
 +
<tr>
 +
<th>功能</th>
 +
<th>說明</th>
 +
</tr>
 +
</thead>
 +
<tbody>
 +
<tr>
 +
<td><strong>節點式流程設計</strong></td>
 +
<td>使用者可拖拉不同「節點」(Node)來組合自動化流程,每個節點對應一個服務或功能(如:Gmail、Webhook、資料庫、GPT)。</td>
 +
</tr>
 +
<tr>
 +
<td><strong>開源</strong></td>
 +
<td>可自行安裝在本機、伺服器或 Docker
 +
上,不受限於雲端平台的價格與隱私疑慮。</td>
 +
</tr>
 +
<tr>
 +
<td><strong>支援上百種服務整合</strong></td>
 +
<td>包含 Google Sheet、Telegram、Slack、Notion、MySQL、OpenAI、LINE
 +
等。</td>
 +
</tr>
 +
<tr>
 +
<td><strong>可自寫 JavaScript 函數</strong></td>
 +
<td>節點中可插入 JS 處理資料邏輯,更適合技術用戶客製化工作流程。</td>
 +
</tr>
 +
</tbody>
 +
</table>
 +
<hr />
 +
<h3 id="搭配-ai-可做的事例如與-openai-api-或其他模型串接">🤖
 +
<strong>搭配 AI 可做的事(例如與 OpenAI API
 +
或其他模型串接)</strong></h3>
 +
<table>
 +
<colgroup>
 +
<col style="width: 26%" />
 +
<col style="width: 73%" />
 +
</colgroup>
 +
<thead>
 +
<tr>
 +
<th>用途</th>
 +
<th>AI 如何發揮作用</th>
 +
</tr>
 +
</thead>
 +
<tbody>
 +
<tr>
 +
<td><strong>自動摘要內容</strong></td>
 +
<td>例如接收到 Email、表單、RSS 訊息後,自動送給 ChatGPT
 +
摘要重點,再傳送到 LINE、Slack 或存進 Notion。</td>
 +
</tr>
 +
<tr>
 +
<td><strong>客服自動回覆</strong></td>
 +
<td>n8n 可連接網站或 LINE Bot,接收使用者問題後,把訊息送至 GPT
 +
模型產生回答,並回傳結果。</td>
 +
</tr>
 +
<tr>
 +
<td><strong>智慧標記與分類</strong></td>
 +
<td>將一篇文章或回應,自動送 GPT
 +
分析主題分類、加標籤,儲存到資料庫或搜尋系統。</td>
 +
</tr>
 +
<tr>
 +
<td><strong>產生報表/內容</strong></td>
 +
<td>依據 Google Sheet、SQL
 +
資料,自動撰寫週報、商業摘要或社群貼文草稿。</td>
 +
</tr>
 +
<tr>
 +
<td><strong>語音轉文字 → 文字總結</strong></td>
 +
<td>上傳音檔後用 Whisper 轉文字,再交由 ChatGPT 總結或提煉重點。</td>
 +
</tr>
 +
<tr>
 +
<td><strong>教育/評量用途</strong></td>
 +
<td>學生作答上傳後,GPT 節點自動評語與回饋,並寄信通知學生或老師。</td>
 +
</tr>
 +
</tbody>
 +
</table>
 +
<hr />
 +
<h3 id="範例流程示意圖文字版">🔧 範例流程示意圖(文字版)</h3>
 +
<ol type="1">
 +
<li>Webhook 收到表單(如 Google Form)<br />
 +
</li>
 +
<li>資料傳到 GPT 節點 → 自動生成摘要或建議<br />
 +
</li>
 +
<li>將結果送到 LINE / Email / Notion<br />
 +
</li>
 +
<li>若內容符合條件,儲存到 MySQL 或觸發後續流程</li>
 +
</ol>
 +
<hr />
 +
<h3 id="適合哪些人使用">✅ 適合哪些人使用?</h3>
 +
<ul>
 +
<li>不懂程式但想整合工具(有 GUI 操作介面)</li>
 +
<li>有技術背景想自架自訂複雜流程</li>
 +
<li>想整合 AI、資料庫、Webhook、API 的專案管理者或自動化愛好者</li>
 +
</ul>

於 2025年6月15日 (日) 15:40 的修訂

n8n 是一套 開源的工作流程自動化工具(workflow automation tool)


🧩 n8n 的主要特點

<colgroup> <col style="width: 73%" /> <col style="width: 26%" /> </colgroup> <thead> </thead> <tbody> </tbody>
功能 說明
節點式流程設計 使用者可拖拉不同「節點」(Node)來組合自動化流程,每個節點對應一個服務或功能(如:Gmail、Webhook、資料庫、GPT)。
開源 可自行安裝在本機、伺服器或 Docker 上,不受限於雲端平台的價格與隱私疑慮。
支援上百種服務整合 包含 Google Sheet、Telegram、Slack、Notion、MySQL、OpenAI、LINE 等。
可自寫 JavaScript 函數 節點中可插入 JS 處理資料邏輯,更適合技術用戶客製化工作流程。

🤖 搭配 AI 可做的事(例如與 OpenAI API 或其他模型串接)

<colgroup> <col style="width: 26%" /> <col style="width: 73%" /> </colgroup> <thead> </thead> <tbody> </tbody>
用途 AI 如何發揮作用
自動摘要內容 例如接收到 Email、表單、RSS 訊息後,自動送給 ChatGPT 摘要重點,再傳送到 LINE、Slack 或存進 Notion。
客服自動回覆 n8n 可連接網站或 LINE Bot,接收使用者問題後,把訊息送至 GPT 模型產生回答,並回傳結果。
智慧標記與分類 將一篇文章或回應,自動送 GPT 分析主題分類、加標籤,儲存到資料庫或搜尋系統。
產生報表/內容 依據 Google Sheet、SQL 資料,自動撰寫週報、商業摘要或社群貼文草稿。
語音轉文字 → 文字總結 上傳音檔後用 Whisper 轉文字,再交由 ChatGPT 總結或提煉重點。
教育/評量用途 學生作答上傳後,GPT 節點自動評語與回饋,並寄信通知學生或老師。

🔧 範例流程示意圖(文字版)

  1. Webhook 收到表單(如 Google Form)
  2. 資料傳到 GPT 節點 → 自動生成摘要或建議
  3. 將結果送到 LINE / Email / Notion
  4. 若內容符合條件,儲存到 MySQL 或觸發後續流程

✅ 適合哪些人使用?

  • 不懂程式但想整合工具(有 GUI 操作介面)
  • 有技術背景想自架自訂複雜流程
  • 想整合 AI、資料庫、Webhook、API 的專案管理者或自動化愛好者