I’ve been hitting a wall trying to wrap my head around RAG. Every tutorial jumps straight into vector stores and retrieval logic, and honestly it felt like I needed a comp-sci degree just to get started.
Then I stumbled on this—basically you describe what you want in plain English, and the AI generates the workflow for you. Not a template, not a scaffold. An actual ready-to-run pipeline.
I tried it with something simple: “create a workflow that fetches documents from our knowledge base and answers customer questions about our product.” In like 30 seconds, it generated nodes for document retrieval, context handling, and response generation. I didn’t write a single line of code.
What blew my mind is that it wasn’t just stringing together generic blocks. The generated code actually understood the retrieval-generation pattern. The AI included proper error handling and real-time debugging assistance built in.
I’m curious though—when it generates RAG workflows like this, how much are people actually modifying them after generation? Are we talking small tweaks or significant rewrites?