Sync Supabase Storage files into a chat agent with Supabase vectors and OpenAI

Go to Workflow
0 views
Built by Redowan Ahmed Farhan Redowan Ahmed Farhan
Created on July 28, 2026

Description

Quick overview
This workflow syncs files from Supabase Storage into a Supabase vector store using OpenAI embeddings, then exposes an n8n chat trigger where an AI agent answers questions by retrieving relevant document chunks from Supabase.

How it works
Starts a manual sync run when you click “Test workflow”.
Reads existing file records from the Supabase files table and lists objects in the Supabase Storage private bucket.
Compares both lists and skips files that are already indexed or match the .emptyFolderPlaceholder marker.
Downloads each new file from Supabase Storage and extracts text (PDFs are parsed; files without an extension are treated as plain text).
Creates a new row in the Supabase files table and splits the extracted text into chunks.
Generates embeddings with OpenAI and inserts the chunks into the Supabase documents vector table for later retrieval.
When a chat message is received, an AI agent uses OpenAI and a Supabase vector search tool to retrieve the top matches and respond with answers grounded in the indexed files.

Setup
Add a Supabase API credential and replace the hardcoded Supabase project URL used by the Storage list and download requests.
Create the Supabase files table (at least name and storage_id) and a documents vector table plus the match_documents function required by the Supabase vector store integration.
Add OpenAI credentials for the embeddings model and chat models used by the indexing and chat steps.
Update or remove the hardcoded file_id metadata filter in the Supabase vector search so the chat agent searches across all indexed documents (or set it to the file you want to limit results to).
If you plan to index non-PDF text uploads, add a text extraction/reading step for the “txt” branch so plain files produce text for chunking and embedding.

Nodes Used (9)

AI Agent
@n8n/n8n-nodes-langchain.agent
Default Data Loader
@n8n/n8n-nodes-langchain.documentDefaultDataLoader
Embeddings OpenAI
@n8n/n8n-nodes-langchain.embeddingsOpenAi
HTTP Request
n8n-nodes-base.httpRequest
OpenAI Chat Model
@n8n/n8n-nodes-langchain.lmChatOpenAi
Recursive Character Text Splitter
@n8n/n8n-nodes-langchain.textSplitterRecursiveCharacterTextSplitter
Supabase
n8n-nodes-base.supabase
Supabase Vector Store
@n8n/n8n-nodes-langchain.vectorStoreSupabase
Vector Store Question Answer Tool
@n8n/n8n-nodes-langchain.toolVectorStore