<?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: 23501A4212 BOYAPATI NISSITA SREE</title>
    <description>The latest articles on DEV Community by 23501A4212 BOYAPATI NISSITA SREE (@23501a4212_boyapatinissi).</description>
    <link>https://dev.to/23501a4212_boyapatinissi</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%2F3646467%2Fe7926a28-8c75-4399-9f11-1453423a19a6.png</url>
      <title>DEV Community: 23501A4212 BOYAPATI NISSITA SREE</title>
      <link>https://dev.to/23501a4212_boyapatinissi</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/23501a4212_boyapatinissi"/>
    <language>en</language>
    <item>
      <title>From Curiosity to Confidence: My Learning Journey in the Google AI Agents Intensive</title>
      <dc:creator>23501A4212 BOYAPATI NISSITA SREE</dc:creator>
      <pubDate>Thu, 04 Dec 2025 14:24:43 +0000</pubDate>
      <link>https://dev.to/23501a4212_boyapatinissi/from-curiosity-to-confidence-my-learning-journey-in-the-google-ai-agents-intensive-3o20</link>
      <guid>https://dev.to/23501a4212_boyapatinissi/from-curiosity-to-confidence-my-learning-journey-in-the-google-ai-agents-intensive-3o20</guid>
      <description>&lt;p&gt;&lt;em&gt;This is a submission for the &lt;a href="https://dev.to/challenges/googlekagglechallenge"&gt;Google AI Agents Writing Challenge&lt;/a&gt;: Learning Reflections&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  🚀 Introduction
&lt;/h2&gt;

&lt;p&gt;When I signed up for the &lt;strong&gt;5-Day AI Agents Intensive Course with Google and Kaggle&lt;/strong&gt;, I knew I was entering the next chapter in AI development—one where models don’t just &lt;em&gt;respond&lt;/em&gt;, but &lt;em&gt;act&lt;/em&gt;, &lt;em&gt;reason&lt;/em&gt;, and &lt;em&gt;collaborate&lt;/em&gt; as autonomous systems.  &lt;/p&gt;

&lt;p&gt;Over the past few days, I went from being curious about agentic workflows to actually building one myself. This intensive wasn’t just content—it was &lt;em&gt;architecture&lt;/em&gt;, &lt;em&gt;hands-on exploration&lt;/em&gt;, and a community-driven learning experience that reshaped how I view AI systems.&lt;/p&gt;

&lt;h2&gt;
  
  
  🧠 What I Learned
&lt;/h2&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;📌 Day 1 - What Makes an Agent?&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;The first big shift was understanding the distinction between a &lt;strong&gt;large language model (LLM)&lt;/strong&gt; and an &lt;strong&gt;AI agent&lt;/strong&gt;.&lt;br&gt;&lt;br&gt;
LLMs generate responses.&lt;br&gt;&lt;br&gt;
Agents take &lt;strong&gt;actions&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Learning agent characteristics—reasoning loops, autonomy, environment interaction, and goal-driven design—helped clarify why agents are the future of applied AI.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;🔧 Day 2 - Tools &amp;amp; MCP&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;This was the first time I saw how agents use external APIs and tools, not just generate language.  &lt;/p&gt;

&lt;p&gt;The highlight: discovering the &lt;strong&gt;Model Context Protocol (MCP)&lt;/strong&gt; and how it enables interoperability. Instead of building one-off integrations, MCP acts as a universal handshake between tools and AI agents.&lt;/p&gt;

&lt;p&gt;This made agent design feel modular, scalable, and &lt;em&gt;real-world ready&lt;/em&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;🧩 Day 3 - Context Engineering &amp;amp; Memory&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;This day changed everything. I realized that without memory, an agent is just a chatbot repeating stateless queries.&lt;/p&gt;

&lt;p&gt;Learning the difference between:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Short-term memory&lt;/strong&gt; (session-based)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Long-term memory&lt;/strong&gt; (persistent storage)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Context windows&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Retrieval-augmented generation (RAG)&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;…helped me think more like an AI system designer instead of just a user.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;📏 Day 4 - Agent Quality &amp;amp; Evaluation&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;Building is fun—but evaluating is where true engineering begins.&lt;/p&gt;

&lt;p&gt;Metrics like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;task completion rate
&lt;/li&gt;
&lt;li&gt;reasoning correctness
&lt;/li&gt;
&lt;li&gt;latency
&lt;/li&gt;
&lt;li&gt;hallucination rate
&lt;/li&gt;
&lt;li&gt;trace logs and observability
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;…made it clear: multi-step reasoning systems need continuous improvement, not just deployment.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;🌍 Day 5 - From Prototype to Production&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;This was a full-circle moment: seeing how everything connects—deployment pipelines, API exposure, scaling, and even &lt;strong&gt;Agent-to-Agent (A2A) communication&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The takeaway?&lt;br&gt;&lt;br&gt;
Agents are not standalone tools—they are &lt;em&gt;ecosystems&lt;/em&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  🧪 Capstone Reflection
&lt;/h2&gt;

&lt;p&gt;For my capstone, I built a simple but surprisingly powerful task agent: a &lt;strong&gt;web-querying assistant with memory and reasoning loops&lt;/strong&gt;.  &lt;/p&gt;

&lt;p&gt;What I learned from building it:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Tools transform capability.&lt;/li&gt;
&lt;li&gt;Memory transforms usefulness.&lt;/li&gt;
&lt;li&gt;Evaluation transforms reliability.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Even a basic agent can feel &lt;strong&gt;intelligent&lt;/strong&gt; once these layers work together.&lt;/p&gt;

&lt;h2&gt;
  
  
  🌟 Final Reflections
&lt;/h2&gt;

&lt;p&gt;Before this course, I thought agents were just advanced chatbots.&lt;br&gt;&lt;br&gt;
Now, I understand they are &lt;strong&gt;autonomous systems capable of reasoning, planning, and acting with purpose&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;This intensive gave me:&lt;/p&gt;

&lt;p&gt;✔ A framework&lt;br&gt;&lt;br&gt;
✔ A mindset&lt;br&gt;&lt;br&gt;
✔ A starting point to build real AI systems&lt;/p&gt;

&lt;p&gt;And most importantly-confidence.&lt;/p&gt;

&lt;h2&gt;
  
  
  🙌 Thank You
&lt;/h2&gt;

&lt;p&gt;A huge thanks to Google, Kaggle, and the global learner community for making advanced AI education accessible, practical, and exciting.&lt;/p&gt;

&lt;p&gt;This isn’t just a course-it's a roadmap to the future of AI.&lt;/p&gt;

&lt;h1&gt;
  
  
  genai #generativeai
&lt;/h1&gt;

&lt;h1&gt;
  
  
  google #kaggle #intensiveworkshop #ai #agents #devchallenge
&lt;/h1&gt;

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