Agentic AI: planning, reasoning, and acting with Autonomy

By ryu3 minute read


Disclaimer

All views are educational in nature.

What is an Agentic AI

Agentic AI refers to systems that don’t just answer questions, but can plan, decide, and act on their own.

They use LLMs + Tools + Memory to handle Multi-Step Tasks without being told exactly what to do at each step.

For example:


Characterstics of Agentic AI:

  1. Goal-Oriented Planning

    • It starts with a goal, then breaks it into smaller steps and executes.
  2. Multi-Step Reasoning

    • It doesn’t stop at one reply - it iteratively reasons until the goal is met.
  3. Autonomous Decision-Making

    • It chooses the best path or the tool on its own, based on the whatever context it has in that situation.
  4. Uses Memory, Tools and Knowledge

    • Remembers Past Events (long term memory or conversational memory), uses APIs/Scripts (tools), and refers to the docs or rules (Knowledge Base).

What makes Agentic AI different from Basic LLMs?


Basic Agentic Structure

agentic-ai

Architecture of an Agentic AI


Agentic AI VS AI Workflow

TermWhat it means
AI workflowPre-defined steps using AI (e.g. RAG pipeline)
AgentDynamic reasoning & acting system that adapts
ReAct AgentReason + Act: Think, Decide, take Action
Control logicLike if/else to guide actions
ToolsExternal Functions/APIs
MemoryPast info/context retained
PlannerCreates a step-wise plan

LLMs in this context


Agentic AI Example

  1. AI Coding Assistant
    • Can Understand bug report, edits code, runs tests, commits.
  2. Travel Agent
    • As we have already seen the example above; There are a gazillion use-cases of Agentic AI in various domains.
  3. A few more examples would be an HR Onboarding Bot, An Agent that posts for you on LinkedIn, the list goes on~

Let’s recap

Important

Before finishing up this blog; I would like for you to read this Amazing Blog by Anthropic on building Agentic AI.