<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Utkarsh Patel</title>
    <description>The latest articles on DEV Community by Utkarsh Patel (@formulacoin).</description>
    <link>https://dev.to/formulacoin</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3953555%2F9248b5f4-5c2f-42e2-9263-d867ac6e5578.png</url>
      <title>DEV Community: Utkarsh Patel</title>
      <link>https://dev.to/formulacoin</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/formulacoin"/>
    <language>en</language>
    <item>
      <title>Inside RAG - How It Really Works (Part 2/4)</title>
      <dc:creator>Utkarsh Patel</dc:creator>
      <pubDate>Wed, 27 May 2026 04:48:48 +0000</pubDate>
      <link>https://dev.to/formulacoin/inside-rag-how-it-really-works-part-24-5h13</link>
      <guid>https://dev.to/formulacoin/inside-rag-how-it-really-works-part-24-5h13</guid>
      <description>&lt;p&gt;RAG seems pretty straightforward at first glance. At the heart of it, the philosophy is, split your documents into chunks, search for the ones that match the question, feed them into the prompt, and finally, have the LLM generate an answer.&lt;/p&gt;

&lt;p&gt;But the interesting parts live in the nitty gritty details of how that retrieval piece actually functions. There are four main stages: chunking, embedding, retrieval, and generation. Each one has far more depth and gotchas than the typical quick-start tutorial ever mentions. Let’s dive into the pipeline and look under the hood.&lt;/p&gt;

&lt;p&gt;Read More at:&lt;/p&gt;


&lt;div class="crayons-card c-embed text-styles text-styles--secondary"&gt;
    &lt;div class="c-embed__content"&gt;
        &lt;div class="c-embed__cover"&gt;
          &lt;a href="https://thingswithai.org/posts/inside-rag" class="c-link align-middle" rel="noopener noreferrer"&gt;
            &lt;img alt="" src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fthingswithai.org%2Fassets%2Finside-rag-QrCPyz1r.jpeg" height="450" class="m-0" width="799"&gt;
          &lt;/a&gt;
        &lt;/div&gt;
      &lt;div class="c-embed__body"&gt;
        &lt;h2 class="fs-xl lh-tight"&gt;
          &lt;a href="https://thingswithai.org/posts/inside-rag" rel="noopener noreferrer" class="c-link"&gt;
            Inside RAG — How It Really Works (And Why Most Projects Stall Before They Ship) — Things With AI
          &lt;/a&gt;
        &lt;/h2&gt;
          &lt;p class="truncate-at-3"&gt;
            The gap between the RAG concept and production reality is where most projects quietly fail. Here's what the explanations usually skip.
          &lt;/p&gt;
        &lt;div class="color-secondary fs-s flex items-center"&gt;
          thingswithai.org
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;


</description>
      <category>ai</category>
      <category>rag</category>
      <category>agents</category>
    </item>
    <item>
      <title>RAG vs. Fine-Tuning - The Question Every AI Builder Gets Wrong (Part 1/4)</title>
      <dc:creator>Utkarsh Patel</dc:creator>
      <pubDate>Wed, 27 May 2026 04:46:00 +0000</pubDate>
      <link>https://dev.to/formulacoin/rag-vs-fine-tuning-the-question-every-ai-builder-gets-wrong-5b26</link>
      <guid>https://dev.to/formulacoin/rag-vs-fine-tuning-the-question-every-ai-builder-gets-wrong-5b26</guid>
      <description>&lt;p&gt;LLMs are trained on publicly available data and broad general knowledge. They’re remarkably capable across a wide range of tasks. However, they do not inherently understand the proprietary knowledge that defines how your company actually operates. Internal policies, architectural decisions, pricing structures, contract terms, issue tracking systems, and recent product changes all exist outside the model’s built-in knowledge. This is where commercial adoption often runs into real limitations. When customers ask company-specific questions, the model frequently lacks a reliable source of truth. In those moments, it does what it was designed to do: generate the most plausible answer based on patterns. Sometimes that answer is right. Often, it is not.&lt;/p&gt;

&lt;p&gt;This is fundamentally a knowledge problem, not purely a model quality problem. And it is one that nearly every organization building customer-facing systems eventually encounters.&lt;/p&gt;

&lt;p&gt;Take a common scenario: a customer asks your assistant, “What’s our refund policy for enterprise subscriptions?” The system responds immediately and confidently, but the answer is incorrect. That is where trust begins to break.&lt;/p&gt;

&lt;p&gt;Two approaches have traditionally been the standard response: Fine-Tuning and Retrieval-Augmented Generation (RAG). These days there is also a third layer: Agentic RAG.&lt;/p&gt;

&lt;p&gt;Read More At:&lt;/p&gt;


&lt;div class="crayons-card c-embed text-styles text-styles--secondary"&gt;
    &lt;div class="c-embed__content"&gt;
        &lt;div class="c-embed__cover"&gt;
          &lt;a href="https://thingswithai.org/posts/rag-vs-fine-tuning" class="c-link align-middle" rel="noopener noreferrer"&gt;
            &lt;img alt="" src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fthingswithai.org%2Fassets%2Frag-vs-fine-tuning-g5Nrn7C8.jpeg" height="450" class="m-0" width="799"&gt;
          &lt;/a&gt;
        &lt;/div&gt;
      &lt;div class="c-embed__body"&gt;
        &lt;h2 class="fs-xl lh-tight"&gt;
          &lt;a href="https://thingswithai.org/posts/rag-vs-fine-tuning" rel="noopener noreferrer" class="c-link"&gt;
            RAG vs. Fine-Tuning — The Question Every AI Builder Gets Wrong — Things With AI
          &lt;/a&gt;
        &lt;/h2&gt;
          &lt;p class="truncate-at-3"&gt;
            AI models don't know your private data. Two approaches have been the standard answer. In 2026, a third matters just as much.
          &lt;/p&gt;
        &lt;div class="color-secondary fs-s flex items-center"&gt;
          thingswithai.org
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;


</description>
      <category>ai</category>
      <category>rag</category>
      <category>agents</category>
    </item>
  </channel>
</rss>
