<?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: Nikhitha Sivakumar</title>
    <description>The latest articles on DEV Community by Nikhitha Sivakumar (@nikhitha_sivakumar_c108e5).</description>
    <link>https://dev.to/nikhitha_sivakumar_c108e5</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%2F3645814%2F74fd71eb-9f61-403e-8ea9-9a4f658bfac8.jpg</url>
      <title>DEV Community: Nikhitha Sivakumar</title>
      <link>https://dev.to/nikhitha_sivakumar_c108e5</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nikhitha_sivakumar_c108e5"/>
    <language>en</language>
    <item>
      <title>Mastering AI Agents: Lessons from the Google x Kaggle Intensive &amp; My Capstone</title>
      <dc:creator>Nikhitha Sivakumar</dc:creator>
      <pubDate>Thu, 04 Dec 2025 09:42:52 +0000</pubDate>
      <link>https://dev.to/nikhitha_sivakumar_c108e5/mastering-ai-agents-lessons-from-the-google-x-kaggle-intensive-my-capstone-855</link>
      <guid>https://dev.to/nikhitha_sivakumar_c108e5/mastering-ai-agents-lessons-from-the-google-x-kaggle-intensive-my-capstone-855</guid>
      <description>&lt;p&gt;Over the last week, I’ve had one of the most eye-opening learning experiences thanks to the Google x Kaggle 5-Day AI Agents Intensive. Going into the course, I had a very traditional understanding of Large Language Models: powerful tools that generate text, write code, summarize documents, and answer questions.&lt;/p&gt;

&lt;p&gt;By the end of the intensive, that view felt almost outdated.&lt;br&gt;
Once you give an LLM tools and a structured reasoning loop, it stops behaving like a chatbot — and starts acting like an Agent. A system that observes, thinks, decides, and takes action.&lt;/p&gt;

&lt;p&gt;This post is my reflection on what I learned, the ideas that stuck with me, and the capstone project I built: a Market Sentiment Monitoring and Alert Agent.&lt;/p&gt;

&lt;p&gt;🌟 The Turning Point: Understanding Tools + Reasoning&lt;/p&gt;

&lt;p&gt;The biggest “aha!” moment for me was understanding how agents use ReAct loops — the combination of Reasoning + Acting.&lt;/p&gt;

&lt;p&gt;Before the course, if I asked an LLM,&lt;/p&gt;

&lt;p&gt;“What’s the current market sentiment?”&lt;/p&gt;

&lt;p&gt;it would give a general response based on whatever it already knew.&lt;br&gt;
After the course, my agent responds more like a researcher:&lt;/p&gt;

&lt;p&gt;Thought: “I should look up the latest news for these tickers.”&lt;br&gt;
Action: Calls a search tool or news API.&lt;br&gt;
Observation: Reads the actual headlines.&lt;br&gt;
Reasoning: “Most of these look bearish — the sentiment is negative.”&lt;br&gt;
Final Answer: Sends an alert with real data.&lt;/p&gt;

&lt;p&gt;That shift — from “guessing” to “checking” — was huge.&lt;br&gt;
The moment you let the model use tools, you stop getting hallucinations and start getting grounded, reliable output.&lt;/p&gt;

&lt;p&gt;📈 My Capstone Project: Market Sentiment Monitoring &amp;amp; Alert Agent&lt;/p&gt;

&lt;p&gt;For my final project, I wanted to solve a problem I’ve personally struggled with: trying to stay on top of financial news in real time.&lt;/p&gt;

&lt;p&gt;With markets moving fast, it’s impossible to read everything.&lt;br&gt;
But an agent can.&lt;/p&gt;

&lt;p&gt;What the Agent Does&lt;/p&gt;

&lt;p&gt;My agent continuously:&lt;/p&gt;

&lt;p&gt;Monitors live financial news&lt;/p&gt;

&lt;p&gt;Analyzes headlines for sentiment using Gemini&lt;/p&gt;

&lt;p&gt;Assigns a numerical score to each article&lt;/p&gt;

&lt;p&gt;Alerts me if overall sentiment shifts sharply into Fear (bearish) or Greed (bullish)&lt;/p&gt;

&lt;p&gt;It essentially serves as a real-time “market mood detector.”&lt;/p&gt;

&lt;p&gt;How It Works Behind the Scenes&lt;/p&gt;

&lt;p&gt;🧠 The Brain: Google Gemini (via Vertex AI / Gemini API)&lt;br&gt;
🔧 The Tools:&lt;/p&gt;

&lt;p&gt;Python functions to fetch live market data&lt;/p&gt;

&lt;p&gt;Search integrations to gather fresh headlines&lt;/p&gt;

&lt;p&gt;Sentiment scoring logic&lt;/p&gt;

&lt;p&gt;⚙️ The Reasoning Layer:&lt;br&gt;
The agent isn’t just scanning keywords — it understands context.&lt;br&gt;
For example:&lt;/p&gt;

&lt;p&gt;“Loss” could mean stock price loss&lt;/p&gt;

&lt;p&gt;Or it could mean “data loss,” which shouldn’t affect market sentiment&lt;/p&gt;

&lt;p&gt;That sort of nuance is what made the project feel real and meaningful.&lt;/p&gt;

&lt;p&gt;🛠️ Challenges &amp;amp; Lessons Learned&lt;/p&gt;

&lt;p&gt;Like any good project, this one came with its own learning curve.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Grounding Is Everything&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Hallucinations drop dramatically when you force the agent to rely on real-time tools.&lt;br&gt;
Google Search as a tool was a game changer — it made the system factual, not speculative.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Memory Needs Limits&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;During the course, we talked a lot about memory management.&lt;br&gt;
I saw firsthand why it matters:&lt;br&gt;
You don’t want your agent using outdated news or carrying irrelevant info across runs.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Evaluation Isn’t Optional&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Day 4 emphasized the importance of actually evaluating agent performance instead of trusting your gut.&lt;br&gt;
I found myself comparing the agent’s sentiment scores with my own assessments and adjusting the prompts until it felt right.&lt;/p&gt;

&lt;p&gt;🎯 Final Thoughts&lt;/p&gt;

&lt;p&gt;This intensive may have only lasted five days, but it fundamentally changed how I think about AI. I no longer see LLMs as passive tools — I see them as active systems capable of handling workflows end-to-end.&lt;/p&gt;

&lt;p&gt;I plan to keep improving my Market Sentiment Agent, and eventually, I want it to:&lt;/p&gt;

&lt;p&gt;issue more granular alerts&lt;/p&gt;

&lt;p&gt;provide analysis across sectors&lt;/p&gt;

&lt;p&gt;maybe even recommend portfolio adjustments (in a safe, simulated environment!)&lt;/p&gt;

&lt;p&gt;If you’re curious about agentic AI, this is the best time to jump in.&lt;br&gt;
The distance between “talking to AI” and “having AI work alongside you” is shrinking faster than we realize.&lt;/p&gt;

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