<?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>Forem: Raj Dutta</title>
    <description>The latest articles on Forem by Raj Dutta (@raj_247).</description>
    <link>https://forem.com/raj_247</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2747282%2Fe40de925-fa79-48a2-a7af-74ea44ad741b.png</url>
      <title>Forem: Raj Dutta</title>
      <link>https://forem.com/raj_247</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/raj_247"/>
    <language>en</language>
    <item>
      <title>From RAG to Agentic AI Systems: What’s Actually Changing in Modern Full-Stack Development</title>
      <dc:creator>Raj Dutta</dc:creator>
      <pubDate>Wed, 20 May 2026 15:44:39 +0000</pubDate>
      <link>https://forem.com/raj_247/from-rag-to-agentic-ai-systems-whats-actually-changing-in-modern-full-stack-development-5b0g</link>
      <guid>https://forem.com/raj_247/from-rag-to-agentic-ai-systems-whats-actually-changing-in-modern-full-stack-development-5b0g</guid>
      <description>&lt;p&gt;Over the past year, AI systems have evolved rapidly — but the biggest shift isn’t just better models.&lt;/p&gt;

&lt;p&gt;It’s a change in &lt;strong&gt;how we design intelligent systems&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;We’ve moved from:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Simple LLM wrappers
→ to RAG systems
→ and now toward &lt;strong&gt;Agentic AI architectures powered by structured knowledge&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And in this evolution, two ideas are gaining serious traction:&lt;br&gt;
👉 &lt;strong&gt;Vectorless RAG&lt;/strong&gt;&lt;br&gt;
👉 &lt;strong&gt;Knowledge Graph–driven reasoning&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Let’s break this down from a practical, system-design perspective.&lt;/p&gt;


&lt;h2&gt;
  
  
  1. The Problem with “Basic AI Apps”
&lt;/h2&gt;

&lt;p&gt;Most early AI apps looked like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;User Input → LLM → Response
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then came RAG:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;User Query → Vector Search → Context → LLM → Response
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This solved hallucination to some extent.&lt;/p&gt;

&lt;p&gt;But new problems appeared:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Irrelevant chunks retrieved&lt;/li&gt;
&lt;li&gt;Loss of relationships between data&lt;/li&gt;
&lt;li&gt;Increasing hallucination with larger context&lt;/li&gt;
&lt;li&gt;Lack of explainability&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is where &lt;strong&gt;vector-only thinking starts to break down&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  2. Traditional RAG: Powerful but Limited
&lt;/h2&gt;

&lt;p&gt;RAG relies heavily on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Embeddings&lt;/li&gt;
&lt;li&gt;Vector similarity search&lt;/li&gt;
&lt;li&gt;Chunked documents&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  The Hidden Limitation:
&lt;/h3&gt;

&lt;p&gt;Vector search is based on &lt;strong&gt;semantic similarity&lt;/strong&gt;, not &lt;strong&gt;true understanding&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Example:&lt;br&gt;
If you search for:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Who donated blood last week near me?”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;A vector DB may retrieve:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Documents mentioning “blood”&lt;/li&gt;
&lt;li&gt;Documents mentioning “last week”&lt;/li&gt;
&lt;li&gt;Documents mentioning “location”&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;But it &lt;strong&gt;cannot inherently understand relationships like&lt;/strong&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;donor → location&lt;/li&gt;
&lt;li&gt;donor → availability → time&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is where things get messy.&lt;/p&gt;


&lt;h2&gt;
  
  
  3. Vectorless RAG: A Shift Toward Structured Retrieval
&lt;/h2&gt;

&lt;p&gt;Vectorless RAG avoids embeddings (or reduces dependency on them) and instead relies on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Keyword / symbolic search&lt;/li&gt;
&lt;li&gt;Metadata filtering&lt;/li&gt;
&lt;li&gt;SQL / structured queries&lt;/li&gt;
&lt;li&gt;Graph traversal&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;
  
  
  Example Flow:
&lt;/h3&gt;


&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;User Query → Parse Intent → Structured Query (SQL/Graph) → Context → LLM
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;h3&gt;
  
  
  Why It Matters:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Deterministic retrieval&lt;/li&gt;
&lt;li&gt;No “semantic noise”&lt;/li&gt;
&lt;li&gt;Better precision for structured data&lt;/li&gt;
&lt;li&gt;Lower cost (no embeddings required)&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;
  
  
  Real Use Case:
&lt;/h3&gt;

&lt;p&gt;In a healthcare or blood donation system:&lt;/p&gt;

&lt;p&gt;Instead of:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Find similar chunks”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;You do:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight sql"&gt;&lt;code&gt;&lt;span class="k"&gt;SELECT&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="k"&gt;FROM&lt;/span&gt; &lt;span class="n"&gt;donors&lt;/span&gt;
&lt;span class="k"&gt;WHERE&lt;/span&gt; &lt;span class="n"&gt;blood_group&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s1"&gt;'B+'&lt;/span&gt;
&lt;span class="k"&gt;AND&lt;/span&gt; &lt;span class="k"&gt;location&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s1"&gt;'Durgapur'&lt;/span&gt;
&lt;span class="k"&gt;AND&lt;/span&gt; &lt;span class="n"&gt;last_donation&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&lt;/span&gt; &lt;span class="mi"&gt;3&lt;/span&gt; &lt;span class="n"&gt;months&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This is &lt;strong&gt;Vectorless RAG in action&lt;/strong&gt; — precise, explainable, and reliable.&lt;/p&gt;




