<?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: Sheikh Saif Ali</title>
    <description>The latest articles on DEV Community by Sheikh Saif Ali (@sheikhsaifali_).</description>
    <link>https://dev.to/sheikhsaifali_</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%2F3894604%2Fe3c5afa4-dbea-48f7-a8c2-84815990baa0.jpg</url>
      <title>DEV Community: Sheikh Saif Ali</title>
      <link>https://dev.to/sheikhsaifali_</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sheikhsaifali_"/>
    <language>en</language>
    <item>
      <title>Exploring LLM-Based Deep Search Agents</title>
      <dc:creator>Sheikh Saif Ali</dc:creator>
      <pubDate>Thu, 23 Apr 2026 18:14:04 +0000</pubDate>
      <link>https://dev.to/sheikhsaifali_/exploring-llm-based-deep-search-agents-4dc4</link>
      <guid>https://dev.to/sheikhsaifali_/exploring-llm-based-deep-search-agents-4dc4</guid>
      <description>&lt;p&gt;Hello everyone &lt;br&gt;
I’m Sheikh Saif Ali, and in this second blog I am discussing:&lt;/p&gt;

&lt;p&gt;“A Survey of LLM-based Deep Search Agents (2026)”&lt;/p&gt;

&lt;p&gt;Tagging for feedback:&lt;br&gt;
&lt;a class="mentioned-user" href="https://dev.to/raqeeb_26"&gt;@raqeeb_26&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What Are Deep Search Agents?
&lt;/h2&gt;

&lt;p&gt;Deep Search Agents go further by:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Understanding the question&lt;/li&gt;
&lt;li&gt;Searching multiple times&lt;/li&gt;
&lt;li&gt;Evaluating sources&lt;/li&gt;
&lt;li&gt;Producing final answers&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;They behave more like a human researcher.&lt;/p&gt;

&lt;h2&gt;
  
  
  Goal of the Paper
&lt;/h2&gt;

&lt;p&gt;The paper explains:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;How deep search agents work&lt;/li&gt;
&lt;li&gt;Architectures used&lt;/li&gt;
&lt;li&gt;Strengths of LLMs&lt;/li&gt;
&lt;li&gt;Current limitations
The goal is to show how search is becoming more intelligent.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Connection with Our Course
&lt;/h2&gt;

&lt;p&gt;Our course covers:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Search algorithms&lt;/li&gt;
&lt;li&gt;A*&lt;/li&gt;
&lt;li&gt;Heuristics&lt;/li&gt;
&lt;li&gt;Intelligent agents&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This paper connects directly because:&lt;/p&gt;

&lt;h4&gt;
  
  
  Traditional A*:
&lt;/h4&gt;

&lt;p&gt;Uses fixed heuristics&lt;/p&gt;

&lt;h4&gt;
  
  
  Deep Search Agents:
&lt;/h4&gt;

&lt;p&gt;Learn better search strategies dynamically&lt;br&gt;
So AI is moving beyond classical search techniques.&lt;/p&gt;

&lt;h2&gt;
  
  
  How Deep Search Works
&lt;/h2&gt;

&lt;p&gt;The paper describes a cycle:&lt;/p&gt;

&lt;h4&gt;
  
  
  1. Query Understanding
&lt;/h4&gt;

&lt;p&gt;Agent interprets user intent.&lt;/p&gt;

&lt;h4&gt;
  
  
  2. Planning
&lt;/h4&gt;

&lt;p&gt;Decides what to search first.&lt;/p&gt;

&lt;h4&gt;
  
  
  3. Retrieval
&lt;/h4&gt;

&lt;p&gt;Collects information.&lt;/p&gt;

&lt;h4&gt;
  
  
  4. Evaluation
&lt;/h4&gt;

&lt;p&gt;Checks relevance.&lt;/p&gt;

&lt;h4&gt;
  
  
  5. Refinement
&lt;/h4&gt;

&lt;p&gt;Searches again if needed.&lt;br&gt;
This creates a smarter search system.&lt;/p&gt;

&lt;h2&gt;
  
  
  My Personal Insight
&lt;/h2&gt;

&lt;p&gt;While reading this paper and using NotebookLM, I learned:&lt;br&gt;
Good AI search is not just finding information it is reasoning about information.&lt;br&gt;
That idea changed my understanding of AI systems.&lt;/p&gt;

&lt;h2&gt;
  
  
  Challenges Mentioned
&lt;/h2&gt;

&lt;p&gt;Some issues include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Wrong source selection&lt;/li&gt;
&lt;li&gt;Bias in retrieved data&lt;/li&gt;
&lt;li&gt;High token cost&lt;/li&gt;
&lt;li&gt;Slow performance&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These still need improvement.&lt;/p&gt;

&lt;h2&gt;
  
  
  Real Applications
&lt;/h2&gt;

