<?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: Jinesh Barot</title>
    <description>The latest articles on DEV Community by Jinesh Barot (@jinesh_barot_5ed48e8b69f5).</description>
    <link>https://dev.to/jinesh_barot_5ed48e8b69f5</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%2F3654022%2Fdf1d4cb5-751a-4095-a025-931fcac66904.jpg</url>
      <title>DEV Community: Jinesh Barot</title>
      <link>https://dev.to/jinesh_barot_5ed48e8b69f5</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jinesh_barot_5ed48e8b69f5"/>
    <language>en</language>
    <item>
      <title>I Thought I Knew AI. Then I Met "Agents"</title>
      <dc:creator>Jinesh Barot</dc:creator>
      <pubDate>Wed, 10 Dec 2025 07:22:48 +0000</pubDate>
      <link>https://dev.to/jinesh_barot_5ed48e8b69f5/i-thought-i-knew-ai-then-i-met-agents-5819</link>
      <guid>https://dev.to/jinesh_barot_5ed48e8b69f5/i-thought-i-knew-ai-then-i-met-agents-5819</guid>
      <description>&lt;h1&gt;
  
  
  I Thought I Knew AI. Then I Met "Agents."
&lt;/h1&gt;

&lt;h3&gt;
  
  
  &lt;em&gt;My 5-day journey from simple chatbots to reasoning engines with Google &amp;amp; Kaggle&lt;/em&gt;
&lt;/h3&gt;




&lt;p&gt;&lt;strong&gt;[Introduction]&lt;/strong&gt;&lt;br&gt;
Like many developers, I fell into the trap of thinking "AI" just meant "ChatGPT." I thought you typed a prompt, crossed your fingers, and hoped for a good answer. If the AI didn't know the answer, I assumed the technology just wasn't ready yet.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;I was wrong.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Over the last 5 days, participating in the &lt;strong&gt;Google &amp;amp; Kaggle AI Agents Intensive&lt;/strong&gt;, my mental model of Artificial Intelligence has completely shattered. I learned that we aren't just building &lt;em&gt;talkers&lt;/em&gt; anymore; we are building &lt;em&gt;doers&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;Here is how my understanding evolved, and the three technical concepts that changed everything for me.&lt;/p&gt;


&lt;h2&gt;
  
  
  1. The Shift: From "Predicting" to "Reasoning"
&lt;/h2&gt;

&lt;p&gt;The biggest "Aha!" moment for me was understanding the &lt;strong&gt;Agentic Loop&lt;/strong&gt; (Observe → Think → Act).&lt;/p&gt;

&lt;p&gt;Before this course, I treated LLMs like a magic 8-ball. I thought the flow was linear:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;User Input&lt;/strong&gt; → &lt;strong&gt;AI Answer&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Now, I realize that an Agent is actually a &lt;strong&gt;router&lt;/strong&gt;. It doesn't just guess; it pauses to "think."&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; It &lt;strong&gt;Observes&lt;/strong&gt; the user's request.&lt;/li&gt;
&lt;li&gt; It &lt;strong&gt;Reasons&lt;/strong&gt; about what needs to be done.&lt;/li&gt;
&lt;li&gt; It &lt;strong&gt;Acts&lt;/strong&gt; by using a specific tool.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This distinction turns AI from a creative writing assistant into a reliable software engineer.&lt;/p&gt;
&lt;h2&gt;
  
  
  2. Tools: The Cure for Hallucinations
&lt;/h2&gt;

&lt;p&gt;I used to struggle with AI making up facts (hallucinations). I tried endless "prompt engineering" tricks to fix it, telling the bot * "Please don't lie."*&lt;/p&gt;

&lt;p&gt;The course taught me the real solution: &lt;strong&gt;Tools&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;By giving the Agent access to grounded data—whether it's a Google Search tool or a specific database via the &lt;strong&gt;Model Context Protocol (MCP)&lt;/strong&gt;—we don't have to trust the model's training data. We just trust its reasoning capabilities.&lt;/p&gt;

&lt;p&gt;I realized that we can build systems that look like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="c1"&gt;# The Old Way
&lt;/span&gt;&lt;span class="n"&gt;response&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;model&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;generate&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;What is the weather in Tokyo?&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="c1"&gt;# Result: "I cannot access real-time data."
&lt;/span&gt;
&lt;span class="c1"&gt;# The Agent Way
&lt;/span&gt;&lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="n"&gt;tool_needed&lt;/span&gt; &lt;span class="o"&gt;==&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;weather_api&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
    &lt;span class="n"&gt;data&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;weather_api&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;get&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Tokyo&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
    &lt;span class="n"&gt;final_answer&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;model&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;synthesize&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;data&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="c1"&gt;# Result: "It is currently 12°C in Tokyo."
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Memory: More Than Just Chat History&lt;/strong&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Finally, the third piece of the puzzle was Memory.&lt;/p&gt;

&lt;p&gt;Before the intensive, I thought "memory" just meant sending the last 10 messages back to the bot so it knew what we were talking about. But I learned that context windows are expensive and limited. You can't just feed an entire documentation manual into a prompt every time you want to ask a question.&lt;/p&gt;

&lt;p&gt;The course clarified the difference between:&lt;/p&gt;

&lt;p&gt;Short-term memory: Storing the immediate session details (like a normal chat).&lt;/p&gt;

&lt;p&gt;Long-term memory: Using Vector Stores and RAG (Retrieval-Augmented Generation) to recall information from weeks or months ago.&lt;/p&gt;

&lt;p&gt;This distinction is what turns a one-time interaction into a helpful, long-term assistant that actually "knows" you.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Conclusion: The Future is Agentic&lt;/strong&gt;&lt;/p&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%2Fencrypted-tbn1.gstatic.com%2Flicensed-image%3Fq%3Dtbn%3AANd9GcSuOnRFdlNW7YFApip5EwSebfE3qXoVK0BbIuJqqlvKfhUZ5HkFnHbvW8RJXqo_AE09zbSg-NM91L-9jakZqqXDexW87lkA5JJYStQlrM3Lscq0LIU" 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%2Fencrypted-tbn1.gstatic.com%2Flicensed-image%3Fq%3Dtbn%3AANd9GcSuOnRFdlNW7YFApip5EwSebfE3qXoVK0BbIuJqqlvKfhUZ5HkFnHbvW8RJXqo_AE09zbSg-NM91L-9jakZqqXDexW87lkA5JJYStQlrM3Lscq0LIU" alt="Description of image" width="3861" height="2860"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I walked into this challenge wanting to learn how to write better prompts. I walked out realizing that prompts are just the beginning.&lt;/p&gt;

&lt;p&gt;The future doesn't belong to those who can write the best poem in ChatGPT; it belongs to developers who can architect systems where AI has the right tools to do the job.&lt;/p&gt;

&lt;p&gt;I’m excited to keep building with the Agent Development Kit (ADK). My next goal is to build an agent that can actually manage my Google Calendar based on my emails.&lt;/p&gt;

&lt;p&gt;What was your biggest takeaway from the challenge? Let me know in the comments!&lt;/p&gt;

</description>
      <category>googleaichallenge</category>
      <category>ai</category>
      <category>agents</category>
      <category>devchallenge</category>
    </item>
  </channel>
</rss>
