The KEY to Building Smarter RAG Database Agents (n8n)

I created an AI agent that can query databases effectively using natural language. This agent can handle everything from simple single-table queries to complex database schemas with multiple relationships. In this article, I’ll walk you through the entire process, demonstrating how to build such an agent using a Postgres database hosted on Supabase. While I … Read more

Laser-Focus your RAG Agents with Advanced Metadata Filtering (n8n)

RAG agents are incredibly powerful tools for retrieving information from vector databases, but they often face a common challenge: the data retrieved can be outdated or irrelevant because it lacks precise filtering based on metadata. To solve this, I created an automation that allows agents to generate advanced metadata filters dynamically. This ensures they pull … Read more

Watch Me Build + Ship a COMPLEX Web App (Lovable + n8n)

In this article, I’ll share how I built a complex full-stack web application using no-code tools over just three days. The app, Insights LM, is a fully functional clone of Google’s NotebookLM, packed with advanced features like file uploads, AI-powered document chat using Retrieval-Augmented Generation (RAG), inline citations, podcast generation, and more. I achieved this … Read more

This One Fix Made Our RAG Agents 10x Better (n8n)

In building AI-powered Retrieval-Augmented Generation (RAG) agents using n8n, I discovered a simple adjustment that can dramatically improve their effectiveness. This tweak takes just about ten seconds to implement but can make a significant difference in how well your agents understand and retrieve information. Even experienced users might overlook this detail, yet it’s one of … Read more

9 Context Engineering Strategies to Build Better AI Agents (n8n)

Context engineering has become a crucial skill for anyone working with AI agents today. As these agents grow more advanced and capable of independent operation—accessing the web, knowledge bases, and various tools—the traditional approach of prompt engineering no longer suffices. The key challenge is managing the context window, which is the limited amount of text … Read more

Stop Using RAG for Spreadsheets — Use This Instead (n8n)

I created an automation that allows AI agents to answer questions based on spreadsheet and database data accurately and efficiently. Traditional vector stores often struggle with this task, especially when it comes to structured data like spreadsheets. They usually return poor results, as semantic search retrieves chunks of documents that are often out of context. … Read more

Unlock Multimodal RAG Agents in n8n (Images, Tables & Text)

I created an automation that builds a multimodal Retrieval-Augmented Generation (RAG) agent capable of indexing and analyzing complex PDFs containing text, images, and tables at scale. This agent goes beyond simply extracting text—it understands images using an AI vision model and responds to queries with images and tables embedded directly in its answers. This approach … Read more