Get AI summaries of any video or article — Sign up free
What is Agentic AI? Important For GEN AI In 2025 thumbnail

What is Agentic AI? Important For GEN AI In 2025

Krish Naik·
5 min read

Based on Krish Naik's video on YouTube. If you like this content, support the original creators by watching, liking and subscribing to their content.

TL;DR

Agentic AI targets a specific goal and runs autonomous, multi-step workflows instead of stopping at text generation.

Briefing

Agentic AI is positioned as the next step beyond generative AI: instead of producing text as the end goal, autonomous AI agents pursue a defined business outcome by running multi-step workflows, calling external tools, and coordinating with other agents. That shift matters because it turns LLMs from “content generators” into systems that can retrieve up-to-date information, make decisions, and execute tasks with minimal human intervention—capabilities that are increasingly central to real-world applications in 2025.

In generative AI, an LLM typically responds to a user prompt by generating content. The workflow is straightforward: a user asks a question, a prompt instructs the model how to behave (for example, “act like an author” or “write a poem”), and the model outputs text. Even when generative AI is paired with retrieval approaches like RAG, the model still isn’t inherently equipped with the latest internet data; it relies on external retrieval or tools to fill the gap. Frameworks such as LangChain help by providing “tools” (e.g., a DuckDuckGo search tool or a Wikipedia search tool) that the model can call to fetch information, but the overall aim remains content generation.

Agentic AI changes the objective and the structure. The core idea is an autonomous AI system with a specific goal. To reach that goal, the system can operate independently—assembling and executing complex workflows that may require multiple tools and multiple sub-agents. Rather than manually stitching together one tool after another for each request, agentic systems can plan, call the right tools, and iterate until the outcome is achieved. The workflow can also improve over time, with the system adjusting to perform better as tasks complete.

A concrete example illustrates the difference. Consider a custom finance bot tasked with deciding whether to buy Tesla or Nvidia, with constraints like buying stocks, selling in five days, and targeting a minimum profit threshold. In an agentic setup, one agent can pull stock details via a tool such as YFinance, while another agent can fetch recent finance news and sentiment through external news APIs. These agents then work together in a coordinated workflow: compare stock metrics, incorporate recent developments, and produce a recommendation. That kind of end-to-end decision support is framed as difficult for purely generative AI because generative systems mainly generate responses rather than autonomously orchestrating tool-driven steps toward a business outcome.

The transcript also highlights several frameworks for building agentic applications. F data is presented as an open-source option for creating multiple specialized agents (e.g., legal, financial analysis, construction analyst, marketing agent) and integrating with a wide range of LLM providers (from Grok and Google Gemini to Anthropic, AWS, OpenAI, and Mistral) plus arbitrary tools and external systems. Microsoft AutoGen is described as another open-source framework for agentic AI. LangFlow is positioned as a no-code, drag-and-drop way to design workflows and generate deployable code. LangGraph is emphasized for building complex, multi-agent workflows and supporting multiple models and preprocessing/prompting steps.

Finally, an end-to-end demo uses F data to create a “web search agent” that interacts with third-party sources for recent news, paired with a “financial agent” that uses YFinance. Combined in a playground, the system answers questions like which stock to buy between Tesla and Nvidia by internally invoking agents, pulling tool data, and returning a structured recommendation.

Cornell Notes

Agentic AI shifts the focus from generating text to achieving a goal. Instead of a single prompt-to-output loop, autonomous agents run multi-step workflows that call external tools (like search or finance APIs) and coordinate with other agents. The transcript contrasts this with generative AI and even RAG, where the model still primarily produces content and relies on tools for retrieval. A finance-bot example shows how one agent can fetch stock data via YFinance while another gathers recent news, then the system compares results and outputs a buy recommendation. Frameworks such as F data, Microsoft AutoGen, LangFlow, and LangGraph are presented as ways to build and orchestrate these agentic systems.

