https://github.com/sushantdhumak/n8n_workflows
https://github.com/sushantdhumak/n8n_workflows
agentic-workflow chat chatmodel embeddings google-sheets n8n n8n-nodes n8n-workflow openai pinecone vector-database
Last synced: 29 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/sushantdhumak/n8n_workflows
- Owner: sushantdhumak
- Created: 2025-04-01T14:23:57.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2025-04-05T07:34:18.000Z (29 days ago)
- Last Synced: 2025-04-05T08:26:53.646Z (29 days ago)
- Topics: agentic-workflow, chat, chatmodel, embeddings, google-sheets, n8n, n8n-nodes, n8n-workflow, openai, pinecone, vector-database
- Homepage:
- Size: 751 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# n8n_Workflows
## 1. Inventory Agent
A simple `Inventory Agent` that retrieves or updates inventory data stored in a Google Sheet based on user input.
Nodes used:
AI Agent, OpenAI Chat Model, Simple Memory, Get Inventory (Tools), Update Inventory (Tools)


---
## 2. Order Status via Email
A simple workflow that retrieves order data from a Google Sheet and automatically sends an email notification to the specified recipient, updating them on the order status.
Nodes used:
Google Sheet (anyUpdate), OpenAI (to compose email), Gmail (send: message)

---
## 3. RAG - Uploading PDF to Pinecode Vector Database
This workflow demonstrates how to implement a Retrieval-Augmented Generation (RAG) pipeline by downloading a PDF from Google Drive, chunking its content, generating embeddings, and storing them in a Pinecone vector database. This setup enables efficient retrieval of relevant information in response to user queries.
Nodes Used:
Google Drive (download: file), Pineconde Vector Store, OpenAI Embeddings, Default Data Loader, Recursive Character Text Splitter

---
## 4. RAG - AI Agent
An AI agent retrieves relevant information from the Pinecone vector database built in the prior workflow to answer user questions effectively. If the information is not availale in the database, it will make use of Wikipedia to answer the user's query
Nodes Used:
AI Agent, OpenAI Chat Model, Simple Memory, Pineconde Vector Store, OpenAI Embeddings, Wikipedia

---