What is Agentic AI?
Agentic AI refers to advanced AI systems that can autonomously analyze data, pursue complex goals, and adapt in real timeby solving multi-step problems with low to minimal human intervention. Simply stating, for a given environment (data ecosystem) they can understand the task, gather the data from the sources, generate solutions with a reasoning model like RAG/LLMs, and act on it via access to tools and APIs.
It ideally consists of guard rails in the form of confirmations or approvals from humans; and a feedback loop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quality Control AI System</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" rel="stylesheet">
<style>
.component-card {
border: 1px solid #e2e8f0;
padding: 16px;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s;
}
.component-card.selected {
border-color: #3b82f6;
background-color: #eff6ff;
transform: scale(1.05);
}
.icon {
width: 32px;
height: 32px;
margin-right: 16px;
}
.component-container {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
}
.component-description {
color: #4a5568;
font-size: 14px;
}
.details-container {
background-color: #f7fafc;
padding: 24px;
border-radius: 8px;
margin-top: 24px;
}
.details-container ul {
list-style-type: disc;
padding-left: 20px;
}
.icon-container {
display: flex;
justify-content: center;
align-items: center;
margin-top: 24px;
}
.icon-container i {
margin: 0 16px;
font-size: 24px;
}
</style>
</head>
<body>
<div class="container">
<h2 class="text-2xl font-bold text-center mb-6">
Agentic AI Quality Control System Architecture
</h2>
<div class="component-container" id="components">
<!-- Components will be dynamically added here -->
</div>
How does Agentic AI work?
The capabilities of foundational models (which are typically used in Generative AI), have accelerated the growth and development of Agentic AI models. This makes generative AI and foundational models a great addition to the Agentic AI workflows, as they can assess the situation to brainstorm and create clear steps for innovative solutions. You think of LLMs like the brain of Agentic AI.
Given that AI Agents are an emerging field, there are no hardcore frameworks for evaluating or developing them. In general, Agentic AI follows the structure:
- It starts with a human command/ discussion
- Clarifying the task and creating the execution flow
- Execute each step of the plan by calling the required tools/environments
- Pause or checkpoint for human feedback
- Task completion
Though it might not be as simple as this, the idea is to have a Planner, Evaluator, and Executor which execute their own part and then flow their output into the next downstream activity like a multi-agent system.
👀 Check out Everything you need to know about Agentic AI