&lt;p&gt;Deep search agents can help in:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Academic research&lt;/li&gt;
&lt;li&gt;Medical research&lt;/li&gt;
&lt;li&gt;Legal systems&lt;/li&gt;
&lt;li&gt;Software development&lt;/li&gt;
&lt;li&gt;Knowledge management&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;Deep Search Agents are changing the future of information retrieval.&lt;br&gt;
Instead of showing information, AI can now understand, evaluate, and explain information.&lt;br&gt;
This paper helped me see how search algorithms are evolving into intelligent systems.&lt;/p&gt;

</description>
      <category>agents</category>
      <category>ai</category>
      <category>llm</category>
      <category>nlp</category>
    </item>
    <item>
      <title>The Rise of Agentic AI</title>
      <dc:creator>Sheikh Saif Ali</dc:creator>
      <pubDate>Thu, 23 Apr 2026 18:06:56 +0000</pubDate>
      <link>https://dev.to/sheikhsaifali_/the-rise-of-agentic-ai-47gl</link>
      <guid>https://dev.to/sheikhsaifali_/the-rise-of-agentic-ai-47gl</guid>
      <description>&lt;p&gt;Hello everyone,&lt;br&gt;
I’m Sheikh Saif Ali, a Computer Science student exploring modern Artificial Intelligence concepts. In this post, I am sharing my understanding of the paper:&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;Tagging for feedback:&lt;br&gt;
&lt;a class="mentioned-user" href="https://dev.to/raqeeb_26"&gt;@raqeeb_26&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What Is Agentic AI?
&lt;/h2&gt;

&lt;p&gt;Traditional AI usually waits for a user prompt and then responds.&lt;/p&gt;

&lt;p&gt;Agentic AI is different because it can:&lt;/p&gt;

&lt;p&gt;Set goals Make plans Use tools Evaluate outcomes Improve actions&lt;/p&gt;

&lt;p&gt;This means AI is moving from being a simple assistant toward becoming an autonomous system.&lt;/p&gt;

&lt;h2&gt;
  
  
  Goal of the Paper
&lt;/h2&gt;

&lt;p&gt;The main goal of this paper is to explain:&lt;/p&gt;

&lt;p&gt;What Agentic AI means How agentic systems work Their advantages Their challenges&lt;/p&gt;

&lt;p&gt;The researchers show that AI systems are becoming capable of independent problem solving.&lt;/p&gt;

&lt;h2&gt;
  
  
  Connection with Our Course
&lt;/h2&gt;

&lt;p&gt;In our AI course we studied:&lt;/p&gt;

&lt;p&gt;Intelligent agents&lt;br&gt;
Search methods&lt;br&gt;
Problem solving systems&lt;/p&gt;

&lt;p&gt;This paper extends that concept.&lt;/p&gt;

&lt;p&gt;A normal agent:&lt;br&gt;
Perceive → Decide → Act&lt;/p&gt;

&lt;p&gt;Agentic AI:&lt;br&gt;
Perceive → Plan → Use Tools → Learn → Improve&lt;/p&gt;

&lt;p&gt;This makes the agent more advanced than traditional AI systems.&lt;/p&gt;

&lt;h2&gt;
  
  
  Main Components of Agentic AI
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1.Planning
&lt;/h3&gt;

&lt;p&gt;The agent breaks a task into smaller steps.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Memory
&lt;/h3&gt;

&lt;p&gt;Stores previous information for better decisions.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Tool Usage
&lt;/h3&gt;

&lt;p&gt;Can interact with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;1. Search engines&lt;/li&gt;
&lt;li&gt;2. APIs&lt;/li&gt;
&lt;li&gt;3. External software&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  4. Reflection
&lt;/h3&gt;

&lt;p&gt;Checks its own answers and corrects mistakes.&lt;/p&gt;

&lt;h2&gt;
  
  
  My Personal Insight
&lt;/h2&gt;

&lt;p&gt;After reading this paper manually and reviewing parts in NotebookLM, I noticed something interesting:&lt;/p&gt;

&lt;p&gt;The future of AI is not only answering questions but taking initiative.&lt;/p&gt;

&lt;p&gt;That was the most exciting idea for me.&lt;/p&gt;

&lt;h2&gt;
  
  
  Challenges Mentioned
&lt;/h2&gt;

&lt;p&gt;The paper discusses:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;- Hallucination&lt;/li&gt;
&lt;li&gt;- Poor reliability&lt;/li&gt;
&lt;li&gt;- Safety concerns&lt;/li&gt;
&lt;li&gt;- High computing cost&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;These challenges must be solved before wide adoption.&lt;/p&gt;

&lt;h2&gt;
  
  
  Real Applications
&lt;/h2&gt;

&lt;p&gt;Agentic AI can be used in:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Medical diagnosis&lt;/li&gt;
&lt;li&gt;Research assistants&lt;/li&gt;
&lt;li&gt;Coding assistants&lt;/li&gt;
&lt;li&gt;Business automation&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;Agentic AI represents a major shift in artificial intelligence. It transforms AI from a passive system into an active problem solver.&lt;/p&gt;

&lt;p&gt;This paper helped me understand how future AI systems may work independently in real-world environments.&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
