<?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: Tanveer Ulhaq</title>
    <description>The latest articles on DEV Community by Tanveer Ulhaq (@tanveer_ulhaq_4fa69e6afba).</description>
    <link>https://dev.to/tanveer_ulhaq_4fa69e6afba</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%2F3824093%2F2e8c857f-099d-4509-b3c8-9a928889946e.jpg</url>
      <title>DEV Community: Tanveer Ulhaq</title>
      <link>https://dev.to/tanveer_ulhaq_4fa69e6afba</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/tanveer_ulhaq_4fa69e6afba"/>
    <language>en</language>
    <item>
      <title>From Intelligent Agents to Adaptive A*: Exploring Modern AI Research</title>
      <dc:creator>Tanveer Ulhaq</dc:creator>
      <pubDate>Sat, 14 Mar 2026 14:56:35 +0000</pubDate>
      <link>https://dev.to/tanveer_ulhaq_4fa69e6afba/from-intelligent-agents-to-adaptive-a-exploring-modern-ai-research-29d7</link>
      <guid>https://dev.to/tanveer_ulhaq_4fa69e6afba/from-intelligent-agents-to-adaptive-a-exploring-modern-ai-research-29d7</guid>
      <description>&lt;p&gt;&lt;strong&gt;Introduction&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Artificial Intelligence is rapidly evolving, especially in the fields of intelligent agents and search algorithms. During my Artificial Intelligence course, I learned fundamental concepts such as agent models, search strategies, and heuristic algorithms.&lt;/p&gt;

&lt;p&gt;To explore how these ideas are applied in modern research, I analyzed two recent AI papers:&lt;/p&gt;

&lt;p&gt;The Rise of Agentic AI: A Review of Definitions, Frameworks, and Challenges (2025)&lt;/p&gt;

&lt;p&gt;Research on the A* Algorithm Based on Adaptive Weights (2025)&lt;/p&gt;

&lt;p&gt;In this blog, I summarize the key ideas from these papers and explain how they relate to concepts we study in AI courses.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Understanding Agentic AI&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Agentic AI refers to AI systems that behave like autonomous agents capable of making decisions and achieving goals.&lt;/p&gt;

&lt;p&gt;These systems can:&lt;/p&gt;

&lt;p&gt;Observe their environment&lt;/p&gt;

&lt;p&gt;Plan actions&lt;/p&gt;

&lt;p&gt;Execute tasks&lt;/p&gt;

&lt;p&gt;Adapt to changes&lt;/p&gt;

&lt;p&gt;This is closely related to the agent concept in AI, where an agent perceives the environment through sensors and acts through actuators.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example of an AI Agent&lt;/strong&gt;&lt;br&gt;
Environment → Sensors → Agent → Actuators → Environment&lt;/p&gt;

&lt;p&gt;Examples of agentic systems include:&lt;/p&gt;

&lt;p&gt;Autonomous robots&lt;/p&gt;

&lt;p&gt;Intelligent assistants&lt;/p&gt;

&lt;p&gt;Automated research agents&lt;/p&gt;

&lt;p&gt;The paper highlights that future AI systems will move beyond simple response generation and instead operate as goal-driven autonomous agents.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Improving Search with Adaptive A&lt;/strong&gt;*&lt;/p&gt;

&lt;p&gt;The second research paper focuses on improving the A* search algorithm.&lt;/p&gt;

&lt;p&gt;A* is widely used in:&lt;/p&gt;

&lt;p&gt;Path planning&lt;/p&gt;

&lt;p&gt;Navigation systems&lt;/p&gt;

&lt;p&gt;Robotics&lt;/p&gt;

&lt;p&gt;Game AI&lt;/p&gt;

&lt;p&gt;The algorithm evaluates nodes using the function:&lt;/p&gt;

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

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

&lt;p&gt;g(n) → cost from the start node&lt;/p&gt;

&lt;p&gt;h(n) → heuristic estimate to the goal&lt;/p&gt;

&lt;p&gt;This allows the algorithm to find an optimal path efficiently.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why Improve A*?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;In large environments, standard A* may explore many unnecessary nodes.&lt;/p&gt;

&lt;p&gt;The research introduces adaptive heuristic weights that dynamically adjust the search strategy.&lt;/p&gt;

&lt;p&gt;Benefits:&lt;/p&gt;

&lt;p&gt;Faster path finding&lt;/p&gt;

&lt;p&gt;Fewer explored nodes&lt;/p&gt;

&lt;p&gt;Better performance in dynamic environments&lt;/p&gt;

&lt;p&gt;This improvement is particularly useful for robots and autonomous navigation systems.&lt;br&gt;
&lt;strong&gt;What I Learned from This Exploration&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Reading these papers helped me realize that AI research builds upon fundamental concepts taught in class.&lt;/p&gt;

&lt;p&gt;The idea of agentic AI was particularly interesting because it combines planning, reasoning, and decision-making into a single system.&lt;/p&gt;

&lt;p&gt;Using tools like NotebookLM also made it easier to analyze complex research papers and understand their key contributions.&lt;br&gt;
&lt;strong&gt;Conclusion&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Modern AI systems are evolving from simple algorithms into intelligent agents capable of complex reasoning and autonomous decision-making.&lt;/p&gt;

&lt;p&gt;The research on agentic AI and adaptive A* demonstrates how foundational AI concepts continue to evolve and influence real-world applications such as robotics, navigation systems, and intelligent assistants.&lt;/p&gt;

&lt;p&gt;Understanding these developments helps students bridge the gap between classroom theory and real-world AI innovation.&lt;/p&gt;

</description>
      <category>agents</category>
      <category>ai</category>
      <category>algorithms</category>
      <category>computerscience</category>
    </item>
  </channel>
</rss>
