Wenn Sie sich für diesen Kurs anmelden, werden Sie auch für diese Spezialisierung angemeldet.
Lernen Sie neue Konzepte von Branchenexperten
Gewinnen Sie ein Grundverständnis bestimmter Themen oder Tools
Erwerben Sie berufsrelevante Kompetenzen durch praktische Projekte
Erwerben Sie ein Berufszertifikat zur Vorlage
In diesem Kurs gibt es 4 Module
Artificial intelligence is rapidly advancing from simple automation to systems that can reason, plan, and act on their own. Building Autonomous AI Agents is a hands-on, practice-driven course that walks you through the end-to-end process of designing, developing, and deploying intelligent agents capable of independent decision-making.
You’ll work with leading agent frameworks—including LangChain, Autogen, and AgentOps—and learn how to integrate models, tools, and APIs to build dynamic multi-agent ecosystems. Through guided demonstrations and structured labs, you’ll implement core agent components such as memory, tool use, planning modules, and goal-driven workflows, ultimately building a fully functional autonomous agent.
The course also emphasizes safety, evaluation, and alignment practices to ensure that agents operate transparently, ethically, and reliably in real-world settings.
By the end of this course, you will be able to:
• Understand core agent architectures, memory types, and planning strategies.
• Build agents using frameworks like LangChain, CrewAI, Autogen, and AgentOps.
• Connect models, APIs, and external tools into cohesive multi-agent systems.
• Implement goal-driven workflows with monitoring, evaluation, and safety controls.
• Deploy production-ready autonomous agents capable of operating reliably in real environments.
This course is ideal for AI developers, data scientists, software engineers, and technology professionals transitioning from basic prompt engineering to building fully autonomous systems.
A foundational understanding of Python, APIs, and basic AI concepts is recommended, though all frameworks are introduced from scratch.
Join us to master the tools and techniques that power the next generation of AI systems that can think, act, and collaborate with minimal human intervention.
This module introduces learners to the foundations of single AI agents using the ReAct framework. Learners will explore the core concepts of agentic reasoning, tool usage, and memory integration. Through hands-on exercises, they will set up a development environment, define and use tools with structured inputs, and implement the ReAct loop for reasoning and decision-making. By the end of this module, learners will be able to deploy a functional agent capable of performing tasks with structured reasoning and short-term memory.
Das ist alles enthalten
15 Videos6 Lektüren4 Aufgaben
Infos zu Modulinhalt anzeigen
15 Videos•Insgesamt 59 Minuten
Specialization Introduction•5 Minuten
Course Introduction•4 Minuten
Python Prerequisites for Agentic AI Development•5 Minuten
Setting Up Environment for AI Agents•4 Minuten
The Rise of Autonomous Agents and the SDR Case Study•4 Minuten
AI Agent Protocols•4 Minuten
Agent vs. LLM Why ReAct is the Next Generation of Prompting•4 Minuten
Hands-On: Setting Up the Agent Development Environment (Python & Libraries)•3 Minuten
Hands-On: Anatomy of a Tool (Part 1) Defining Functions & Docstrings•6 Minuten
Hands-On: Anatomy of a Tool (Part 2) Using Pydantic for Structured Input•4 Minuten
Hands-On: Building Your First Research Tool (Web Search Integration)•3 Minuten
The Core ReAct Loop: Thought, Action, Observation in Code•4 Minuten
Hands-On: Prompt Engineering for Reasoning How to Get Better Tool Use•3 Minuten
Hands-On: Implementing State Giving Your Agent Short-Term Memory•3 Minuten
Course Outline: Building Autonomous AI Agents •10 Minuten
Understanding the ReAct Reasoning Loop•10 Minuten
Foundations of Agentic AI•10 Minuten
Tool Development and Action•10 Minuten
ReAct Implementation & Memory•10 Minuten
Summary: The Agentic Foundation (ReAct & Tool Use)•10 Minuten
4 Aufgaben•Insgesamt 33 Minuten
Knowledge Check: The Agentic Foundation (ReAct & Tool Use)•15 Minuten
Practice Quiz: Foundations of Agentic AI•6 Minuten
Practice Quiz: Tool Development and Action•6 Minuten
Practice Quiz: ReAct Implementation & Memory•6 Minuten
Context, Knowledge, and Grounding (RAG)
Modul 2•2 Stunden abzuschließen
Moduldetails
This module focuses on enabling a single agent to access, process, and act on external knowledge. Learners will work with retrieval-augmented generation (RAG) pipelines, including data ingestion, text embedding, and vector database indexing. They will integrate tools and actuators to enable decision-making and apply grounding techniques to ensure the agent produces contextually accurate outputs. By the end of this module, learners will have built a “strategy-grounded” agent that can reason over knowledge sources and generate validated outputs.
Das ist alles enthalten
10 Videos4 Lektüren4 Aufgaben
Infos zu Modulinhalt anzeigen
10 Videos•Insgesamt 31 Minuten
RAG Theory•3 Minuten
Hands-On: Data Preparation Loading & Splitting the Internal Sales Playbook•3 Minuten
Hands-On: Text Embeddings How to Convert Documents to Vector Space•3 Minuten
Hands-On: Building the Vector Database & Indexing the Sales Playbook•3 Minuten
Hands-On: Creating the RAG Retrieval Tool (retrieve_playbook)•3 Minuten
Hands-On: Connecting to the CRM Defining the Actuator Tool (log_activity)•3 Minuten
Hands-On: LLM Decisioning When to Use the Web Tool vs. the RAG Tool•3 Minuten
The Multi-Step Chain: Sequencing Research, RAG, and Drafting•3 Minuten
Hands-On: Prompting for Grounding and Forcing the Agent to Cite the Playbook•3 Minuten
Hands-On: The Strategy-Grounded Draft Agent (Full Output Test)•3 Minuten
4 Lektüren•Insgesamt 40 Minuten
RAG Architecture and Data Ingestion•10 Minuten
Tool Integration and Actuators•10 Minuten
Strategy-Grounded Drafting•10 Minuten
Summary: Context, Knowledge, and Grounding (RAG)•10 Minuten
4 Aufgaben•Insgesamt 33 Minuten
Knowledge Check: Context, Knowledge, and Grounding (RAG)•15 Minuten
Practice Quiz: RAG Architecture and Data Ingestion•6 Minuten
Practice Quiz: Tool Integration and Actuators•6 Minuten
Practice Quiz: Strategy-Grounded Drafting•6 Minuten
Orchestration, Validation, and Deployment (LangGraph)
Modul 3•2 Stunden abzuschließen
Moduldetails
This module introduces learners to orchestrating, validating, and deploying single AI agents using LangGraph. Learners will design execution graphs, implement validation nodes, and integrate reflection loops for self-correction. They will also explore human-in-the-loop techniques and conditional logic for decision-making. Finally, learners will package their agent as a RESTful API, monitor its performance, and scale workflows for robust operation. By the end of this module, learners will have a fully operational, production-ready agent capable of autonomous task execution.
Das ist alles enthalten
10 Videos4 Lektüren4 Aufgaben
Infos zu Modulinhalt anzeigen
10 Videos•Insgesamt 37 Minuten
Graph Theory and Motivation•3 Minuten
Anatomy of a Graph: Nodes, Edges, and Defining Graph State•4 Minuten
Hands-On: Mapping the SDR Workflow Designing the Full Execution Graph•3 Minuten
Hands-On: Building the Validation Node Creating the LLM-as-a-Judge•3 Minuten
Hands-On: Implementing the Reflection Loop Routing for Self-Correction•4 Minuten
Hands-On: Conditional Edges and the Logic of Decision-Making in the Graph•5 Minuten
Hands-On: Integrating Manual Approval into the Workflow•4 Minuten
Hands-On: Finalizing the Actuator and Ensuring Atomic CRM Logging•3 Minuten
Hands-On: Packaging the Agent as a RESTful API with FastAPI•4 Minuten
Hands-On: Monitoring, Scaling, and Advanced Multi-Agent Systems•6 Minuten
4 Lektüren•Insgesamt 40 Minuten
Building the State Machine•10 Minuten
Advanced Control and Self-Correction•10 Minuten
Productionizing the Agent•10 Minuten
Summary: Orchestration, Validation, and Deployment (LangGraph)•10 Minuten
4 Aufgaben•Insgesamt 33 Minuten
Knowledge Check: Orchestration, Validation, and Deployment (LangGraph)•15 Minuten
Practice Quiz: Building the State Machine•6 Minuten
Practice Quiz: Advanced Control and Self-Correction•6 Minuten
Practice Quiz: Productionizing the Agent•6 Minuten
Course Wrap-Up and Assessment
Modul 4•1 Stunde abzuschließen
Moduldetails
This module provides learners with an opportunity to synthesize their knowledge and demonstrate mastery of single-agent AI workflows. Learners will review key concepts from agentic foundations, RAG pipelines, and LangGraph orchestration. They will complete graded assessments, including scenario-based exercises and end-of-course knowledge checks, to apply their understanding in practical contexts. By the end of this module, learners will be able to confidently design, implement, and evaluate a fully functional single AI agent capable of reasoning, tool use, and executing grounded tasks.
Das ist alles enthalten
1 Video1 Lektüre2 Aufgaben
Infos zu Modulinhalt anzeigen
1 Video•Insgesamt 3 Minuten
Course Summary•3 Minuten
1 Lektüre•Insgesamt 15 Minuten
Practice Project: Single Agent Response Model•15 Minuten
Edureka is an online education platform focused on delivering high-quality learning to working professionals. We have the
highest course completion rate in the industry and we strive to create an online ecosystem for our global learners to equip
themselves with industry-relevant skills in today’s cutting edge technologies.
What is an AI agent, and how is it different from a regular AI like ChatGPT?
AI agents can not only chat but also take actions, use tools, and remember things to complete tasks. Regular AI models mainly generate text without acting or remembering.
Do I need programming skills to take this course?
You only need basic Python knowledge. Step-by-step instructions are provided for all coding exercises, so beginners can follow along easily.
What does ReAct mean in this course?
ReAct stands for Reasoning + Acting. It teaches agents to think, take action, observe results, and improve, making them smarter than standard AI models.
What kinds of tools will I learn to build?
You’ll learn how to create tools that help your agent search the web, fetch information, and log activities. This includes connecting your agent to simple apps and databases.
What is RAG, and why is it useful?
RAG (Retrieval-Augmented Generation) helps your agent find and use real information from documents, so its answers are accurate and reliable.
Will I learn how to make my AI follow workflows or rules?
Yes! You’ll see how to map out tasks step by step, check the AI’s work, and even include manual approvals when needed, making your agent smart and reliable.
Can I make my agent work in real life or online?
Absolutely. You’ll learn to package your agent as an online service (API) and monitor it so it can run safely and scale to handle real tasks.
How will I be tested in this course?
Each module has short quizzes to check understanding and practical exercises where you build and test your agent, so you can apply what you’ve learned in real scenarios.
When will I have access to the lectures and assignments?
To access the course materials, assignments and to earn a Certificate, you will need to purchase the Certificate experience when you enroll in a course. You can try a Free Trial instead, or apply for Financial Aid. The course may offer 'Full Course, No Certificate' instead. This option lets you see all course materials, submit required assessments, and get a final grade. This also means that you will not be able to purchase a Certificate experience.
What will I get if I subscribe to this Specialization?
When you enroll in the course, you get access to all of the courses in the Specialization, and you earn a certificate when you complete the work. Your electronic Certificate will be added to your Accomplishments page - from there, you can print your Certificate or add it to your LinkedIn profile.
Is financial aid available?
Yes. In select learning programs, you can apply for financial aid or a scholarship if you can’t afford the enrollment fee. If fin aid or scholarship is available for your learning program selection, you’ll find a link to apply on the description page.
Finanzielle Unterstützung verfügbar, weitere Informationen
¹ Einige Aufgaben in diesem Kurs werden mit AI bewertet. Für diese Aufgaben werden Ihre Daten in Übereinstimmung mit Datenschutzhinweis von Courseraverwendet.