The Secret to High-Precision RAG Agents (n8n)

I created a video that walks through how I built a dynamic hybrid RAG (Retrieval-Augmented Generation) search engine in n8n, and this article captures that same approach in detail. My goal here is to explain why vectors alone often fail, how different retrieval methods work, and how you can combine them so an AI agent … Read more

To Scale our RAG Agent (5,000 Files per/hr)

I created an automation that imports documents into a Supabase vector store so an AI agent can query them. The system worked fine for small knowledge bases, but it fell apart when I tried to scale it. After about 100 hours of tuning and testing, I reduced file processing time by 97% and reached a … Read more

99% of n8n Builders are Doing It Wrong

I built a full evaluation system for RAG agents running in n8n and I want to show you how I do it. I recorded a video walking through everything, and this article captures that workflow in written form. I’ll explain why random “vibe testing” doesn’t scale, how to create a ground truth data set, how … Read more

I Deployed a Secure Multi-User AI Agent in n8n

I created a multi-user AI agent that runs inside an e-commerce dashboard and can answer account-specific questions like “Where is my order?” or “Show me the invoice for order #6.” I built the agent with n8n and Supabase, and I focused heavily on security. In this article I’ll explain the full architecture, show the demo … Read more

Make your AI Agents 10x Smarter with GraphRAG (n8n)

GraphRAG is one of the most effective ways to improve the accuracy and reliability of AI agents. Many people hesitate to use knowledge graphs because they seem complicated to set up and hard to maintain. In this article, I’ll show you how to quickly set up your own knowledge graph, automatically populate it from your … 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

I Deployed A Fully Local RAG Frontend (n8n + Ollama)

More companies are moving towards running their AI agents and systems entirely on local hardware. This shift is motivated by concerns over privacy, compliance, reducing cloud dependency, and cutting operational costs. The primary business use case for AI right now is enabling employees to interact with AI agents that are deeply informed by the company’s … Read more

n8n Just Leveled Up AI Agents (Cohere Reranker)

Setting up a basic AI agent in n8n that queries a vector store is straightforward. However, ensuring that the agent consistently delivers relevant, high-quality answers takes some advanced techniques. One of the easiest and most effective ways to improve the accuracy of your retrieval-augmented generation (RAG) agent is by using re rankers. With the release … Read more

I Built a NotebookLM Clone That You Can Sell (n8n + Loveable)

NotebookLM stands out as one of the most powerful AI research tools available today. What makes it remarkable is its ability to ground responses exclusively in the sources you provide, ensuring accuracy and relevance. However, its closed nature limits customization and self-hosting, which can be a barrier for businesses wanting a tailored AI research assistant. … Read more

This Hybrid RAG Trick Makes Your AI Agents More Reliable (n8n)

When building AI agents that rely on vector stores to fetch information from your own data, you might notice that the answers aren’t always accurate. The challenge often lies in how vector search handles queries. While it excels at understanding the meaning behind natural language queries, it can struggle with specific names, acronyms, codes, or … Read more