Understanding AI Agents
Update in December 2025:
From Andrew Ng's Agentic AI course on DeepLearning.AI, the notion of AI Agents has been recast as "Agentic AI" which refers to LLMs being applied in an iterative or multi-step manner. In principle, one could use the same LLM in multiple sequential steps to refine its prior outputs, though there may be reasons in practice to use different models for different stages of generation. This reflects a generalization of LLMs as agents from the body of the original blog post here from the start of 2025, that described AI agents in the context of LLMs engaging each other in feedback loops. Indeed, consider the below example which shows 2 LLMs being used in sequence, one following the other to refine the initial outputs of the first via Reflection on the initial performance in order to produce a higher quality plot.
From January 2025:
The purpose of this post is to develop an understanding of AI Agents. They are a major development in deep learning for 2024. Conceptually, they leverage feedback loops between LLMs directing output from one into input to the other.
Microsoft's autogen library is being used to create the AI Agents and in this example, the popular Open AI ChatGPT 3.5 serves as the model.
References:
Practical Multi AI Agents and Advanced Use Cases with crewAI - DeepLearning.AI
AI Agentic Design Patterns with AutoGen - DeepLearning.AI
AI Agents in LangGraph - DeepLearning.AI
Serverless Agentic Workflows with Amazon Bedrock - DeepLearning.AI
Comments
Post a Comment