&lt;h2&gt;
  
  
  4. Knowledge Graphs: Bringing Relationships Back
&lt;/h2&gt;

&lt;p&gt;This is where things get really interesting.&lt;/p&gt;

&lt;p&gt;A &lt;strong&gt;Knowledge Graph&lt;/strong&gt; models data as:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Nodes (Entities) + Edges (Relationships)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[Donor] —(has_blood_group)→ [B+]
[Donor] —(located_in)→ [Durgapur]
[Donor] —(last_donated)→ [Date]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Why Graphs Beat Flat Data:
&lt;/h3&gt;

&lt;p&gt;Graphs preserve:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Relationships&lt;/li&gt;
&lt;li&gt;Context&lt;/li&gt;
&lt;li&gt;Multi-hop reasoning&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  5. Graph RAG: Smarter Than Vector RAG
&lt;/h2&gt;

&lt;p&gt;Graph-based retrieval works like:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;User Query → Entity Extraction → Graph Traversal → Relevant Subgraph → LLM
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Advantages:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Context is &lt;strong&gt;connected, not fragmented&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Supports &lt;strong&gt;multi-hop reasoning&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Reduces irrelevant data retrieval&lt;/li&gt;
&lt;li&gt;Improves explainability&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Example:
&lt;/h3&gt;

&lt;p&gt;Query:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Find urgent blood donors near me who haven’t donated recently”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Graph traversal:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Filter donors by location&lt;/li&gt;
&lt;li&gt;Check donation history&lt;/li&gt;
&lt;li&gt;Rank by urgency&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is something &lt;strong&gt;vector search struggles with&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  6. Combining It All: Hybrid RAG Architecture
&lt;/h2&gt;

&lt;p&gt;The real power comes from combining:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Vector RAG&lt;/strong&gt; → for unstructured data (documents, notes)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Vectorless RAG&lt;/strong&gt; → for structured queries (DB filters)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Graph RAG&lt;/strong&gt; → for relationships and reasoning&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Modern Architecture:
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fn2mw7xhkh9pelfegs6jz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fn2mw7xhkh9pelfegs6jz.png" alt=" "&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This is the foundation of &lt;strong&gt;next-gen AI systems&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  7. Agentic AI: Orchestrating All of This
&lt;/h2&gt;

&lt;p&gt;Now add agents on top:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Goal → Plan → Choose Retrieval Type → Execute → Iterate
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;An agent can dynamically decide:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Use vector search for knowledge&lt;/li&gt;
&lt;li&gt;Use SQL for precision&lt;/li&gt;
&lt;li&gt;Use graph for reasoning&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This turns your system into a &lt;strong&gt;decision-making pipeline&lt;/strong&gt;, not just a chatbot.&lt;/p&gt;




&lt;h2&gt;
  
  
  8. What This Means for Full-Stack Developers
&lt;/h2&gt;

&lt;p&gt;This shift directly impacts how we build systems:&lt;/p&gt;

&lt;h3&gt;
  
  
  Frontend:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;AI-first UX (streaming, chat, copilots)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Backend:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Orchestrating:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;RAG pipelines&lt;/li&gt;
&lt;li&gt;Agent workflows&lt;/li&gt;
&lt;li&gt;Tool execution&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;h3&gt;
  
  
  Database Layer:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Not just storage anymore:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Vector DB&lt;/li&gt;
&lt;li&gt;Relational DB&lt;/li&gt;
&lt;li&gt;Graph DB&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;




&lt;h2&gt;
  
  
  9. Practical Insight (From Building Systems)
&lt;/h2&gt;

&lt;p&gt;Some hard-earned lessons:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Don’t rely only on embeddings&lt;/li&gt;
&lt;li&gt;Use &lt;strong&gt;structured queries wherever possible&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Graphs are powerful for &lt;strong&gt;real-world relationships&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Keep agents &lt;strong&gt;controlled, not fully autonomous&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Hybrid systems outperform “pure” approaches&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Final Thought
&lt;/h2&gt;

&lt;p&gt;The future of AI systems isn’t about choosing between:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;RAG&lt;/li&gt;
&lt;li&gt;Vector search&lt;/li&gt;
&lt;li&gt;Graphs&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It’s about &lt;strong&gt;combining them intelligently&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;We’re moving toward systems that:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Understand structure&lt;/li&gt;
&lt;li&gt;Preserve relationships&lt;/li&gt;
&lt;li&gt;Make decisions&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And that’s where real innovation is happening.&lt;/p&gt;

</description>
      <category>vectorlessrag</category>
      <category>graphrag</category>
      <category>knowledgegraphs</category>
      <category>rag</category>
    </item>
  </channel>
</rss>
