DEV Community

Fathima rasha
Fathima rasha

Posted on

Agentic AI: From AI That Responds to AI That Acts

AI applications have traditionally focused on generating responses to user prompts. But what if an AI system could understand a goal, decide what needs to be done, use external tools, retrieve information, and take actions to complete the task?

This is where Agentic AI comes in.


What Is Agentic AI?

For a long time, most AI applications followed a simple pattern: you ask a question, the model generates an answer, and the interaction ends.

With the rise of Agentic AI, the goal is no longer limited to generating a response. AI systems can be designed to understand a goal, reason about what needs to be done, use tools, take actions, observe the results, and decide what to do next.

Imagine telling an AI:

“Plan a three-day trip to Bangalore under ₹15,000, find suitable hotels and activities, compare the options, and create an itinerary.”

A traditional chatbot might give you a suggested itinerary based on the information it already knows.

An agentic system, on the other hand, could break the request into smaller tasks, retrieve information, use external tools, compare the results, and adjust its approach if the initial options don't satisfy the requirements.

That shift—from generating an answer to working toward a goal—is the fundamental idea behind Agentic AI.

From LLMs to AI Agents

Large Language Models (LLMs) are extremely capable at understanding and generating natural language. However, an LLM by itself is primarily a model for generating outputs.

A simple LLM application can be represented as:

User
  ↓
Prompt
  ↓
LLM
  ↓
Response
Enter fullscreen mode Exit fullscreen mode

For example, you might ask:

“How can I plan a trip to Bangalore?”

The model can explain how to plan the trip, suggest places to visit, and provide general recommendations.

But it doesn't necessarily have the ability to search current hotel availability, query a booking system, calculate prices using live data, or perform actions in external systems.

An agentic application adds these capabilities around the model.

The LLM is still an important part of the system, but it is now working as one component within a larger architecture.

A simplified agentic application looks more like:

User Goal
   ↓
AI Agent
   ↓
Reason / Plan
   ↓
Use Tools
   ↓
Observe Results
   ↓
Evaluate
   ↓
Next Action
   ↓
Final Result
Enter fullscreen mode Exit fullscreen mode

What Makes an AI System Agentic?

There isn't a single feature that suddenly turns an LLM into an agent. Agentic systems generally combine several capabilities that allow the system to work toward an objective.

Goal-Oriented Behavior

An agent starts with a goal rather than simply responding to isolated questions.

For example:

“Find me a hotel in Bangalore for three nights under ₹9,000.”

The agent needs to understand the constraints and work toward finding an appropriate option.

The user doesn't necessarily tell it every step.

They provide the objective, while the system determines what needs to happen to achieve it.

Reasoning and Planning

Once the agent understands the goal, it needs to determine what actions are required.

For the travel example, it might determine that it should:

  • Identify the travel dates
  • Search for suitable hotels
  • Check prices
  • Compare available options
  • Verify that the total fits the budget

This is where the underlying model provides reasoning and decision-making capabilities.

The important point is that the agent can determine the next step based on the current situation rather than simply following a fixed response template.

Tool Use

An AI model cannot automatically access every external system.

Tools give an agent the ability to interact with the outside world.

For example, a travel agent could have access to:

  • Flight search APIs
  • Hotel APIs
  • Maps
  • Weather services
  • Databases
  • Calculators

The agent determines which capability it needs, while the tool performs the actual operation.

For example:

Agent
  │
  │ "I need hotel availability"
  ▼
Hotel Search Tool
  │
  │ Search external system
  ▼
Hotel Results
  │
  ▼
Agent
Enter fullscreen mode Exit fullscreen mode

This is one of the biggest differences between a simple chatbot and an agentic application.

The Agentic Loop

The combination of reasoning, tools, and feedback creates what is commonly described as an agent loop.

An agent can reason about a task, take an action, observe the result, and use that result to determine its next action.

For example, suppose the agent needs to find a hotel under ₹3,000 per night.

It searches for hotels and receives:

Hotel A — ₹4,500/night
Hotel B — ₹2,800/night
Hotel C — ₹3,700/night
Enter fullscreen mode Exit fullscreen mode

