<?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: Tayyaba Asif</title>
    <description>The latest articles on DEV Community by Tayyaba Asif (@tayyabachaudhury).</description>
    <link>https://dev.to/tayyabachaudhury</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%2F3917953%2Fa6df0f61-ce0f-479e-9f78-9cfb8d84afa1.jpeg</url>
      <title>DEV Community: Tayyaba Asif</title>
      <link>https://dev.to/tayyabachaudhury</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/tayyabachaudhury"/>
    <language>en</language>
    <item>
      <title>From Agentic AI to Adaptive A*: What Modern AI Research Taught Me About Intelligent Systems</title>
      <dc:creator>Tayyaba Asif</dc:creator>
      <pubDate>Thu, 07 May 2026 12:20:06 +0000</pubDate>
      <link>https://dev.to/tayyabachaudhury/from-agentic-ai-to-adaptive-a-what-modern-ai-research-taught-me-about-intelligent-systems-4gm7</link>
      <guid>https://dev.to/tayyabachaudhury/from-agentic-ai-to-adaptive-a-what-modern-ai-research-taught-me-about-intelligent-systems-4gm7</guid>
      <description>&lt;p&gt;Artificial Intelligence is evolving rapidly, especially in the fields of autonomous agents and intelligent search systems. As part of my AI coursework, I explored two recent research papers that connect strongly with the concepts we studied in class such as intelligent agents, search algorithms, optimization, and decision making.&lt;/p&gt;

&lt;p&gt;The two papers I selected were:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;“The Rise of Agentic AI: A Review of Definitions, Frameworks, and Challenges” (2025)&lt;/li&gt;
&lt;li&gt;“Research on the A* Algorithm Based on Adaptive Weights” (2025)&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;To better understand these papers, I used Google NotebookLM to summarize difficult sections, explain technical terminology, and compare the papers with classroom concepts. This experience helped me realize how theoretical AI concepts are directly connected to real-world intelligent systems.&lt;/p&gt;




&lt;p&gt;Paper 1 — The Rise of Agentic AI&lt;/p&gt;

&lt;p&gt;The first paper focuses on Agentic AI, which refers to AI systems capable of acting autonomously with minimal human supervision. Unlike traditional AI systems that simply respond to commands, agentic AI systems can plan, reason, remember information, and make independent decisions.&lt;/p&gt;

&lt;p&gt;The paper explains how modern AI agents combine several important components:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Memory systems&lt;/li&gt;
&lt;li&gt;Planning modules&lt;/li&gt;
&lt;li&gt;Decision-making strategies&lt;/li&gt;
&lt;li&gt;Tool usage&lt;/li&gt;
&lt;li&gt;Multi-agent collaboration&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This directly relates to the concept of intelligent agents discussed in our AI course. In class, we studied different types of agents such as reflex agents, goal-based agents, utility-based agents, and learning agents. Agentic AI can be seen as an advanced form of learning and utility-based agents because these systems continuously adapt while optimizing goals.&lt;/p&gt;

&lt;p&gt;One interesting idea discussed in the paper is the rise of multi-agent collaboration. Instead of a single AI system performing all tasks, multiple specialized agents cooperate with each other. This reminded me of disaster rescue robots where different robots communicate and coordinate rescue operations.&lt;/p&gt;

&lt;p&gt;The paper also discusses challenges in agentic AI, including:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Safety concerns&lt;/li&gt;
&lt;li&gt;Hallucinations&lt;/li&gt;
&lt;li&gt;Memory limitations&lt;/li&gt;
&lt;li&gt;Long-term planning issues&lt;/li&gt;
&lt;li&gt;Ethical risks&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I found this section particularly interesting because it shows that modern AI is not only about intelligence but also about reliability and responsibility.&lt;/p&gt;




&lt;p&gt;Paper 2 — Adaptive A* Search Algorithm&lt;/p&gt;

&lt;p&gt;The second paper focuses on improving the famous A* search algorithm using adaptive weights.&lt;/p&gt;

&lt;p&gt;The traditional A* algorithm uses the formula:&lt;/p&gt;

