<?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: Gaddam Hrishik Reddy</title>
    <description>The latest articles on DEV Community by Gaddam Hrishik Reddy (@hrishik29).</description>
    <link>https://dev.to/hrishik29</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%2F2440792%2F986ee4b8-a554-4929-a3d4-3c4bfded53a6.png</url>
      <title>DEV Community: Gaddam Hrishik Reddy</title>
      <link>https://dev.to/hrishik29</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/hrishik29"/>
    <language>en</language>
    <item>
      <title>How the Google AI Agents Intensive Course Changed the Way I Think About AI</title>
      <dc:creator>Gaddam Hrishik Reddy</dc:creator>
      <pubDate>Wed, 19 Nov 2025 16:01:54 +0000</pubDate>
      <link>https://dev.to/hrishik29/how-the-google-ai-agents-intensive-course-changed-the-way-i-think-about-ai-3976</link>
      <guid>https://dev.to/hrishik29/how-the-google-ai-agents-intensive-course-changed-the-way-i-think-about-ai-3976</guid>
      <description>&lt;p&gt;When I registered for the 5-Day AI Agents Intensive Course by Google and Kaggle, I honestly didn’t know what to expect.&lt;br&gt;
I had heard “agents” everywhere on the internet, but I wasn’t sure if it was just a trend or if there was something actually new behind it. I joined mainly out of curiosity, not confidence.&lt;/p&gt;

&lt;p&gt;After completing the course, I can say this clearly:&lt;br&gt;
my entire understanding of how AI works—and what it can do—has changed.&lt;/p&gt;

&lt;p&gt;This post is my reflection on what I learned, what surprised me, and how working with agents shifted my perspective.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. The Moment It Clicked: “An LLM is not an agent.”&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The first key takeaway for me was something very simple but very important:&lt;/p&gt;

&lt;p&gt;An AI model gives answers.&lt;br&gt;
An AI agent gets things done.&lt;/p&gt;

&lt;p&gt;Until this course, I used AI like a smarter search engine:&lt;/p&gt;

&lt;p&gt;Ask a question → read answer&lt;/p&gt;

&lt;p&gt;Ask again if needed&lt;/p&gt;

&lt;p&gt;But the course showed me that agents are completely different.&lt;br&gt;
They don’t stop at generating text.&lt;br&gt;
They plan, reason, take actions, and use tools to complete tasks the way a human would.&lt;/p&gt;

&lt;p&gt;This single idea made everything else in the course fall into place.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Architectures Broken Down in a Beginner-Friendly Way&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Another thing I liked was that the course didn’t overload us with theory.&lt;/p&gt;

&lt;p&gt;Instead, it broke agent architecture into simple parts:&lt;/p&gt;

&lt;p&gt;Planner: decides the next step&lt;/p&gt;

&lt;p&gt;Executor: performs the step&lt;/p&gt;

&lt;p&gt;Memory: remembers context&lt;/p&gt;

&lt;p&gt;Tools: extend capabilities&lt;/p&gt;

&lt;p&gt;Loop: keeps improving until the task is done&lt;/p&gt;

&lt;p&gt;Seeing how these pieces fit together made agents feel less like magic and more like a clear system.&lt;br&gt;
I finally understood why agents are more powerful than plain LLM prompts.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Tool Use Was the Most Eye-Opening Part&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;For me, the labs on tool usage were the highlight.&lt;/p&gt;

&lt;p&gt;Watching the agent decide on its own:&lt;/p&gt;

&lt;p&gt;when to call a function&lt;/p&gt;

&lt;p&gt;when to use a tool&lt;/p&gt;

&lt;p&gt;when to search&lt;/p&gt;

&lt;p&gt;when to calculate&lt;/p&gt;

&lt;p&gt;…felt like watching the future happen in front of me.&lt;/p&gt;

&lt;p&gt;Before this, I thought agents simply followed instructions.&lt;br&gt;
But once I saw the agent choose the right tool depending on the situation, it felt like a turning point.&lt;/p&gt;

&lt;p&gt;This was the moment I fully realized why “agentic AI” is such a big deal.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. Hands-On Labs: Small Steps That Gave Big Confidence&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I really appreciated that the course wasn’t just theory.&lt;/p&gt;

&lt;p&gt;Some labs were simple, but they were exactly what I needed.&lt;br&gt;
They helped me understand:&lt;/p&gt;

&lt;p&gt;creating a basic agent loop&lt;/p&gt;

&lt;p&gt;enabling and using memory&lt;/p&gt;

&lt;p&gt;adding tools&lt;/p&gt;

&lt;p&gt;debugging agent reasoning&lt;/p&gt;

&lt;p&gt;understanding failures and adjusting prompts&lt;/p&gt;

&lt;p&gt;These labs removed the fear I had earlier about building agents.&lt;br&gt;
I went from thinking it was “too advanced” to actually enjoying experimenting with different setups.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;5. My Capstone Project: A Small Build That Felt Big to Me&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;For my capstone, I created a simple task-planning assistant agent.&lt;/p&gt;

&lt;p&gt;It wasn’t fancy, but it could:&lt;/p&gt;

&lt;p&gt;read a description of a task&lt;/p&gt;

&lt;p&gt;break it into steps&lt;/p&gt;

&lt;p&gt;prioritize them&lt;/p&gt;

&lt;p&gt;summarize what needs to be done&lt;/p&gt;

&lt;p&gt;This small project taught me more than any lecture could.&lt;br&gt;
I finally saw how planning + memory + tool use work together in a real agent.&lt;/p&gt;

&lt;p&gt;It made the concept real for me, not just theoretical.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;6. How My Understanding of AI Agents Changed&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Before the course:&lt;/p&gt;

&lt;p&gt;I thought agents were extremely complicated.&lt;/p&gt;

&lt;p&gt;I believed only advanced researchers could build them.&lt;/p&gt;

&lt;p&gt;I assumed it required huge computational power.&lt;/p&gt;

&lt;p&gt;After the course:&lt;/p&gt;

&lt;p&gt;I understood the architecture clearly.&lt;/p&gt;

&lt;p&gt;I realized that simple agents are easy to build.&lt;/p&gt;

&lt;p&gt;I learned how to design and debug agent loops.&lt;/p&gt;

&lt;p&gt;I gained confidence to experiment with multi-agent workflows.&lt;/p&gt;

&lt;p&gt;I stopped thinking of AI as just “prompt in → answer out.”&lt;/p&gt;

&lt;p&gt;The biggest change was this:&lt;br&gt;
I started thinking in terms of workflows, not just prompts.&lt;/p&gt;

&lt;p&gt;That shift alone made the entire course worth it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;7. Final Reflections&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This 5-day program was short, but it had a strong impact on me.&lt;br&gt;
It gave me clarity in a space that usually feels confusing and fast-changing.&lt;/p&gt;

&lt;p&gt;I appreciated that Google and Kaggle kept the course practical and simple.&lt;br&gt;
There was no unnecessary complexity, no overwhelming theory—just the essential concepts and hands-on labs that actually make sense.&lt;/p&gt;

&lt;p&gt;Now, when I read about agents or see new frameworks being released, I understand what’s happening under the hood.&lt;br&gt;
And more importantly, I feel capable of building things on my own.&lt;/p&gt;

&lt;p&gt;If someone asks me what I gained from this course, I would say one thing:&lt;/p&gt;

&lt;p&gt;It gave me the confidence to think like an agent-builder, not just an AI user.&lt;/p&gt;

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