私のワークフロー
中級
これはSupport, AI分野の自動化ワークフローで、10個のノードを含みます。主にTelegram, GoogleDocsTool, Agent, TelegramTrigger, LmChatOpenAiなどのノードを使用、AI技術を活用したスマート自動化を実現。 GPT4-miniとGoogle Docsの知識ベースを使ってTelegramカスタマーサポートボットを作成
前提条件
- •Telegram Bot Token
- •OpenAI API Key
ワークフロープレビュー
ノード接続関係を可視化、ズームとパンをサポート
ワークフローをエクスポート
以下のJSON設定をn8nにインポートして、このワークフローを使用できます
{
"id": "",
"meta": {},
"name": "My workflow",
"tags": [],
"nodes": [
{
"id": "f611e34d-0de9-42b7-b438-bc522817f9ba",
"name": "OpenAI チャットモデル",
"type": "@n8n/n8n-nodes-langchain.lmChatOpenAi",
"position": [
180,
180
],
"parameters": {
"model": {
"__rl": true,
"mode": "list",
"value": "gpt-4o-mini",
"cachedResultName": "gpt-4o-mini"
},
"options": {}
},
"credentials": {},
"typeVersion": 1.2
},
{
"id": "7c968986-dcc4-4a26-bedf-5a5f9c75d2dc",
"name": "シンプルメモリ",
"type": "@n8n/n8n-nodes-langchain.memoryBufferWindow",
"position": [
340,
180
],
"parameters": {
"sessionKey": "={{ $json.message.chat.id }}",
"sessionIdType": "customKey"
},
"typeVersion": 1.3
},
{
"id": "fd291678-8522-4e00-94bc-7033689f14b3",
"name": "Google ドキュメント",
"type": "n8n-nodes-base.googleDocsTool",
"position": [
480,
180
],
"parameters": {
"operation": "get",
"documentURL": "https://docs.google.com/document/d/1os02TMG0h74DYE_mmv5utPr68LtV946otozP1YZTNr0/edit?tab=t.0"
},
"credentials": {},
"typeVersion": 2
},
{
"id": "d3e871cb-48b9-4921-8376-359f53e40942",
"name": "Telegram トリガー",
"type": "n8n-nodes-base.telegramTrigger",
"position": [
-100,
0
],
"webhookId": "d546870e-898a-4d37-b290-a4b3e3eac311",
"parameters": {
"updates": [
"message"
],
"additionalFields": {}
},
"credentials": {},
"typeVersion": 1.2
},
{
"id": "8deb9aa3-4b45-4737-a6a5-4311fb460b04",
"name": "Telegram",
"type": "n8n-nodes-base.telegram",
"position": [
680,
0
],
"webhookId": "cfeeb7fc-6dad-4482-b8c7-73998bfc613f",
"parameters": {
"text": "={{ $json.output }}",
"chatId": "={{ $('Telegram Trigger').item.json.message.chat.id }}",
"additionalFields": {
"appendAttribution": false
}
},
"credentials": {},
"typeVersion": 1.2
},
{
"id": "eac2e88c-0c0f-4451-bbe2-915de6e9ab1a",
"name": "付箋",
"type": "n8n-nodes-base.stickyNote",
"position": [
-200,
-100
],
"parameters": {
"width": 300,
"height": 500,
"content": "Telegram Trigger"
},
"typeVersion": 1
},
{
"id": "c99be9a9-7368-4b22-be65-26108f8dc23a",
"name": "付箋1",
"type": "n8n-nodes-base.stickyNote",
"position": [
120,
-100
],
"parameters": {
"color": 4,
"width": 500,
"height": 500,
"content": "Telegram Trigger"
},
"typeVersion": 1
},
{
"id": "ba596aa6-e6fb-4df4-9bdb-7b75536cfbf6",
"name": "付箋2",
"type": "n8n-nodes-base.stickyNote",
"position": [
640,
-100
],
"parameters": {
"color": 3,
"width": 280,
"height": 500,
"content": "Telegram Trigger"
},
"typeVersion": 1
},
{
"id": "ccf10ec2-eae2-47be-9be7-7bf7b3d974cb",
"name": "Customer Support AI エージェント",
"type": "@n8n/n8n-nodes-langchain.agent",
"position": [
220,
0
],
"parameters": {
"text": "={{ $json.message.text }}",
"options": {
"systemMessage": "You are a helpful Customer Support Agent, cross-reference the Google Doc for any customer queries for relevant information. If relevant information is not found, do not make up facts. Plainly let the user know that the information isn't available. \n\n#Tonality\nFriendly, casual and helpful. if user or customer says hi, inform them that you are a Friendly Customer Support Agent"
},
"promptType": "define"
},
"typeVersion": 2
},
{
"id": "ac9ffbcd-0b7a-421e-92f4-5e367d6ba4c9",
"name": "付箋6",
"type": "n8n-nodes-base.stickyNote",
"position": [
-600,
-100
],
"parameters": {
"color": 5,
"width": 360,
"height": 500,
"content": "🤖 AI Customer Support Agent with Google Docs Knowledge (Telegram + OpenAI)\n\nThis no-code workflow turns your Telegram bot into an intelligent, always-on AI support agent that references your business documentation in Google Docs to respond to customer queries—instantly and accurately.\n\nWatch full step-by-step video tutorial of the build here:\nhttps://www.youtube.com/@Automatewithmarc\n\n🔧 How it works:\nTelegram Trigger – Captures incoming messages from users on your Telegram bot\n\nLangchain AI Agent (OpenAI GPT) – Interprets the message and uses RAG (retrieval-augmented generation) techniques to craft an answer\n\nGoogle Docs Tool – Connects to and retrieves context from your specified Google Doc (e.g. FAQ, SOPs, policies)\n\nMemory Buffer – Keeps track of recent chat history for more human-like conversations\n\nTelegram Reply Node – Sends the AI-generated response back to the user\n\n💡 Use Cases:\nE-commerce customer service\n\nSaaS product onboarding\n\nInternal helpdesk bot for teams\n\nWhatsApp-style support for digital businesses\n\n🧠 What makes this powerful:\nSupports complex questions by referencing a live Google Doc knowledge base\n\nWorks in plain conversational language (no buttons or forms needed)\n\nRuns 24/7 with zero code\n\nEasily extendable to Slack, WhatsApp, or email support\n\n🛠️ Tools used:\nTelegram Node (trigger + send)\n\nLangchain Agent with OpenAI GPT\n\nGoogle Docs Tool\n\nMemory Buffer\n\nSticky Notes for easy understanding"
},
"typeVersion": 1
}
],
"active": true,
"pinData": {},
"settings": {
"executionOrder": "v1"
},
"versionId": "",
"connections": {
"Google Docs": {
"ai_tool": [
[
{
"node": "Customer Support AI Agent",
"type": "ai_tool",
"index": 0
}
]
]
},
"Simple Memory": {
"ai_memory": [
[
{
"node": "Customer Support AI Agent",
"type": "ai_memory",
"index": 0
}
]
]
},
"Telegram Trigger": {
"main": [
[
{
"node": "Customer Support AI Agent",
"type": "main",
"index": 0
}
]
]
},
"OpenAI Chat Model": {
"ai_languageModel": [
[
{
"node": "Customer Support AI Agent",
"type": "ai_languageModel",
"index": 0
}
]
]
},
"Customer Support AI Agent": {
"main": [
[
{
"node": "8deb9aa3-4b45-4737-a6a5-4311fb460b04",
"type": "main",
"index": 0
}
]
]
}
}
}よくある質問
このワークフローの使い方は?
上記のJSON設定コードをコピーし、n8nインスタンスで新しいワークフローを作成して「JSONからインポート」を選択、設定を貼り付けて認証情報を必要に応じて変更してください。
このワークフローはどんな場面に適していますか?
中級 - サポート, 人工知能
有料ですか?
このワークフローは完全無料です。ただし、ワークフローで使用するサードパーティサービス(OpenAI APIなど)は別途料金が発生する場合があります。
関連ワークフロー
法律アシスタントエージェント
🧑⚖️ AI法律アシスタントエージェント — AIに基づいた法律QAとドキュメント検索
Telegram
Agent
Telegram Trigger
+
Telegram
Agent
Telegram Trigger
11 ノードAutomate With Marc
人工知能
GPT、LangChain、およびインテリジェントルーティングに基づくAI駆動カスタマーサービス自動化
AI駆動カスタマーサービス自動化、GPT、LangChain、およびインテリジェントルーティングに基づく
Set
Gmail
Merge
+
Set
Gmail
Merge
46 ノードPaul
サポート
Airbnb Telegramエージェント - テンプレート
Airbnb Telegramプロキシ - 音声対応AI駆動型宿泊検索
Set
Switch
Telegram
+
Set
Switch
Telegram
15 ノードFriedemann Schuetz
サポート
🤖 AIチャットボット
Gmail、Telegram、GPT AIを使ってマルチチャネル対応の顧客サポートを自動化
Set
Gmail
Telegram
+
Set
Gmail
Telegram
23 ノードRedOne
サポート
意味ベースと構造化されたRAGを使用したTelegramおよびPgvector搭載のメールチャットボット
Telegram、Mistral、Pgvectorを使ったRAG技術でメール履歴と会話する
If
Set
Code
+
If
Set
Code
20 ノードAlfonso Corretti
サポート
Grok-4 カスタマーサポートアジェント[RAG]
Grok-4、Google Docs、Telegramを使った顧客サポートアシスタント[RAG]の構築
Telegram
Google Docs Tool
Agent
+
Telegram
Google Docs Tool
Agent
10 ノードAutomate With Marc
サポートチャットボット
ワークフロー情報
難易度
中級
ノード数10
カテゴリー2
ノードタイプ7
作成者
Automate With Marc
@marconiAutomating Start-Up and Business processes. Helping non-techies understand and leverage Agentic AI with easy to understand step-by-step tutorials. Check out my educational content: https://www.youtube.com/@Automatewithmarc
外部リンク
n8n.ioで表示 →
このワークフローを共有