<?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: TANUJA CHAVAN</title>
    <description>The latest articles on DEV Community by TANUJA CHAVAN (@tanuja_chavan_fb5454d8ae0).</description>
    <link>https://dev.to/tanuja_chavan_fb5454d8ae0</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%2F3655801%2Fdaad0084-d676-4e5f-afec-3a046a2c6acf.png</url>
      <title>DEV Community: TANUJA CHAVAN</title>
      <link>https://dev.to/tanuja_chavan_fb5454d8ae0</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/tanuja_chavan_fb5454d8ae0"/>
    <language>en</language>
    <item>
      <title>Orchestrating Intelligence: A Reflection on Agentic AI</title>
      <dc:creator>TANUJA CHAVAN</dc:creator>
      <pubDate>Fri, 12 Dec 2025 20:56:27 +0000</pubDate>
      <link>https://dev.to/tanuja_chavan_fb5454d8ae0/orchestrating-intelligence-a-reflection-on-agentic-ai-45f3</link>
      <guid>https://dev.to/tanuja_chavan_fb5454d8ae0/orchestrating-intelligence-a-reflection-on-agentic-ai-45f3</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;The &lt;strong&gt;AI Agents&lt;/strong&gt; Intensive course was a transformative journey, shifting my perspective from viewing a Large Language Model (LLM) as a powerful chatbot to seeing it as the Reasoning Engine within a complex, dependable software system. This reframing, supported by the &lt;strong&gt;Agent Development Kit&lt;/strong&gt; (ADK), has fundamentally changed how I approach problem-solving with AI. It was an intensive five-day workshop packed with learning—through both hands-on labs and knowledge-rich whitepapers.&lt;/p&gt;

&lt;h3&gt;
  
  
  My Learning Journey: From Monolith to Modular
&lt;/h3&gt;

&lt;p&gt;My learning journey in the course was defined by a fundamental shift in architecture:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;The Starting Point: An initial reliance on a single, massive prompt for an LLM to handle all tasks (the "&lt;strong&gt;monolithic&lt;/strong&gt;" approach).&lt;/li&gt;
&lt;li&gt;The Turning Point: The realization that reliability comes from specialization and the introduction of the multi-agent system (the "&lt;strong&gt;modular&lt;/strong&gt;" approach).&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjg1a8pjac7o8b16ivljb.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjg1a8pjac7o8b16ivljb.png" alt="Monolithic v/s Modular Approach" width="800" height="436"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This pivot was heavily driven by the hands-on labs, which forced us to experience the failure modes of the monolithic model (e.g., calculation errors, unreliable steps) and the success of a modular, orchestrated one.&lt;/p&gt;

&lt;h3&gt;
  
  
  Key Takeaways and Concepts That Resonated Most
&lt;/h3&gt;

&lt;p&gt;The single concept that resonated most with me was the combination of &lt;em&gt;AgentTool&lt;/em&gt; and &lt;em&gt;BuiltInCodeExecutor&lt;/em&gt; to create a specialized and verifiable &lt;strong&gt;Calculation Agent&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;In traditional LLM development, trusting the model with complex financial or scientific calculations is a huge risk. The ADK approach allows the &lt;strong&gt;primary agent&lt;/strong&gt; to use its reasoning to determine the necessary calculation, but then delegates the execution of that math to a &lt;strong&gt;specialized agent&lt;/strong&gt; that can only output and run code. This distinction between the LLM's &lt;strong&gt;Reasoning&lt;/strong&gt; and a Code Executor's &lt;strong&gt;Precision&lt;/strong&gt; is the key to deploying AI agents in high-compliance, mission-critical environments.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqbu17jg2j9rcr13hnv1t.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqbu17jg2j9rcr13hnv1t.png" alt="BuiltInCodeExecutor" width="800" height="436"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Specialization for Reliability (Day 1 &amp;amp; 2):&lt;/strong&gt; By building small, task-specific agents (e.g., a "ResearchAgent," a "CriticAgent"), we dramatically reduce prompt complexity and tool-use errors.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Orchestration is King (Sequential, Parallel, Loop):&lt;/strong&gt; The ADK's native orchestration tools provided the necessary structure for real-world applications. The SequentialAgent was crucial for enforcing the correct order in our financial pipeline, while the ParallelAgent maximized efficiency by running concurrent analysis.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fhwuanvx2qujpehqhuy79.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fhwuanvx2qujpehqhuy79.png" alt="Orchestration_Pattern" width="800" height="436"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;The Power of External Tools (Day 2):&lt;/strong&gt; The integration of the BuiltInCodeExecutor ensures computational precision—a necessary firewall against LLM "hallucinations" in critical functions.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  How My Understanding of AI Agents Evolved
&lt;/h3&gt;

