<?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: Anjali</title>
    <description>The latest articles on Forem by Anjali (@anjali_2346789).</description>
    <link>https://forem.com/anjali_2346789</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%2F3646281%2Ffdb9ad42-4eec-40f0-8715-ea1d20d8ac9f.png</url>
      <title>Forem: Anjali</title>
      <link>https://forem.com/anjali_2346789</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/anjali_2346789"/>
    <language>en</language>
    <item>
      <title>From Models to Autonomous Intelligence: My Learning Journey Through the 5-Day AI Agents Intensive</title>
      <dc:creator>Anjali</dc:creator>
      <pubDate>Thu, 04 Dec 2025 12:49:35 +0000</pubDate>
      <link>https://forem.com/anjali_2346789/from-models-to-autonomous-intelligence-my-learning-journey-through-the-5-day-ai-agents-intensive-1lg8</link>
      <guid>https://forem.com/anjali_2346789/from-models-to-autonomous-intelligence-my-learning-journey-through-the-5-day-ai-agents-intensive-1lg8</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;p&gt;When I registered for the 5-Day AI Agents Intensive course by Google &amp;amp; Kaggle, I expected another series on prompt engineering and basic agent frameworks. What I experienced instead was a complete shift in mindset — from thinking of AI as a conversational assistant to seeing it as a dynamic, autonomous problem-solving system that can plan, act, and learn.&lt;/p&gt;

&lt;p&gt;Over five intense days, the course rewired the way I think about intelligent systems and opened the door to designing real agents, not chatbots. Here are my biggest reflections and learnings from the experience.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🧠 Day 1 — Understanding What an AI Agent Really Is&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The most profound realization on Day 1 was that an AI agent is not just an LLM responding to prompts. Instead, it is:&lt;/p&gt;

&lt;p&gt;Model (brain) + Tools (hands) + Orchestration (nervous system) + Deployment (body)&lt;/p&gt;

&lt;p&gt;And it operates in a continuous loop:&lt;/p&gt;

&lt;p&gt;Get Mission → Scan Scene → Think → Act → Observe &amp;amp; Learn&lt;/p&gt;

&lt;p&gt;This shifted my mental model completely—from passively generating responses to actively solving goals with iterative reasoning and action execution.&lt;/p&gt;

&lt;p&gt;The taxonomy of agent evolution resonated deeply with me:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Level 0 → basic LM&lt;/li&gt;
&lt;li&gt;Level 1 → connected problem-solver&lt;/li&gt;
&lt;li&gt;Level 2 → strategic planner&lt;/li&gt;
&lt;li&gt;Level 3 → collaborative multi-agent system&lt;/li&gt;
&lt;li&gt;Level 4 → self-evolving system&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is where AI is headed, and it’s exciting to be learning now.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🛠️ Day 2 — Tools Are the Real Power&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;One of the course’s most important concepts was understanding tools as the mechanism that gives agents real-world capabilities.&lt;/p&gt;

&lt;p&gt;Tools = the way agents retrieve information and perform actions.&lt;/p&gt;

&lt;p&gt;Instead of trying to make the model memorize everything, we let it decide which tool to use, when, and why. Built-in tools (Search, Code Execution, URL Context) + custom tools + agent-as-tools changed how I design systems.&lt;/p&gt;

&lt;p&gt;Learning about MCP (Model Context Protocol) and A2A (Agent-to-Agent) communication completely reframed my thinking about agent interoperability and enterprise scale.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🧠 Day 3 — Context Engineering &amp;amp; Memory&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This day was a turning point: Prompt engineering is old. Context engineering is the future.&lt;/p&gt;

&lt;p&gt;LLMs are stateless. Agents aren’t.&lt;br&gt;
That difference is unlocked through sessions and memory:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Session → working context for a single conversation&lt;/li&gt;
&lt;li&gt;Memory → consolidated long-term knowledge that persists&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I loved the analogy from the course:&lt;/p&gt;

&lt;p&gt;Session = workbench&lt;br&gt;
Memory = organized filing cabinet&lt;/p&gt;