How does generative AI typically work, and why does it struggle with “current” information?

Generative AI usually follows a prompt-driven loop: a user asks something, a prompt instructs the LLM how to behave, and the model generates content. Because many LLMs aren’t trained continuously on the latest internet data, they may not know today’s news or recent events. To handle that gap, systems often use external tools (e.g., search or Wikipedia) or retrieval patterns like RAG, where the model relies on outside sources to answer questions about recent developments.

What makes agentic AI different from generative AI?

Agentic AI is framed as an autonomous AI system with a defined goal. The system can operate without step-by-step human intervention, executing complex workflows to reach an outcome. It can integrate multiple tools and multiple sub-agents, coordinating them so the workflow progresses toward the business objective rather than stopping at “text generation.”

Why are external tools central to agentic AI?

External tools provide capabilities the LLM lacks by default—such as searching the web for recent news or pulling stock prices from a finance API. In the transcript’s examples, tools like DuckDuckGo search and Wikipedia search are used in LangChain-style setups, while agentic systems go further by orchestrating tool calls inside an autonomous workflow that iterates until the goal is met.

How does the finance-bot example demonstrate agentic behavior?

The custom bot has a goal like recommending between Tesla and Nvidia. One agent retrieves stock details using YFinance, while another agent gathers recent news and sentiment via a news API. The agents then combine those inputs in a coordinated workflow, compare metrics, and produce a recommendation—an outcome-oriented process rather than a single-pass content response.

What role do frameworks play in building agentic systems?

Frameworks provide building blocks for creating agents, wiring tool integrations, and orchestrating multi-step workflows. F data is described as open source and capable of creating multiple specialized agents and integrating with many LLM providers plus tools. Microsoft AutoGen is positioned as another open-source agentic framework. LangFlow offers a no-code drag-and-drop approach that can generate deployable code, while LangGraph focuses on complex workflow orchestration, including multi-agent setups.

What does the F data demo combine to answer stock questions?

The demo combines a web search agent (using a web search tool like DuckDuckGo search and an OpenAI chat model) with a financial agent (interacting with YFinance). Together, they run inside an F data playground so the system can fetch both recent context and stock data, then return a structured buy/hold-style recommendation for questions like Tesla versus Nvidia.

Review Questions

  1. In what way does an agentic AI workflow change the “prompt → output” pattern used in generative AI?
  2. How do multiple agents and multiple tools work together in the finance-bot example?
  3. Which frameworks mentioned in the transcript are aimed at orchestration (multi-step workflows) versus no-code building, and what does that imply for development speed?

Key Points

  1. 1

    Agentic AI targets a specific goal and runs autonomous, multi-step workflows instead of stopping at text generation.

  2. 2

    Generative AI typically relies on prompt instructions and may require external tools or RAG to access up-to-date information.

  3. 3

    Agentic systems can coordinate multiple tools and multiple sub-agents to reach an outcome with minimal human intervention.

  4. 4

    A finance-bot scenario shows how one agent can use YFinance for stock data while another agent pulls recent news and sentiment, then the system produces a recommendation.

  5. 5

    Frameworks like F data, Microsoft AutoGen, LangFlow, and LangGraph provide different ways to build and orchestrate agentic applications.

  6. 6

    F data is presented as flexible for integrating many LLM providers and adding arbitrary tools and external systems.

  7. 7

    LangFlow emphasizes no-code workflow design with deployable code, while LangGraph emphasizes complex multi-agent orchestration.

Highlights

Agentic AI reframes LLM use from “generate content” to “achieve a business outcome” through autonomous workflows.
Tool access isn’t just an add-on; agentic AI uses tools as part of an orchestrated plan that can involve multiple agents.
The Tesla-versus-Nvidia example ties together YFinance stock data and recent news sentiment to produce a buy/hold-style recommendation.
F data’s demo illustrates a practical pattern: a web search agent plus a financial agent combined into one custom chatbot experience.

Mentioned