The agent can evaluate these results and recognize that Hotel B satisfies the budget constraint.

But imagine the search returned:

Hotel A — ₹4,500/night
Hotel B — ₹3,800/night
Hotel C — ₹4,200/night
Enter fullscreen mode Exit fullscreen mode

Now the agent can determine that none of the options satisfy the requirement.

It could decide to search for more options, change the search criteria, or ask the user whether the budget can be increased.

The important part is that the result of one action influences the next action.

A simplified agent loop is:

Reason
  ↓
Act
  ↓
Observe
  ↓
Evaluate
  ↓
Reason Again
  ↓
Act Again
Enter fullscreen mode Exit fullscreen mode

This iterative behavior is at the heart of many agentic systems.

Knowledge and Context

An agent may also need information that isn't contained in the model itself.

Imagine a company's internal support agent.

A user asks:

“What is our refund policy for enterprise customers?”

The model may understand what a refund policy is, but it doesn't automatically know the company's private policy.

The agent therefore needs access to external knowledge.

That knowledge could come from:

  • Documents
  • Databases
  • APIs
  • Internal documentation
  • Product catalogs
  • Company policies

The agent can retrieve relevant information and use it as context when generating its response.

This is particularly important for enterprise applications, where the AI needs to work with an organization's own data.

Memory and State

Agentic applications may also need to maintain context.

Consider a conversation:

User: “I'm planning a family trip to Bangalore.”

Agent: “What's your budget?”

User: “₹15,000.”

Later, the user says:

“Find a hotel.”

A useful system should understand that the request relates to the earlier conversation.

Memory and application state allow an agentic system to maintain useful information across steps or interactions.

This can range from short-term conversation context to longer-term information that an application intentionally stores for future interactions.

Adaptation

Another important characteristic of agentic systems is the ability to adapt based on what happens.

Suppose the user asks:

“Find a laptop under ₹80,000 with 16 GB RAM.”

The agent searches available products and discovers that the preferred option is unavailable.

Instead of simply stopping, an agentic workflow could search for alternatives and evaluate them against the original requirements.

The system's next action is influenced by the outcome of the previous action.

That is very different from a fixed sequence where every request follows exactly the same path.

Agentic AI Is Not the Same as Automation

It is tempting to think that an AI agent is simply automation with an LLM attached.

There is an important difference.

Traditional automation generally follows a predefined sequence:

Step 1
  ↓
Step 2
  ↓
Step 3
  ↓
Step 4
Enter fullscreen mode Exit fullscreen mode

An agentic system can dynamically determine what to do next based on the current state and results:

Goal
 ↓
Reason
 ↓
Action
 ↓
Observe
 ↓
Decision
 ├── Continue
 ├── Try another tool
 ├── Change approach
 └── Finish
Enter fullscreen mode Exit fullscreen mode

For example, a traditional travel workflow might always execute:

Search → Filter → Display
Enter fullscreen mode Exit fullscreen mode

An agent could determine that it needs to:

Search
   ↓
Compare
   ↓
Check Budget
   ↓
Search Again
   ↓
Retrieve Additional Information
   ↓
Create Itinerary
Enter fullscreen mode Exit fullscreen mode

The agent has more flexibility in determining the path toward the goal.

Agentic AI Doesn't Mean Unlimited Autonomy

Agentic systems can take actions, but that doesn't mean they should have unrestricted access to everything.

Imagine an agent that has access to:

  • Your email
  • Your database
  • Payment systems
  • Cloud infrastructure
  • File storage

Giving the agent unrestricted permissions could create serious security risks.

A production system therefore needs controls around what the agent can do.

For sensitive actions, a workflow might look like:

Agent
  ↓
Prepare Action
  ↓
Human Approval
  ↓
Execute Action
Enter fullscreen mode Exit fullscreen mode

For example, an agent might be allowed to prepare a payment but require a human to approve it before the payment is actually executed.

Agentic AI should therefore be thought of as controlled autonomy, not unlimited autonomy.

Agentic AI Is a System, Not Just a Model

This is perhaps the most important concept to understand.

An AI agent isn't simply a powerful LLM.