&lt;p&gt;The memory lifecycle (Extraction → Consolidation → Retrieval → Update) helped me understand personalization and stability at scale.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;📈 Day 4 — Quality: The Hardest Part of Agents&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Traditional QA doesn’t work for agentic systems because agents are non-deterministic.&lt;br&gt;
The final answer is not enough — what matters is the trajectory.&lt;/p&gt;

&lt;p&gt;Logs, Traces, Metrics became the “Three Pillars of Observability.”&lt;br&gt;
Understanding how tracing exposes the reasoning path was an aha moment for me.&lt;/p&gt;

&lt;p&gt;The Agent Quality Flywheel helped me appreciate the need for a continuous evaluation loop instead of one-time testing.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🚀 Day 5 — Prototype to Production&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This day grounded everything in real engineering. The biggest lesson:&lt;/p&gt;

&lt;p&gt;Building an agent is easy. Trusting it in production is hard.&lt;/p&gt;

&lt;p&gt;Why?&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;unpredictable cost &amp;amp; latency&lt;/li&gt;
&lt;li&gt;safety &amp;amp; guardrails&lt;/li&gt;
&lt;li&gt;evaluation-gated deployment&lt;/li&gt;
&lt;li&gt;state &amp;amp; memory consistency&lt;/li&gt;
&lt;li&gt;tool reliability&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I learned how CI/CD pipelines for agents, canary rollouts, and AgentOps enable real-world deployment.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;✨ My Capstone Project: StudyCopilot&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;As part of the course, I built StudyCopilot, a context-aware AI study assistant that:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Helps learners plan study goals with calendar integration&lt;/li&gt;
&lt;li&gt;Generates personalized quizzes from uploaded notes or yesterday’s learning&lt;/li&gt;
&lt;li&gt;Creates interview preparation questions based on JD&lt;/li&gt;
&lt;li&gt;Uses multi-agent architecture for research, quizzes, interview prep, and scheduling&lt;/li&gt;
&lt;li&gt;Uses RAG + memory to deliver personalized responses&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Key Engineering Learnings:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Tool orchestration matters more than model&lt;/li&gt;
&lt;li&gt;Memory transforms an agent from reactive to personalized&lt;/li&gt;
&lt;li&gt;Observability drastically improves agent debugging&lt;/li&gt;
&lt;li&gt;Multi-agent collaboration unlocks modular intelligence&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This project was the moment I experienced the course concepts in action, beyond theory.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🎯 How My Understanding of AI Agents Evolved&lt;/strong&gt;&lt;/p&gt;

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

&lt;ul&gt;
&lt;li&gt;I believed AI was primarily a chatbot interface driven by prompts.&lt;/li&gt;
&lt;li&gt;My focus was mostly on improving model quality and response accuracy.&lt;/li&gt;
&lt;li&gt;I assumed performance was defined only by correctness or accuracy of the final output.&lt;/li&gt;
&lt;li&gt;I worked with single-model systems.&lt;/li&gt;
&lt;/ul&gt;

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

&lt;ul&gt;
&lt;li&gt;I now understand that AI agents are autonomous problem-solvers capable of multi-step reasoning and goal-directed planning.&lt;/li&gt;
&lt;li&gt;My focus has shifted to the agentic loop — Think → Act → Observe — and context orchestration as the core of reliability.&lt;/li&gt;
&lt;li&gt;I now evaluate agents based on reasoning trajectory, decision path quality, and robustness, not just final answer accuracy.&lt;/li&gt;
&lt;li&gt;I’m now designing collaborative multi-agent systems where specialized agents communicate and coordinate.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;🙏 Final Reflection&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This course has been one of the most transformative learning experiences in my AI journey. It didn’t just teach concepts — it taught a new way of thinking about autonomous systems, real-world engineering, and the future of intelligent software.&lt;/p&gt;

&lt;p&gt;I’m grateful to the Google AI team &amp;amp; Kaggle for this experience, the community discussions, and the opportunity to contribute.&lt;/p&gt;

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