Block 1 - Workflow Overview
- Type / Role
- n8n-nodes-base.stickyNote - stickyNote
- Config choices
- Version 1
Description This workflow helps travel, booking, and customer support businesses create an AI chatbot that answers customer questions from their own knowledge base. Instead of manually replying ...
n8n-nodes-base.stickynote, n8n-nodes-base.googledrive, @n8n/n8n-nodes-langchain.vectorstorepinecone, @n8n/n8n-nodes-langchain.embeddingsopenai, @n8n/n8n-nodes-langchain.documentdefaultdataloader, @n8n/n8n-nodes-langchain.textsplitterrecursivecharactertextsplitter, n8n-nodes-base.manualtrigger, @n8n/n8n-nodes-langchain.chainretrievalqa
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by ayo.o.
Original n8n.io sourceπ Description
This workflow helps travel, booking, and customer support businesses create an AI chatbot that answers customer questions from their own knowledge base. Instead of manually replying to repeated questions about bookings, cancellations, refunds, pricing, policies, or service details, the business can upload a knowledge document and let the chatbot respond through a webhook.
Built for travel agencies, booking platforms, hotels, shortlets, service businesses, and automation builders who want to create a simple RAG chatbot using Google Drive, OpenAI, Pinecone, and n8n.
What This Workflow Does
π Downloads a knowledge document from Google Drive βοΈ Splits the document into smaller chunks for better retrieval π§ Creates embeddings using OpenAI π¦ Stores the knowledge base inside a Pinecone vector index π¬ Receives customer questions through a webhook π Searches Pinecone for the most relevant information π€ Uses OpenAI to generate a short, helpful answer π€ Returns the chatbot response back to the connected frontend, chatbot, or app
Key Benefits
β Turns a simple document into a searchable AI knowledge base β Helps answer repeated customer questions faster β Uses RAG so responses are based on the uploaded business information β Works with any frontend, chatbot, or app that can send a POST request β Easy to customize for different travel, booking, or support businesses β Separates knowledge indexing from live chatbot responses β Includes a simple response formatting step before returning the answer
How It Works
SW1 β Knowledge Base Indexing
The workflow starts with a manual trigger. It downloads a knowledge document from Google Drive, loads the document content, splits it into smaller text chunks, creates embeddings with OpenAI, and stores those chunks inside a Pinecone vector index.
This section should be run first because the chatbot can only answer from information that has already been indexed into Pinecone.
SW2 β Chatbot Question Answering
The webhook receives a customer question from a frontend, chatbot, or app. The workflow sends the question into a retrieval QA chain, searches the Pinecone vector store for relevant context, and uses OpenAI to generate a short answer based on the retrieved information.
The response is then cleaned by a Code node and returned through Respond to Webhook.
Features
Google Drive knowledge document download OpenAI embeddings Pinecone vector storage Recursive text splitting Webhook-based chatbot input Retrieval QA chain for context-aware answers Short customer-support style responses Response cleanup before returning to the frontend Reusable structure for travel, booking, hotel, shortlet, and service businesses
Requirements
Google Drive account OpenAI API key Pinecone account and index n8n account or self-hosted n8n instance A prepared knowledge document such as FAQs, policies, service details, or booking information A frontend, chatbot, or app that can send questions to the webhook
Setup Steps
Target Audience
βοΈ Travel agencies answering booking and policy questions π¨ Hotels and shortlet businesses handling repeated guest enquiries π§³ Booking platforms that need a lightweight support chatbot π€ Automation builders creating RAG chatbot demos for clients π Customer support teams that want answers based on internal documents
This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
| Workflow | Create a travel support RAG chatbot with Google Drive, Pinecone and OpenAI |
|---|---|
| Complexity | advanced |
| Nodes | 18 |
| Categories | Support Chatbot, AI RAG |
| Author | ayo.o |
| Published | 11 May 2026 |
Use the JSON export at /data/workflows/15632/15632.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
Description This workflow helps travel, booking, and customer support businesses create an AI chatbot that answers customer questions from their own knowledge base. Instead of manually replying ...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Support Chatbot, AI RAG use case.