Sudhir Nakka

Agentic AI, Part 1

September 6, 2025 (7d ago)5 views

Introduction

Agentic AI refers to intelligent systems that plan, decide, and act to achieve user-defined goals. Unlike simple automations or purely generative systems that react to prompts, agentic systems operate proactively across multiple steps, integrating reasoning, planning, and tool use.

Automation vs Agentic AI comparison

Human + Automation vs Agentic AI

Let’s walk through a relatable task and compare the flows.

Task: Reach home for Dad’s birthday.

Human + Automation Flow:

  1. [Human] Find destination (city + address).
  2. [Human + Automation] Find birthday (calendar, email, messages).
  3. [Human + Automation] Find arrival time (calendar, constraints).
  4. [Human + Automation] Plan route (maps, transit, flight search).
  5. [Human + Automation] Fetch flight and price options.
  6. [Human] Review options, select, reserve.
  7. [Human + Automation] Create/update calendar events (birthday, cabs, flight, home).
  8. [Human + Automation] Add reminder to buy a gift.
  9. [Human] Purchase gift and travel.

Agentic AI Flow:

  1. [AgenticAI] Determine destination (city + address).
  2. [AgenticAI] Retrieve birthday (calendar, email, messages).
  3. [AgenticAI] Determine arrival time (calendar, constraints).
  4. [AgenticAI] Plan route (maps, transit, flight search).
  5. [AgenticAI] Fetch flight and price options.
  6. [AgenticAI + Human] Present options, get selection, make reservations.
  7. [AgenticAI] Create/update calendar events (birthday, cabs, flight, home).
  8. [AgenticAI] Add reminder to buy a gift.
  9. [Human] Purchase gift and travel.

The Agentic AI Cycle

Agentic AI operates in a continuous loop of perception, reasoning, and action. User objectives are translated into executable plans.

Agentic AI vs Other AI Systems

FeatureAgentic AIGenerative AITraditional AI
Primary FunctionAutonomous, goal-oriented action and decision-making.Create new content (text, code, images) from prompts.Automate repetitive, specific tasks via predefined rules.
AutonomyHigh — initiates and completes tasks with minimal supervision.Low — reactive to user prompts.Low — depends on fixed algorithms and triggers.
WorkflowDynamic and adaptive; can course-correct.Reactive and stateless; one request at a time.Static and rule-based; brittle outside scoped parameters.
Planning & ReasoningMulti-step planning, decomposition, and decision-making.Limited explicit planning; mainly prompt-to-output.No planning; executes predefined logic.
Tool UseIntegrates tools/APIs, external services, and automation to act.Optional tool use via plugins/functions, typically within a single request.Fixed integrations; scripted automations.
Memory/StateMaintains working memory and longer-term context for tasks.Mostly stateless per request; limited session memory.State handled via application code and databases; not adaptive.
Learning & FeedbackReflects on outcomes; can self-correct via feedback loops.No built-in reflection; improvements via retraining or prompt tuning.No learning; behavior changes only via code/config updates.
Human-in-the-loopHuman sets goals and approves key decisions when needed.Human crafts prompts and reviews outputs.Human designs rules; minimal runtime interaction.
Typical OutputsCompleted tasks, updates to systems, and decisions taken.Text, images, code, audio generated from prompts.Deterministic actions within a narrow scope.
ExampleHandles a support ticket end-to-end (verify, refund, update CRM).Writes a marketing email or generates an image.Scripted chatbot or a simple spam filter.
Is it all fun and glory?

Real‑world Use Cases

The adaptive, autonomous nature of agentic AI enables it across industries to handle complex, multi-step processes:

Risks and Challenges

Agentic AI remains early; risks mirror broader AI concerns and introduce new ones:

This is Part 1. In future parts, we will explore agent architectures, memory, tool interfaces (incl. MCP), and evaluation strategies.