&lt;p&gt;My understanding has evolved from seeing an AI agent as merely an LLM with access to external services (like Search) to recognizing it as a fully realized, stateful, and modular software entity.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Before:&lt;/strong&gt; Agents were described as having "tools," but the relationship was vague.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;After:&lt;/strong&gt; Agents are defined by their specialized roles, their structured communication via shared state and tools, and their ability to maintain long-term memory using the &lt;em&gt;MemoryBank&lt;/em&gt; (Day 3). This modularity makes them easier to debug, more reliable, and ultimately scalable.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fq6ggnsdr55trdh7ty2x7.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fq6ggnsdr55trdh7ty2x7.png" alt="Agent" width="800" height="436"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Day-wise Learnings
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgrcgfvee3xhejubg4ec8.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgrcgfvee3xhejubg4ec8.png" alt="Day_Wise_Table" width="800" height="403"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Capstone Project: "LoanIntel-Pro"
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;LoanIntel-Pro&lt;/strong&gt; is an intelligent &lt;strong&gt;advisory system&lt;/strong&gt; designed to streamline and automate complex loan application steps. It provides applicants with immediate, precise feedback on their &lt;strong&gt;eligibility&lt;/strong&gt;, &lt;strong&gt;personalized&lt;/strong&gt; loan options, contract risks, and financial calculations, all within a single, reliable workflow. It served as the perfect vehicle to synthesize all the knowledge from the intensive and put my new skills into practice.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcciy5gvihihylz8f43g4.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcciy5gvihihylz8f43g4.png" alt="Agent_Mindmap" width="800" height="243"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Project Value and Learning Takeaway
&lt;/h4&gt;

&lt;p&gt;LoanIntel-Pro provides a highly automated, reliable, and transparent solution by orchestrating specialized agents:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Guaranteed Accuracy:&lt;/strong&gt; All critical math is delegated to a specialized agent using the BuiltInCodeExecutor, guaranteeing precise financial figures.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Enhanced Efficiency:&lt;/strong&gt; Document review is sped up dramatically by running four specialist sub-agents (Parallel Agents) simultaneously.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Personalized Advice:&lt;/strong&gt; Custom memory functions are integrated to retrieve and store application history, allowing the final report to offer comparative and contextual feedback.&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  Agent Architecture
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4exdhzaxl7ohqctjr49n.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4exdhzaxl7ohqctjr49n.png" alt="Agent_Architecture" width="800" height="529"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwlvf53tf6raorjus39ec.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwlvf53tf6raorjus39ec.png" alt="Agents" width="800" height="223"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Agent Responsibilities
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fubmwsuetym635awkrzui.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fubmwsuetym635awkrzui.png" alt="Responsibilities" width="800" height="309"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The ultimate takeaway from this Intensive is that the future of AI lies in trust by design. Through the structured orchestration of the ADK—using &lt;strong&gt;Sequential&lt;/strong&gt;, &lt;strong&gt;Parallel&lt;/strong&gt;, and Code-Executing agents—LoanIntel-Pro demonstrates that AI applications can reliably govern &lt;strong&gt;complex workflows&lt;/strong&gt; and critical calculations. This capability moves beyond theoretical proof-of-concept; it establishes the foundation for building the next generation of &lt;strong&gt;scalable&lt;/strong&gt;, &lt;strong&gt;transparent&lt;/strong&gt;, and &lt;strong&gt;regulatory-compliant&lt;/strong&gt; AI systems.&lt;/p&gt;

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