A practical agentic application can combine:

                 Agentic AI System
                        │
       ┌────────────────┼────────────────┐
       ↓                ↓                ↓
     Model            Tools           Knowledge
       │                │                │
       └────────────────┼────────────────┘
                        ↓
                    Orchestration
                        │
              ┌─────────┴─────────┐
              ↓                   ↓
           Memory              Actions
Enter fullscreen mode Exit fullscreen mode

The model provides intelligence and language understanding.

Tools provide the ability to interact with external systems.

Knowledge provides additional information.

Memory maintains useful context.

The orchestration layer coordinates the process.

Together, these components create an agentic system.

A Simple Mental Model

If you are new to Agentic AI, remember this progression:

LLM
 ↓
LLM + Tools
 ↓
LLM + Tools + Knowledge
 ↓
LLM + Tools + Knowledge + Memory
 ↓
Agentic AI System
Enter fullscreen mode Exit fullscreen mode

The fundamental idea can be summarized as:

Generative AI focuses on generating content. Agentic AI focuses on achieving goals through reasoning, actions, tools, and feedback.

And this is what makes Agentic AI particularly interesting for application development: instead of building an AI that only talks about a task, we can build systems that are capable of working through the task.


Implementing using AWS

Understanding Agentic AI is only the first step.

The next question is:

How do we turn these concepts into a real AI agent using AWS?

To make this practical, let's design a Travel Planning Agent.

A user should be able to say:

“Plan a 3-day trip to Bangalore under ₹15,000.”

The agent should understand the request, retrieve relevant information, use tools to search for options, evaluate the results, and produce an itinerary.

Instead of treating this as one large AI problem, we can break the system into several components and map each capability to AWS.

Start With a Foundation Model — Amazon Bedrock

Every agent needs a model capable of understanding instructions and making decisions.

With Amazon Bedrock, we can access foundation models through a managed AWS service rather than managing model infrastructure ourselves.

For our travel agent, the model is responsible for understanding requests such as:

“Plan a 3-day trip to Bangalore under ₹15,000.”

It can identify important information such as:

Destination → Bangalore
Duration    → 3 days
Budget      → ₹15,000
Goal        → Create a travel plan
Enter fullscreen mode Exit fullscreen mode

However, the foundation model alone is not the agent.

It provides the intelligence used by the agent, while other components give the system tools, memory, knowledge, and the ability to execute actions.


Run the Agent — Amazon Bedrock AgentCore Runtime

Our agent needs somewhere to execute.

This is where Amazon Bedrock AgentCore Runtime comes in.

AgentCore Runtime provides a managed environment for deploying and running agents. It is designed to support different agent frameworks and models, allowing the agent's orchestration logic to run in a managed environment.

Inside the runtime, our agent can execute its workflow:

User Request
     ↓
AgentCore Runtime
     ↓
Agent
     ↓
Reason → Plan → Act → Observe
Enter fullscreen mode Exit fullscreen mode

This gives us the execution environment required to turn our model and agent logic into an actual agentic application.


Give the Agent Knowledge — Amazon Bedrock Knowledge Bases

Our travel agent may need information that isn't contained in the model itself.

For example, suppose we provide it with:

  • Bangalore travel guides
  • Destination information
  • Local activity information
  • Company travel policies
  • Other application-specific documents

We can use Amazon Bedrock Knowledge Bases to retrieve relevant information from connected data sources.

Knowledge Bases supports Retrieval-Augmented Generation (RAG), allowing an application to retrieve relevant information and provide it to the model as context.

For example, the user could ask:

“Which activities are suitable for a three-day Bangalore trip?”

The agent can retrieve relevant information from the knowledge base and use it when constructing the itinerary.

With a knowledge base, the application can retrieve domain-specific information from connected data sources and provide that information to the model as context.


Give the Agent Tools — AgentCore Gateway

Now we have an agent that can reason and retrieve information.

But reasoning alone isn't enough.

Suppose our agent needs to:

  • Search flights
  • Search hotels
  • Check weather
  • Find activities
  • Calculate costs

These capabilities can be exposed as tools.

