Agentic AI Course
Build autonomous AI agents with planning, tool use, memory, multi-agent orchestration & production agentic workflows.
Architecture
Autonomous Agent Loop
How an agent perceives its goal, plans steps, calls tools, observes results, and iterates until task completion.
Enterprise learning path
AI Fundamentals
- 1Agentic AI HomeNext up
Welcome to the Agentic AI Engineering track — your complete, production-grade roadmap to building autonomous AI agents, multi-agent systems, and enterprise AI automation from sc…
- 2Introduction to AI
Artificial Intelligence (AI) is the field of building software that performs tasks normally requiring human intelligence — understanding language, recognising images, making dec…
- 3What is Agentic AI?
Agentic AI is software where one or more LLMs autonomously plan and execute multi-step tasks by calling tools, retrieving knowledge, reflecting on results and adjusting their pl…
- 4AI vs Agentic AI
Classic AI answers questions; Agentic AI achieves goals.
- 5History of AI Agents
AI agents are older than ChatGPT.
- 6Neural Networks Basics
A neural network is layers of simple math units ("neurons") that learn to transform inputs into outputs by adjusting weights during training.
- 7How LLMs Work
Large Language Models (LLMs) like GPT-4, Claude, Gemini and Llama predict the next token (a word piece) given the previous tokens.
- 8Tokens & Embeddings
Two foundations of every LLM and agent: tokens (the units the model sees) and embeddings (numeric vectors that capture meaning).
- 9AI Reasoning Basics
Reasoning is an LLM's ability to break a problem into steps and combine intermediate results into an answer.
- 10Real-World AI Applications
Agentic AI is already deployed across coding, support, sales, research, gaming, healthcare, finance, security and government.
LLMs & Prompt Engineering
- 11Introduction to LLMs
An LLM is a transformer trained on huge text corpora to predict the next token.
- 12Transformer Architecture
Every modern LLM is a transformer — a neural net built around self-attention.
- 13Prompt Engineering Basics
Prompt engineering is the discipline of writing instructions that reliably steer an LLM.
- 14Zero-Shot Prompting
Zero-shot means asking the model with no examples — just the instruction.
- 15Few-Shot Prompting
Few-shot means including 1-5 worked examples in the prompt.
- 16Chain of Thought Prompting
Chain-of-Thought (CoT) asks the model to show its working before the final answer.
- 17System Prompts
The system prompt sets the agent's persona, rules, constraints and tool contract.
- 18Context Management
The context window is the limited workspace an LLM sees per call.
- 19Prompt Optimization
Prompt optimization turns prompt engineering from art into engineering: define an eval set, measure baseline, iterate with versions, ship the winner.
- 20AI Output Control
Output control = forcing the model to return what your code can parse.
AI Agents Fundamentals
- 21What are AI Agents?
An AI agent is a software entity that perceives its environment, decides on an action and executes it — repeatedly — to achieve a goal.
- 22Agent Architecture
A production agent is more than a while-loop.
- 23Planning & Reasoning
Planning turns a high-level goal into a sequence of doable steps.
- 24Memory Systems
Agents need memory to be useful beyond one turn.
- 25Reflection Loops
Reflection is the agent critiquing its own output and trying again if it's not good enough.
- 26Autonomous Agents
Autonomous agents run without a human in the loop for every step — only checked at milestones.
- 27Tool Calling Basics
Tool calling lets the LLM emit a structured request to invoke a function — your code runs it and returns the result.
- 28Agent State Management
State = everything the agent knows mid-run: plan, step results, scratchpad, memories, tool call history.
- 29Agent Communication
When agents talk to each other (or to humans), use a structured protocol: JSON messages with type, sender, payload.
- 30Real Agent Workflows
Production agents typically fit one of a handful of workflow patterns: ReAct, Plan-Execute, Router, Reflection, Multi-Agent.
Agentic Workflows
- 31AI Workflow Basics
An AI workflow is a directed graph of steps — some LLM, some tool, some classic code.
- 32Task Decomposition
Task decomposition is splitting a goal into smaller, doable subtasks.
- 33Planning Systems
A planning system generates, validates and revises plans.
- 34Sequential Workflows
A sequential workflow runs steps one after another.
- 35Parallel Workflows
A parallel workflow runs independent steps simultaneously and joins their results.
- 36AI Decision Trees
An AI decision tree is a workflow where each node is a classification step that routes to the next branch.
- 37Workflow Orchestration
Orchestration = the engine that runs, retries, persists and observes the workflow.
- 38Autonomous Execution
Autonomous execution = running long agent tasks without human ticks.
- 39Retry Mechanisms
Agent steps fail — tools time out, JSON breaks, LLMs hallucinate.
- 40Enterprise Workflow Design
Enterprise AI workflows add governance, audit, role-based tools, multi-tenant isolation, SSO, PII handling and compliance.
Multi-Agent Systems
- 41Multi-Agent Introduction
A multi-agent system is several specialised agents that collaborate to achieve a goal.
- 42Agent Collaboration
Collaboration = agents producing artefacts together (drafts, plans, code).
- 43Agent Coordination
Coordination = deciding who does what when.
- 44AI Communication Protocols
An AI communication protocol standardises how agents (and tools) talk.
- 45Role-Based Agents
Role-based agents embody specific personas — Researcher, Coder, QA, Designer.
- 46Supervisor Agents
A supervisor agent assigns tasks to specialists, evaluates their output and decides next steps.
- 47Research Agents
A research agent autonomously searches sources, reads, synthesises and cites.
- 48Coding Agents
A coding agent reads a repo, plans changes, edits files, runs tests and iterates.
- 49Multi-Agent Planning
When multiple agents share a goal, planning must consider who does what.
- 50Enterprise Multi-Agent Systems
Enterprise multi-agent systems run inside large companies with strict requirements: identity, audit, region, cost, SLA, compliance.
RAG & Tool Calling
- 51Introduction to RAG
Retrieval-Augmented Generation (RAG) grounds an LLM in your private data by retrieving relevant chunks at query time and stuffing them into the prompt.
- 52Embeddings
Embeddings are dense vectors that capture semantic meaning.
- 53Vector Databases
A vector database stores embeddings and supports fast nearest-neighbour search.
- 54Semantic Search
Semantic search finds results by meaning, not keywords.
- 55Tool Calling
Tool calling (a.k.a.
- 56API Integration
Most useful agents integrate with external APIs — Salesforce, Stripe, GitHub, Slack, internal services.
- 57External Knowledge Systems
Agents often need to query external knowledge beyond a vector DB: Wikipedia, internal wiki, SQL DBs, search engines.
- 58AI Memory Systems
Production agents need explicit memory systems — not just a longer context.
- 59RAG Optimization
Production RAG optimization turns a mediocre demo into a stellar product.
- 60Production AI Retrieval Systems
A production retrieval system handles ingestion, embedding, indexing, querying, monitoring and reindexing at scale.
AI Automation & Deployment
- 61AI Automation Basics
AI automation = running agents on triggers (cron, webhook, queue) to do work without human prompts.
- 62AI Deployment
Deploying agents means shipping them as services with autoscaling, queues, secrets, monitoring and rollbacks.
- 63AI Monitoring
Agents fail in new ways: silent hallucinations, infinite loops, runaway cost.
- 64AI Security
Agents introduce new attack surfaces: prompt injection, tool abuse, data exfiltration, jailbreaks.
- 65AI Cost Optimization
Cost optimization = matching model + prompt + caching strategy to each step.
- 66Scaling AI Systems
Scaling agents means handling concurrent users, long runs and bursty traffic without melting your wallet or your provider rate limits.
- 67Autonomous Automation
Autonomous automation is the holy grail — agents that detect work to do, do it, and report back.
- 68AI Workflow Optimization
Workflow optimization = remove steps, parallelise others, cache repeats, swap models, batch where possible.
- 69Enterprise AI Infrastructure
Enterprise AI infrastructure includes a model gateway, prompt registry, eval platform, observability, secret management, and data isolation per tenant.
- 70Production Agentic AI Systems
Putting it all together: a production agentic AI system is a hardened, observable, multi-tenant, cost-controlled, safety-vetted product.
Practice & Interview Preparation
- 71AI Agent Exercises
Practice cements the theory.
- 72Prompt Engineering Challenges
Ten focused prompt-engineering challenges to sharpen your intuition.
- 73Multi-Agent Challenges
Hands-on multi-agent designs — each pushes a different muscle: coordination, debate, swarm, hand-off, supervisor.
- 74AI Workflow Challenges
Ten workflow design challenges: DAGs, parallelism, retries, durability, human-in-loop.
- 75Tool Calling Challenges
Sharpen your tool-calling skills: schemas, validation, retries, multi-tool selection, error feedback.
- 76AI Interview Questions
Curated interview questions covering beginner → expert → scenario.
- 77Mock AI Interviews
Ten mock interview prompts you can run with a friend or an LLM partner.
- 78Enterprise AI Scenarios
Realistic enterprise scenarios you'll face on the job — compliance, multi-tenant, scale, cost, governance.
- 79AI Debugging Tasks
Debugging agents is its own skill.
- 80Production AI Case Studies
Eight production case studies to study deeply — what they shipped, what they learned, what broke.