&lt;p&gt;f(n) = g(n) + h(n)&lt;/p&gt;

&lt;p&gt;Where:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;g(n) is the actual path cost&lt;/li&gt;
&lt;li&gt;h(n) is the heuristic estimate to the goal&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A* is widely used in robotics, autonomous vehicles, games, and navigation systems because it efficiently finds optimal paths.&lt;/p&gt;

&lt;p&gt;The research paper proposes adaptive weights to improve search efficiency in dynamic environments. Instead of using a fixed heuristic strategy, the algorithm adjusts weights depending on environmental conditions.&lt;/p&gt;

&lt;p&gt;This connects directly to the search algorithms studied in class, especially:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Breadth-First Search (BFS)&lt;/li&gt;
&lt;li&gt;Uniform Cost Search (UCS)&lt;/li&gt;
&lt;li&gt;Best-First Search&lt;/li&gt;
&lt;li&gt;A* Search&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;What makes adaptive A* important is its ability to perform better in changing environments. For example, in a flood rescue scenario, road conditions and obstacles may continuously change. A static heuristic may not work efficiently, but adaptive weighting helps the algorithm respond intelligently to dynamic situations.&lt;/p&gt;

&lt;p&gt;The paper also highlights improvements in:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Search speed&lt;/li&gt;
&lt;li&gt;Path optimization&lt;/li&gt;
&lt;li&gt;Reduced node expansion&lt;/li&gt;
&lt;li&gt;Computational efficiency&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This showed me that even classical AI algorithms are still evolving and being improved for modern applications.&lt;/p&gt;




&lt;p&gt;My Learning Experience with NotebookLM&lt;/p&gt;

&lt;p&gt;Reading research papers manually was challenging because many sections used highly technical language and mathematical explanations. Google NotebookLM helped simplify difficult concepts into easier summaries.&lt;/p&gt;

&lt;p&gt;One major benefit of NotebookLM was that it explained complex ideas conversationally. For example, instead of simply defining adaptive heuristics mathematically, it explained their practical purpose in navigation and robotics.&lt;/p&gt;

&lt;p&gt;NotebookLM also helped me:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Summarize long sections quickly&lt;/li&gt;
&lt;li&gt;Understand technical terminology&lt;/li&gt;
&lt;li&gt;Compare concepts between papers&lt;/li&gt;
&lt;li&gt;Relate theory to practical applications&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;However, manual reading was still important because it helped me understand the actual methodology and structure of the research papers.&lt;/p&gt;




&lt;p&gt;Personal Insights&lt;/p&gt;

&lt;p&gt;After studying these papers, I realized that modern AI systems combine multiple areas of artificial intelligence together. Intelligent agents require search algorithms, optimization, memory, planning, and learning mechanisms simultaneously.&lt;/p&gt;

&lt;p&gt;I also learned that AI research is becoming increasingly focused on autonomy. Systems are moving from simple programmed behavior toward intelligent decision-making systems capable of adapting independently.&lt;/p&gt;

&lt;p&gt;The most interesting realization for me was that concepts we study in introductory AI courses, such as A* search and utility-based agents, are still extremely relevant in modern research and real-world applications.&lt;/p&gt;




&lt;p&gt;Conclusion&lt;/p&gt;

&lt;p&gt;These two research papers helped me better understand the relationship between theoretical AI concepts and real-world intelligent systems. Agentic AI demonstrates the future of autonomous intelligent systems, while adaptive A* shows how classical search algorithms are still improving for modern environments.&lt;/p&gt;

&lt;p&gt;Using NotebookLM alongside manual reading made the learning process more interactive and effective. Overall, this assignment improved both my research understanding and technical communication skills.&lt;/p&gt;

&lt;p&gt;Special thanks to &lt;a class="mentioned-user" href="https://dev.to/raqeeb_26"&gt;@raqeeb_26&lt;/a&gt;  for motivating students to explore AI research and technical blogging within the FAST AI community.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>beginners</category>
      <category>computerscience</category>
    </item>
  </channel>
</rss>
