Skip to content

Commit 0186abb

Browse files
authored
Merge pull request #3098 from dineshr1493/cms/dineshr1493/hpe-dev-portal/blog/from-generative-to-agentic-ai-—-part-2-what-makes-ai-agents-truly-intelligent
Create Blog “from-generative-to-agentic-ai-—-part-2-what-makes-ai-agents-truly-intelligent”
2 parents 5e46a52 + a356f65 commit 0186abb

File tree

3 files changed

+113
-0
lines changed

3 files changed

+113
-0
lines changed
Lines changed: 113 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
---
2+
title: "Part 2: What makes AI agents truly intelligent"
3+
date: 2025-07-09T04:15:26.181Z
4+
author: DINESH R SINGH
5+
authorimage: /img/dinesh-192-192.jpg
6+
disable: false
7+
tags:
8+
- "AI Agents "
9+
- Agentic Frameworks
10+
- Agno
11+
- Autogen
12+
- Langchain
13+
- Enterprise Agents
14+
---
15+
<style>
16+
li {
17+
font-size: 27px;
18+
line-height: 33px;
19+
max-width: none;
20+
}
21+
</style>
22+
23+
In the [first part of this series](https://developer.hpe.com/blog/from-generative-to-agentic-ai-tracing-the-leap-from-words-to-actions/), I discussed the shift from passive large language models to more capable, action-oriented AI. Now, I will provide a closer look at what actually powers this transformation — the concept of the AI agent. Far from being just an advanced chatbot, an agent is a structured system that can understand, plan, execute, and respond — much like a real-world assistant, only faster and smarter.
24+
25+
Inspired by [my post on Medium](https://dineshr1493.medium.com/all-you-need-to-know-about-the-evolution-of-generative-ai-to-agentic-ai-part-2-agentic-ai-74dcf045aff0), this post builds upon the original work with added clarity, practical examples, and a more conversational tone to help you truly grasp how agentic AI is reshaping automation across industries.
26+
27+
<center><img src="/img/screenshot-2025-07-18-at-4.10.42 pm.png" width="500" height="542" alt="AI agnet Framework" title="AI agnet Framework"></center>
28+
29+
## What are AI agents?
30+
31+
An AI agent is not just something that responds to prompts — it’s something that takes initiative. Unlike traditional LLMs, which generate output only when asked, agents can independently decide what actions to take, how to take them, and when to stop.
32+
33+
Here’s what makes an agent different:
34+
35+
* It can decide how to solve a problem based on context.
36+
* It can use tools such as APIs, search engines, or databases.
37+
* It can take real actions, like analyzing data, sending emails, or making reservations.
38+
* It can break down large tasks into smaller, manageable steps and complete them autonomously.
39+
40+
In essence, an AI agent behaves more like a virtual assistant capable of doing actual work — not just holding a conversation.
41+
42+
## The agent workflow: Think → Plan → Act → Respond
43+
44+
The heart of an agentic system lies in this continuous loop:
45+
46+
* **Think :** It starts with understanding the objective or problem at hand.
47+
* **Plan :** Based on that understanding, it creates a strategy — often a sequence of steps.
48+
* **Act :** It then begins executing the plan, calling tools, retrieving data, or initiating actions.
49+
* **Respond :** Finally, it summarizes or communicates the results — or loops back to continue solving.
50+
51+
This cycle allows agents to operate with minimal human intervention, even on complex, multi-step workflows.
52+
53+
## Real-world impact: How agents are already changing industries
54+
55+
**Healthcare:** AI agents can retrieve patient history, summarize medical notes, and monitor for critical conditions, aiding doctors in real-time.
56+
57+
**Finance:** Agents can analyze markets, detect fraud, and automate reporting — operating at speeds no human team could match.
58+
59+
**Customer support**: Instead of generic replies, agents can pull data from CRM systems, open service tickets, or resolve technical issues directly.
60+
61+
**IT and DevOps:** Agents are now monitoring systems, fixing bugs, deploying updates — all without waiting on a human operator.
62+
63+
These are not theoretical applications — they are happening right now, streamlining operations and reducing bottlenecks across the board.
64+
65+
## Agents + Tools = Real-world superpowers
66+
67+
What truly empowers agents is their ability to interface with tools. Think of APIs, web services, internal databases, scripts, and even IoT systems. These integrations allow agents to interact with the real world, not just the digital one.
68+
69+
For example:
70+
71+
* Google Maps or Search APIs.
72+
* CRM and ERP databases.
73+
* Automation scripts for cloud platforms or internal workflows.
74+
75+
When agents are connected to tools, they don’t just think — they execute.
76+
77+
## Need for AI agents
78+
79+
The value of AI agents lies in their ability to scale thinking into action:
80+
81+
* They automate entire workflows — not just single responses.
82+
* They handle decision-making on the fly.
83+
* They adapt to changing inputs and data.
84+
* They reduce repetitive manual work across industries.
85+
* They can collaborate as multi-agent teams to solve broader, interconnected problems.
86+
87+
## Top 5 frameworks to build AI agents
88+
89+
If you're ready to build with agents, here are the top frameworks that developers swear by:
90+
91+
* Auto-GPT
92+
* BabyAGI
93+
* AGNO
94+
* LangChain
95+
* Autogen by Microsoft
96+
97+
| Framework | What it does | GitHub Link | ⭐ Stars |
98+
| --------------------- | -------------------------------------------------- | ------------------------------------------------------------- | ------- |
99+
| **AGNO (Phidata)** | Build fast, multi-modal agents (text + images) | [AGNO GitHub](https://github.com/phidatahq/phidata) | ⭐ 21.5k |
100+
| **Auto-GPT** | The first viral agent that automates tasks | [Auto-GPT GitHub](https://github.com/Torantulino/Auto-GPT) | ⭐ 174k |
101+
| **BabyAGI** | Agents that manage task lists autonomously | [BabyAGI GitHub](https://github.com/yoheinakajima/babyagi) | ⭐ 21.2k |
102+
| **LangChain Agents** | Powerful and flexible agent toolkit for developers | [LangChain GitHub](https://github.com/langchain-ai/langchain) | ⭐ 104k |
103+
| **Microsoft Autogen** | Build multi-agent systems that work together | [Autogen GitHub](https://github.com/microsoft/autogen) | ⭐ 42k |
104+
105+
Each offers a different approach — some focus on chaining tasks, others on autonomy and memory. Together, they make it easier than ever to bring agentic AI to life.
106+
107+
## **Conclusion**
108+
109+
AI agents are no longer a futuristic idea — they’re here, and they’re transforming how work gets done. By combining decision-making, planning, and tool usage, agents represent the leap from intelligent text generation to intelligent action. They’re bridging the gap between knowing what needs to be done and actually doing it.
110+
111+
[In Part 3 of this series,](https://developer.hpe.com/blog/model-context-protocol-mcp-the-protocol-that-powers-ai-agents/) I'll dig deeper into the architecture behind agentic systems — what components make them tick, how memory and feedback loops work, and how they can scale. If you're building the future or just trying to understand it, you're in the right place.
112+
113+
Until then, keep watching the space where AI stops being a helper… and becomes a doer

static/img/dinesh-192-192.jpg

148 KB
Loading
2.61 MB
Loading

0 commit comments

Comments
 (0)