音声アシスタント - レストラン予約、注文、情報システム

中級

これはSupport Chatbot, AI Chatbot分野の自動化ワークフローで、10個のノードを含みます。主にWait, Webhook, Postgres, RespondToWebhookなどのノードを使用。 VAPI、PostgreSQLを使った予約・注文対応のレストラン音声アシスタントの構築

前提条件
  • HTTP Webhookエンドポイント(n8nが自動生成)
  • PostgreSQLデータベース接続情報
ワークフロープレビュー
ノード接続関係を可視化、ズームとパンをサポート
ワークフローをエクスポート
以下のJSON設定をn8nにインポートして、このワークフローを使用できます
{
  "id": "FBguDlbJmbBGngKf",
  "meta": {
    "instanceId": "dd69efaf8212c74ad206700d104739d3329588a6f3f8381a46a481f34c9cc281",
    "templateCredsSetupCompleted": true
  },
  "name": "Voice Assistant – Restaurant Booking, Orders & Info System",
  "tags": [],
  "nodes": [
    {
      "id": "ca6c5397-c47e-4fde-b08a-c996fc5b242b",
      "name": "トリガー: 音声リクエスト (VAPI)",
      "type": "n8n-nodes-base.webhook",
      "position": [
        -20,
        -380
      ],
      "webhookId": "9f6b9125-0b75-41c2-87a9-1b6746c89e2e",
      "parameters": {
        "path": "9f6b9125-0b75-41c2-87a9-1b6746c89e2e",
        "options": {},
        "httpMethod": "POST",
        "responseMode": "responseNode"
      },
      "typeVersion": 2
    },
    {
      "id": "bbb963c4-1fc3-4dbc-84c5-ed818197fc8a",
      "name": "データ更新 (テーブル予約 / 注文)",
      "type": "n8n-nodes-base.postgres",
      "position": [
        420,
        -380
      ],
      "parameters": {
        "table": {
          "__rl": true,
          "mode": "name",
          "value": "id"
        },
        "schema": {
          "__rl": true,
          "mode": "list",
          "value": "public"
        },
        "columns": {
          "value": {},
          "schema": [],
          "mappingMode": "autoMapInputData",
          "matchingColumns": [],
          "attemptToConvertTypes": false,
          "convertFieldsToString": false
        },
        "options": {},
        "operation": "upsert"
      },
      "credentials": {
        "postgres": {
          "id": "4Y4qEFGqF2krfRHZ",
          "name": "Postgres-test"
        }
      },
      "typeVersion": 2.6
    },
    {
      "id": "97376776-cc21-434b-89b3-e373d4fcc0fe",
      "name": "応答: 予約/注文確認 (VAPI)",
      "type": "n8n-nodes-base.respondToWebhook",
      "position": [
        640,
        -380
      ],
      "parameters": {
        "options": {},
        "respondWith": "json",
        "responseBody": "={\n    \"results\": [\n        {\n            \"toolCallId\": \"{{ $('Trigger: Voice Request (VAPI)').item.json.body.message.toolCalls[0].id }}\",\n            \"result\": \"{{ $json.status }}\"\n        }\n    ]\n}"
      },
      "typeVersion": 1.2
    },
    {
      "id": "7cdb8cb3-94fd-4784-9b79-c9ae26fd7ae6",
      "name": "応答待機",
      "type": "n8n-nodes-base.wait",
      "position": [
        200,
        -380
      ],
      "webhookId": "70ef62ba-b15e-48d6-b6ea-031f1ad02176",
      "parameters": {},
      "typeVersion": 1.1
    },
    {
      "id": "f715f043-661b-4118-9763-642128d936ce",
      "name": "応答待機1",
      "type": "n8n-nodes-base.wait",
      "position": [
        420,
        -120
      ],
      "webhookId": "5282819f-e54d-415e-a2a2-384df4b9f71d",
      "parameters": {},
      "typeVersion": 1.1
    },
    {
      "id": "4a2f8aee-6e5a-44d5-873c-8b8c28aeff3b",
      "name": "トリガー: 情報リクエスト (VAPI)",
      "type": "n8n-nodes-base.webhook",
      "position": [
        -20,
        -120
      ],
      "webhookId": "efe2c13f-1ba5-46e1-9996-57bdc6041973",
      "parameters": {
        "path": "efe2c13f-1ba5-46e1-9996-57bdc6041973",
        "options": {},
        "httpMethod": "POST",
        "responseMode": "responseNode"
      },
      "typeVersion": 2
    },
    {
      "id": "33a7e434-5228-4475-9b21-a5afb7c8656b",
      "name": "レストラン情報取得 (Postgres)",
      "type": "n8n-nodes-base.postgres",
      "position": [
        200,
        -120
      ],
      "parameters": {
        "table": {
          "__rl": true,
          "mode": "name",
          "value": "id"
        },
        "schema": {
          "__rl": true,
          "mode": "list",
          "value": "public"
        },
        "options": {},
        "operation": "select"
      },
      "credentials": {
        "postgres": {
          "id": "4Y4qEFGqF2krfRHZ",
          "name": "Postgres-test"
        }
      },
      "typeVersion": 2.6
    },
    {
      "id": "09058c8d-e3f4-4caa-898a-123ef4ec3eba",
      "name": "応答: レストラン詳細 (VAPI)",
      "type": "n8n-nodes-base.respondToWebhook",
      "position": [
        640,
        -120
      ],
      "parameters": {
        "options": {},
        "respondWith": "json",
        "responseBody": "={\n    \"results\": [\n        {\n            \"toolCallId\": \"{{ $('Trigger: Info Request (VAPI)').item.json.body.message.toolCalls[0].id }}\",\n            \"result\":  \"{{ $json.available }}\"\n        }\n    ]\n}"
      },
      "typeVersion": 1.2
    },
    {
      "id": "e5c43fa2-68c9-4303-bd74-6662cf95a05f",
      "name": "付箋",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -480,
        -620
      ],
      "parameters": {
        "color": 4,
        "width": 440,
        "height": 340,
        "content": "## Table Booking & Order Handling\n\n- Use this workflow to let the voice assistant take table reservations and food orders from customers.\n\n- It saves booking and order details into the database and confirms them back to the customer instantly.\n\n\n"
      },
      "typeVersion": 1
    },
    {
      "id": "4ec14fb4-e367-4b3f-bba4-50cc70c008d2",
      "name": "付箋1",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -500,
        -220
      ],
      "parameters": {
        "width": 480,
        "height": 340,
        "content": "## Restaurant Info Provider\n\n- Use this workflow to let the voice assistant take table reservations and food orders from customers.\n\n- It saves booking and order details into the database and confirms them back to the customer instantly.\n\n\n"
      },
      "typeVersion": 1
    }
  ],
  "active": false,
  "pinData": {},
  "settings": {
    "timezone": "Asia/Kolkata",
    "callerPolicy": "workflowsFromSameOwner",
    "executionOrder": "v1"
  },
  "versionId": "01e81376-112a-42ae-bb2f-5037a2d5da94",
  "connections": {
    "7cdb8cb3-94fd-4784-9b79-c9ae26fd7ae6": {
      "main": [
        [
          {
            "node": "bbb963c4-1fc3-4dbc-84c5-ed818197fc8a",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "f715f043-661b-4118-9763-642128d936ce": {
      "main": [
        [
          {
            "node": "09058c8d-e3f4-4caa-898a-123ef4ec3eba",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "4a2f8aee-6e5a-44d5-873c-8b8c28aeff3b": {
      "main": [
        [
          {
            "node": "33a7e434-5228-4475-9b21-a5afb7c8656b",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "ca6c5397-c47e-4fde-b08a-c996fc5b242b": {
      "main": [
        [
          {
            "node": "7cdb8cb3-94fd-4784-9b79-c9ae26fd7ae6",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "33a7e434-5228-4475-9b21-a5afb7c8656b": {
      "main": [
        [
          {
            "node": "f715f043-661b-4118-9763-642128d936ce",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "bbb963c4-1fc3-4dbc-84c5-ed818197fc8a": {
      "main": [
        [
          {
            "node": "97376776-cc21-434b-89b3-e373d4fcc0fe",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
よくある質問

このワークフローの使い方は?

上記のJSON設定コードをコピーし、n8nインスタンスで新しいワークフローを作成して「JSONからインポート」を選択、設定を貼り付けて認証情報を必要に応じて変更してください。

このワークフローはどんな場面に適していますか?

中級 - サポートチャットボット, AIチャットボット

有料ですか?

このワークフローは完全無料です。ただし、ワークフローで使用するサードパーティサービス(OpenAI APIなど)は別途料金が発生する場合があります。

関連ワークフロー

VAPI と n8n を使用したレストラン 🦶🏻 & 🧾 予約 📞
VAPI と PostgreSQL を使ったレストラン電話対応とテーブル予約の自動化システム
Webhook
Postgres
Respond To Webhook
+
Webhook
Postgres
Respond To Webhook
9 ノードOneclick AI Squad
サポートチャットボット
航空公司のFAQボット
GPT-4と質問分類を使った航空会社カスタマーサポートの自動化
If
Code
Merge
+
If
Code
Merge
27 ノードOneclick AI Squad
サポートチャットボット
WhatsAppチャットボット - レストラン案内アシスタント(予約・メニュー・営業時間)
レストラン カスタマーサービスの自動化をWhatsAppとLlama AIチャットボットで実現
If
Wait
Postgres
+
If
Wait
Postgres
9 ノードOneclick AI Squad
サポートチャットボット
AIを活用した会話型旅行予約ツール:飛行機とホテルの予約を自動化
対話型旅行予約システム:GPT-3.5 を使用した航空券とホテルの自動予約
Code
Open Ai
Switch
+
Code
Open Ai
Switch
21 ノードOneclick AI Squad
サポートチャットボット
AI ソーシャルメディア自動返信プラグイン(Instagram、Facebook、WhatsApp)
Instagram、Facebook、WhatsApp をサポートする Llama 3.2 ベースの AI によるソーシャルメディアメッセージ自動返信システム
Code
Switch
Webhook
+
Code
Switch
Webhook
12 ノードOneclick AI Squad
サポートチャットボット
WhatsApp 旅行計画ツール - リアルタイム旅行アシスタント
Llama 3.2を基盤としたWhatsApp AI旅行アシスタント
Wait
Whats App
Agent
+
Wait
Whats App
Agent
7 ノードOneclick AI Squad
サポートチャットボット
ワークフロー情報
難易度
中級
ノード数10
カテゴリー2
ノードタイプ5
難易度説明

経験者向け、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