This is where Amazon Bedrock AgentCore Gateway becomes useful.

AgentCore Gateway provides a managed connectivity layer between agents and tools. It can connect APIs, Lambda functions, existing services, MCP servers, and other tool sources so that agents can discover and invoke capabilities.

Conceptually:

                 AI Agent
                    │
                    ▼
           AgentCore Gateway
                    │
        ┌───────────┼───────────┐
        ↓           ↓           ↓
    Hotel API   Flight API   Weather API
        │           │           │
        └───────────┼───────────┘
                    ↓
              Tool Results
                    ↓
                  Agent
Enter fullscreen mode Exit fullscreen mode

The agent doesn't need to know how every backend system works.

Instead, it can work with defined capabilities such as:

search_hotels()
search_flights()
get_weather()
find_activities()
Enter fullscreen mode Exit fullscreen mode

The agent can then determine which tool is appropriate for the current task.


How Does the Agent Actually Use a Tool?

Let's follow one step.

The user says:

“Find hotels under ₹3,000 per night.”

The agent determines that it needs hotel information.

It selects a hotel-search tool.

The interaction can be represented as:

User
 ↓
Agent
 ↓
Decides: "I need hotel data"
 ↓
AgentCore Gateway
 ↓
Hotel Search API
 ↓
Hotel Results
 ↓
Agent
 ↓
Evaluate Results
Enter fullscreen mode Exit fullscreen mode

For example:

Hotel A → ₹4,500/night
Hotel B → ₹2,800/night
Hotel C → ₹3,700/night
Enter fullscreen mode Exit fullscreen mode

The agent can determine that Hotel B satisfies the user's budget.

This is the reason → act → observe loop discussed earlier.


Execute Custom Actions — AWS Lambda

Not every capability needs to be an external API.

We may need our own application logic.

For example:

“Calculate the total cost of this itinerary and determine whether it is within ₹15,000.”

We could implement that operation using AWS Lambda.

The Lambda function could perform deterministic calculations such as:

Hotel Cost
    +
Transportation
    +
Activities
    +
Other Expenses
    =
Total Cost
Enter fullscreen mode Exit fullscreen mode

The Lambda function can then be exposed as a tool through AgentCore Gateway.

This creates an important separation:

The agent decides what needs to be done; deterministic application code performs the operation.

This is a useful design pattern for production agentic systems because not every decision should be left to probabilistic model output.


Give the Agent Memory — AgentCore Memory

Now imagine a longer conversation.

The user says:

“I'm travelling with my family.”

Later:

“Find accommodation.”

The second request makes more sense if the system remembers the earlier context.

Amazon Bedrock AgentCore Memory can provide memory capabilities for agentic applications, including short-term conversational context and longer-term information that can persist across sessions.

Conceptually:

Conversation
     ↓
AgentCore Memory
     ↓
Relevant Context
     ↓
Agent
Enter fullscreen mode Exit fullscreen mode

This allows the application to maintain useful context instead of treating every interaction as completely independent.


Store Application Data — Amazon DynamoDB

Memory and application data are not necessarily the same thing.

Our travel application may need to store structured information such as:

  • User preferences
  • Saved itineraries
  • Previous trips
  • Booking information
  • Application state

We can use Amazon DynamoDB for this type of application data.

For example:

Travel Application
       ↓
    DynamoDB
       │
 ┌─────┼─────────────┐
 ↓     ↓             ↓
Users  Trips      Itineraries
Enter fullscreen mode Exit fullscreen mode

This gives the application a persistent data layer separate from the agent's conversational memory.


Putting the Agent Together

At this point, we have several individual capabilities:

Capability AWS Service
Foundation model Amazon Bedrock
Agent execution Amazon Bedrock AgentCore Runtime
External knowledge Amazon Bedrock Knowledge Bases
Tool connectivity AgentCore Gateway
Custom actions AWS Lambda
Agent memory AgentCore Memory
Application data Amazon DynamoDB

Now let's see what happens when a real request arrives.

The Complete Agentic Workflow

The user says:

“Plan a 3-day trip to Bangalore under ₹15,000.”

Step 1 — Understand the Request

