Block 1 - Pinecone Vector Store
- Type / Role
- @n8n/n8n-nodes-langchain.vectorStorePinecone - vectorStorePinecone
- Config choices
- Version 1
This workflow is provided as-is. Please review and test before using in production.
This workflow implements a Retrieval Augmented Generation (RAG) chatbot that answers employee questions based on company documents stored in Google Drive. It automatically indexes new or updated do...
@n8n/n8n-nodes-langchain.vectorstorepinecone, @n8n/n8n-nodes-langchain.embeddingsgooglegemini, @n8n/n8n-nodes-langchain.documentdefaultdataloader, @n8n/n8n-nodes-langchain.textsplitterrecursivecharactertextsplitter, @n8n/n8n-nodes-langchain.agent, @n8n/n8n-nodes-langchain.toolvectorstore, n8n-nodes-base.googledrive, n8n-nodes-base.stickynote
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Mihai Farcas.
Original n8n.io sourceThis workflow implements a Retrieval Augmented Generation (RAG) chatbot that answers employee questions based on company documents stored in Google Drive. It automatically indexes new or updated documents in a Pinecone vector database, allowing the chatbot to provide accurate and up-to-date information. The workflow uses Google's Gemini AI for both embeddings and response generation.
The workflow uses two Google Drive Trigger nodes: one for detecting new files added to a specified Google Drive folder, and another for detecting file updates in that same folder.
Google Drive node downloads the file.Default Data Loader node loads the document content.Recursive Character Text Splitter node breaks the document into smaller text chunks.Pinecone Vector Store node indexes the text chunks and their embeddings in a specified Pinecone index.
7.The Chat Trigger node receives user questions through a chat interface. The user's question is passed to an AI Agent node.AI Agent node uses a Vector Store Tool node, linked to a Pinecone Vector Store node in query mode, to retrieve relevant text chunks from Pinecone based on the user's question.Google Gemini Chat Model generates a comprehensive and informative answer based on the retrieved documents.Window Buffer Memory node connected to the AI Agent provides short-term memory, allowing for more natural and context-aware conversations.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 | RAG chatbot for company documents using Google Drive and Gemini |
|---|---|
| Complexity | advanced |
| Nodes | 18 |
| Categories | Internal Wiki, AI RAG |
| Author | Mihai Farcas |
| Published | 20 Jan 2025 |
Use the JSON export at /data/workflows/2753/2753.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.
This workflow implements a Retrieval Augmented Generation (RAG) chatbot that answers employee questions based on company documents stored in Google Drive. It automatically indexes new or updated do...
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 Internal Wiki, AI RAG use case.