<?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: Sandeep Nani</title>
    <description>The latest articles on DEV Community by Sandeep Nani (@sandeep_nani_af1b167889e9).</description>
    <link>https://dev.to/sandeep_nani_af1b167889e9</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%2F3645585%2Fcf0e2c77-56ce-4710-8238-ffa71682c510.jpg</url>
      <title>DEV Community: Sandeep Nani</title>
      <link>https://dev.to/sandeep_nani_af1b167889e9</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sandeep_nani_af1b167889e9"/>
    <language>en</language>
    <item>
      <title>My Experience with Google-Kaggle AI agents Intensive Course</title>
      <dc:creator>Sandeep Nani</dc:creator>
      <pubDate>Thu, 04 Dec 2025 20:08:11 +0000</pubDate>
      <link>https://dev.to/sandeep_nani_af1b167889e9/my-experience-with-google-kaggle-ai-agents-intensive-course-1p0m</link>
      <guid>https://dev.to/sandeep_nani_af1b167889e9/my-experience-with-google-kaggle-ai-agents-intensive-course-1p0m</guid>
      <description>&lt;p&gt;Recently I joined in the 5-Day AI Agents Intensive mostly out of curiosity. Everywhere I looked, people were talking about “Agents” but I felt like I only had a surface-level understanding of what that actually know it. I figured this course would either clear things up — or confuse me more. Luckily, it did the first one.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;My Learning skills&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1.What an Agent Actually Is&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Before the course, I assumed agents were basically chatbots with extra steps.&lt;br&gt;
Turns out there’s a whole structure behind them.&lt;/p&gt;

&lt;p&gt;They’ve got:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;something that plans,&lt;/li&gt;
&lt;li&gt;tools they can use,&lt;/li&gt;
&lt;li&gt;a bit of memory,&lt;/li&gt;
&lt;li&gt;and a loop that lets them check their own work.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Once I saw it in action during the labs, it finally clicked. It’s not magic. It’s more like building a small system that happens to think with a model.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Multi-Agent Systems Are Logical&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;One of the sessions went into how multiple agents can work together.&lt;br&gt;
I didn’t expect this part to be interesting,but it kind of changed how I think about complex tasks.Instead of forcing one model to juggle everything,you split the work:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;one plans&lt;/li&gt;
&lt;li&gt;one does the steps&lt;/li&gt;
&lt;li&gt;one checks things&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It felt oddly similar to how actual team projects work.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Tools Are the Real Power&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This was my biggest “ohhh, I get it now” moment.&lt;/p&gt;

&lt;p&gt;Agents get way more useful once they can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;run a bit of code,&lt;/li&gt;
&lt;li&gt;call an API,&lt;/li&gt;
&lt;li&gt;look something up,&lt;/li&gt;
&lt;li&gt;read a file.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That’s when it stops feeling like a chatbot and starts feeling like software that can help you build things or automate tasks.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;My Capstone Project&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For my project, I built a simple goal-planning agent. You gave a task, and it would break it down into smaller steps and figure out what was needed.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why I choose it:&lt;/strong&gt;&lt;br&gt;
I’m one of those people who writes lists for everything, so this feels natural.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What went well:&lt;/strong&gt;&lt;br&gt;
The planning part actually worked better than I expected. Separating the planner and executor helped keep it organized.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What didn’t:&lt;/strong&gt;&lt;br&gt;
The agent struggled with vague goals and also I had to change the tool definitions a lot because the agent kept calling them wrong.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What I learned:&lt;/strong&gt;&lt;br&gt;
Building an agent is half creativity and half debugging. Sometimes 80% debugging.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How My Understanding Changed&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Before:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;“Agents are just advanced chatbots.”&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;After:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;“Agents are basically small systems powered by an AI model that uses tools, memory, and planning.”&lt;/p&gt;

&lt;p&gt;It really changed how I think about AI projects. now I understand why people say agents are the next big step.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Final Thoughts&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Overall, I’m really happy I learned the course.It gave me a clearer picture of how agents actually work and how to build something practical with them. I’m planning to keep experimenting, especially with multi-agent workflows, because that part was really excited.&lt;/p&gt;

</description>
      <category>devchallenge</category>
      <category>googlekagglechallenge</category>
      <category>ai</category>
      <category>aiagents</category>
    </item>
  </channel>
</rss>