The agent receives the user's goal.

It identifies:

Destination → Bangalore
Duration    → 3 days
Budget      → ₹15,000
Objective   → Create itinerary
Enter fullscreen mode Exit fullscreen mode

Step 2 — Determine What It Needs

The agent realizes that it needs information about:

Transportation
Hotels
Activities
Prices
Enter fullscreen mode Exit fullscreen mode

Step 3 — Retrieve Relevant Knowledge

The agent can use the Knowledge Base to retrieve relevant destination information.

For example, it could retrieve information about:

  • Places to visit
  • Local activities
  • Travel information
  • Relevant policies

Step 4 — Use Tools

The agent can use Gateway-connected tools to search for:

Flights
Hotels
Activities
Weather
Enter fullscreen mode Exit fullscreen mode

The results are returned to the agent.

Step 5 — Calculate

The agent can invoke a Lambda function to calculate the estimated total cost.

Suppose the result exceeds the user's ₹15,000 budget.

Step 6 — Adapt

The agent now has new information.

Instead of simply returning the result, it can search for cheaper alternatives.

For example:

Expensive Hotel
      ↓
Budget Constraint Violated
      ↓
Search Alternatives
      ↓
Evaluate New Options
      ↓
Select Suitable Option
Enter fullscreen mode Exit fullscreen mode

Step 7 — Generate the Result

The agent now has enough information to create a plan that satisfies the user's constraints.

It can generate the final itinerary.

The complete process can be summarized as:

                 User Goal
                     ↓
              Understand Goal
                     ↓
               Reason / Plan
                     ↓
          ┌──────────┼──────────┐
          ↓          ↓          ↓
      Knowledge     Tools      Memory
          ↓          ↓          ↓
          └──────────┼──────────┘
                     ↓
                  Observe
                     ↓
                  Evaluate
                     ↓
              Constraint Check
                     ↓
              ┌──────┴──────┐
              ↓             ↓
          Satisfied      Not Satisfied
              ↓             ↓
          Complete      Adapt / Retry
              │             │
              └──────┬──────┘
                     ↓
                Final Result
Enter fullscreen mode Exit fullscreen mode

This is the important transition from an AI model to an agentic application.

The model isn't working alone.

It is working together with tools, knowledge, memory, application logic, and runtime infrastructure.


How the AWS Components Fit Together

The architecture can be understood as a set of layers.

Intelligence

Amazon Bedrock

Provides access to foundation models that power the agent's understanding and reasoning.

Agent Execution

Amazon Bedrock AgentCore Runtime

Provides the managed environment where the agent runs.

Knowledge

Amazon Bedrock Knowledge Bases

Provides access to information from connected data sources through retrieval.

Tools

AgentCore Gateway

Provides a managed interface through which agents can discover and invoke tools and connect to APIs, Lambda functions, MCP servers, and other services.

Actions

AWS Lambda / APIs

Perform deterministic business operations and interact with external systems.

Memory

AgentCore Memory

Maintains useful conversational and longer-term agent context.

Data

Amazon DynamoDB

Stores application-specific structured data.

Together:

                 ┌─────────────────────┐
                 │        User         │
                 └──────────┬──────────┘
                            ↓
                    Application Layer
                            ↓
                 AgentCore Runtime
                            ↓
                    ┌──────────────┐
                    │   AI Agent   │
                    └──────┬───────┘
                           │
          ┌────────────────┼────────────────┐
          ↓                ↓                ↓
   Amazon Bedrock    Knowledge Bases   AgentCore Memory
    Foundation             │                │
      Model                │                │
          │                │                │
          └────────────────┼────────────────┘
                           ↓
                  AgentCore Gateway
                           │
              ┌────────────┼────────────┐
              ↓            ↓            ↓
          Hotel API    Flight API    AWS Lambda
                                         │
                                         ↓
                                    DynamoDB
Enter fullscreen mode Exit fullscreen mode

Why This Architecture Matters

The important lesson isn't simply which AWS service to use.

It is understanding why each component exists.

The foundation model provides intelligence.

The runtime provides an environment for the agent.

Knowledge Bases provide external information.

Gateway connects the agent to tools.

Lambda and APIs perform actual operations.

Memory maintains context.

DynamoDB stores application data.

This separation also gives us better control over security, reliability, and maintainability.

For example, we don't want the model to have unrestricted direct access to a database simply because it needs to retrieve information.

Instead, we can expose carefully defined tools and control what the agent is allowed to invoke.

AgentCore Gateway can provide a managed boundary for tool access and authorization, helping separate the agent from the underlying systems it interacts with.


You Don't Need Every Component

A real agent doesn't necessarily need all of these services.

For example, a simple agent might only need:

Amazon Bedrock
      +
Agent Runtime
      +
A Few Tools
Enter fullscreen mode Exit fullscreen mode

A more advanced application might add:

Knowledge Bases
      +
AgentCore Gateway
      +
AgentCore Memory
      +
Lambda
      +
DynamoDB
      +
Monitoring / Security
Enter fullscreen mode Exit fullscreen mode

The architecture should therefore be designed around the actual capabilities the application needs, rather than adding AWS services simply because they are available.


From Concept to Architecture

We started with a simple idea:

“Build an AI that can plan a trip.”

We then decomposed it into capabilities:

Understand the goal
        ↓
Reason and plan
        ↓
Retrieve knowledge
        ↓
Use tools
        ↓
Execute actions
        ↓
Observe results
        ↓
Adapt
        ↓
Complete the goal
Enter fullscreen mode Exit fullscreen mode

AWS provides building blocks for each part of this architecture.

And that's the key idea:

Agentic AI isn't one model or one AWS service. It is a system in which models, tools, knowledge, memory, and application infrastructure work together to pursue a goal.


AWS Implementation Architecture

                              USER
                                │
                                ▼
                     Web / Mobile Application
                                │
                                ▼
                       Application / API
                                │
                                ▼
                 Amazon Bedrock AgentCore Runtime
                                │
                                ▼
                       ┌────────────────┐
                       │   AI AGENT     │
                       │                │
                       │ Understand     │
                       │ Reason         │
                       │ Plan           │
                       │ Decide         │
                       └───────┬────────┘
                               │
             ┌─────────────────┼─────────────────┐
             │                 │                 │
             ▼                 ▼                 ▼
     Amazon Bedrock     Knowledge Bases    AgentCore Memory
     Foundation Model        │                 │
             │               │                 │
             └───────────────┼─────────────────┘
                             │
                             ▼
                    AgentCore Gateway
                             │
               ┌─────────────┼─────────────┐
               │             │             │
               ▼             ▼             ▼
          Hotel API      Flight API     AWS Lambda
                                           │
                                           ▼
                                      DynamoDB
Enter fullscreen mode Exit fullscreen mode

The Agentic Loop

              ┌──────────────┐
              │     Goal     │
              └──────┬───────┘
                     ↓
              ┌──────────────┐
              │    Reason    │
              └──────┬───────┘
                     ↓
              ┌──────────────┐
              │     Act      │
              └──────┬───────┘
                     ↓
              ┌──────────────┐
              │   Observe    │
              └──────┬───────┘
                     ↓
              ┌──────────────┐
              │   Evaluate   │
              └──────┬───────┘
                     ↓
              ┌──────────────┐
              │    Adapt?    │
              └───┬──────┬───┘
                  │      │
                 Yes     No
                  │      │
                  ↓      ↓
              Reason    Done
               Again
Enter fullscreen mode Exit fullscreen mode

AWS Cheat Sheet

Amazon Bedrock
→ Foundation Models / Intelligence

AgentCore Runtime
→ Run the Agent

Knowledge Bases
→ Retrieve External Knowledge

AgentCore Gateway
→ Connect and Manage Tools

AWS Lambda
→ Execute Custom Logic

AgentCore Memory
→ Maintain Agent Context

Amazon DynamoDB
→ Store Application Data
Enter fullscreen mode Exit fullscreen mode

The big picture:

LLM + Tools + Knowledge + Memory + Orchestration + Actions = Agentic AI System

Top comments (1)

Some comments may only be visible to logged-in visitors. Sign in to view all comments.