agentic

    Agentic AI Course

    Build autonomous AI agents with planning, tool use, memory, multi-agent orchestration & production agentic workflows.

    80
    Lessons
    8
    Modules
    0/80
    Completed

    Architecture

    Autonomous Agent Loop

    How an agent perceives its goal, plans steps, calls tools, observes results, and iterates until task completion.

    Goal
    user task
    Planner
    LLM reasoning
    Action
    tool call
    Tool
    API / code
    Observation
    result
    loop
    Answer
    final
    ReAct Loop
    Reason · Act · Observe
    Multi-Agent
    Planner · Worker · Critic
    Memory
    Short + long-term store
    Tool Use
    Function calling + RAG
    Curriculum

    Enterprise learning path

    8 modules · 80 lessons

    AI Fundamentals

    0/10 complete
    1. 1
      Agentic AI Home
      Next 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…

    2. 2
      Introduction to AI

      Artificial Intelligence (AI) is the field of building software that performs tasks normally requiring human intelligence — understanding language, recognising images, making dec…

    3. 3
      What 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…

    4. 4
      AI vs Agentic AI

      Classic AI answers questions; Agentic AI achieves goals.

    5. 5
      History of AI Agents

      AI agents are older than ChatGPT.

    6. 6
      Neural Networks Basics

      A neural network is layers of simple math units ("neurons") that learn to transform inputs into outputs by adjusting weights during training.

    7. 7
      How LLMs Work

      Large Language Models (LLMs) like GPT-4, Claude, Gemini and Llama predict the next token (a word piece) given the previous tokens.

    8. 8
      Tokens & Embeddings

      Two foundations of every LLM and agent: tokens (the units the model sees) and embeddings (numeric vectors that capture meaning).

    9. 9
      AI Reasoning Basics

      Reasoning is an LLM's ability to break a problem into steps and combine intermediate results into an answer.

    10. 10
      Real-World AI Applications

      Agentic AI is already deployed across coding, support, sales, research, gaming, healthcare, finance, security and government.

    LLMs & Prompt Engineering

    0/10 complete
    1. 11
      Introduction to LLMs

      An LLM is a transformer trained on huge text corpora to predict the next token.

    2. 12
      Transformer Architecture

      Every modern LLM is a transformer — a neural net built around self-attention.

    3. 13
      Prompt Engineering Basics

      Prompt engineering is the discipline of writing instructions that reliably steer an LLM.

    4. 14
      Zero-Shot Prompting

      Zero-shot means asking the model with no examples — just the instruction.

    5. 15
      Few-Shot Prompting

      Few-shot means including 1-5 worked examples in the prompt.

    6. 16
      Chain of Thought Prompting

      Chain-of-Thought (CoT) asks the model to show its working before the final answer.

    7. 17
      System Prompts

      The system prompt sets the agent's persona, rules, constraints and tool contract.

    8. 18
      Context Management

      The context window is the limited workspace an LLM sees per call.

    9. 19
      Prompt Optimization

      Prompt optimization turns prompt engineering from art into engineering: define an eval set, measure baseline, iterate with versions, ship the winner.

    10. 20
      AI Output Control

      Output control = forcing the model to return what your code can parse.

    AI Agents Fundamentals

    0/10 complete
    1. 21
      What 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.

    2. 22
      Agent Architecture

      A production agent is more than a while-loop.

    3. 23
      Planning & Reasoning

      Planning turns a high-level goal into a sequence of doable steps.

    4. 24
      Memory Systems

      Agents need memory to be useful beyond one turn.

    5. 25
      Reflection Loops

      Reflection is the agent critiquing its own output and trying again if it's not good enough.

    6. 26
      Autonomous Agents

      Autonomous agents run without a human in the loop for every step — only checked at milestones.

    7. 27
      Tool Calling Basics

      Tool calling lets the LLM emit a structured request to invoke a function — your code runs it and returns the result.

    8. 28
      Agent State Management

      State = everything the agent knows mid-run: plan, step results, scratchpad, memories, tool call history.

    9. 29
      Agent Communication

      When agents talk to each other (or to humans), use a structured protocol: JSON messages with type, sender, payload.

    10. 30
      Real Agent Workflows

      Production agents typically fit one of a handful of workflow patterns: ReAct, Plan-Execute, Router, Reflection, Multi-Agent.

    Agentic Workflows

    0/10 complete
    1. 31
      AI Workflow Basics

      An AI workflow is a directed graph of steps — some LLM, some tool, some classic code.

    2. 32
      Task Decomposition

      Task decomposition is splitting a goal into smaller, doable subtasks.

    3. 33
      Planning Systems

      A planning system generates, validates and revises plans.

    4. 34
      Sequential Workflows

      A sequential workflow runs steps one after another.

    5. 35
      Parallel Workflows

      A parallel workflow runs independent steps simultaneously and joins their results.

    6. 36
      AI Decision Trees

      An AI decision tree is a workflow where each node is a classification step that routes to the next branch.

    7. 37
      Workflow Orchestration

      Orchestration = the engine that runs, retries, persists and observes the workflow.

    8. 38
      Autonomous Execution

      Autonomous execution = running long agent tasks without human ticks.

    9. 39
      Retry Mechanisms

      Agent steps fail — tools time out, JSON breaks, LLMs hallucinate.

    10. 40
      Enterprise Workflow Design

      Enterprise AI workflows add governance, audit, role-based tools, multi-tenant isolation, SSO, PII handling and compliance.

    Multi-Agent Systems

    0/10 complete
    1. 41
      Multi-Agent Introduction

      A multi-agent system is several specialised agents that collaborate to achieve a goal.

    2. 42
      Agent Collaboration

      Collaboration = agents producing artefacts together (drafts, plans, code).

    3. 43
      Agent Coordination

      Coordination = deciding who does what when.

    4. 44
      AI Communication Protocols

      An AI communication protocol standardises how agents (and tools) talk.

    5. 45
      Role-Based Agents

      Role-based agents embody specific personas — Researcher, Coder, QA, Designer.

    6. 46
      Supervisor Agents

      A supervisor agent assigns tasks to specialists, evaluates their output and decides next steps.

    7. 47
      Research Agents

      A research agent autonomously searches sources, reads, synthesises and cites.

    8. 48
      Coding Agents

      A coding agent reads a repo, plans changes, edits files, runs tests and iterates.

    9. 49
      Multi-Agent Planning

      When multiple agents share a goal, planning must consider who does what.

    10. 50
      Enterprise Multi-Agent Systems

      Enterprise multi-agent systems run inside large companies with strict requirements: identity, audit, region, cost, SLA, compliance.

    RAG & Tool Calling

    0/10 complete
    1. 51
      Introduction 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.

    2. 52
      Embeddings

      Embeddings are dense vectors that capture semantic meaning.

    3. 53
      Vector Databases

      A vector database stores embeddings and supports fast nearest-neighbour search.

    4. 54
      Semantic Search

      Semantic search finds results by meaning, not keywords.

    5. 55
      Tool Calling

      Tool calling (a.k.a.

    6. 56
      API Integration

      Most useful agents integrate with external APIs — Salesforce, Stripe, GitHub, Slack, internal services.

    7. 57
      External Knowledge Systems

      Agents often need to query external knowledge beyond a vector DB: Wikipedia, internal wiki, SQL DBs, search engines.

    8. 58
      AI Memory Systems

      Production agents need explicit memory systems — not just a longer context.

    9. 59
      RAG Optimization

      Production RAG optimization turns a mediocre demo into a stellar product.

    10. 60
      Production AI Retrieval Systems

      A production retrieval system handles ingestion, embedding, indexing, querying, monitoring and reindexing at scale.

    AI Automation & Deployment

    0/10 complete
    1. 61
      AI Automation Basics

      AI automation = running agents on triggers (cron, webhook, queue) to do work without human prompts.

    2. 62
      AI Deployment

      Deploying agents means shipping them as services with autoscaling, queues, secrets, monitoring and rollbacks.

    3. 63
      AI Monitoring

      Agents fail in new ways: silent hallucinations, infinite loops, runaway cost.

    4. 64
      AI Security

      Agents introduce new attack surfaces: prompt injection, tool abuse, data exfiltration, jailbreaks.

    5. 65
      AI Cost Optimization

      Cost optimization = matching model + prompt + caching strategy to each step.

    6. 66
      Scaling AI Systems

      Scaling agents means handling concurrent users, long runs and bursty traffic without melting your wallet or your provider rate limits.

    7. 67
      Autonomous Automation

      Autonomous automation is the holy grail — agents that detect work to do, do it, and report back.

    8. 68
      AI Workflow Optimization

      Workflow optimization = remove steps, parallelise others, cache repeats, swap models, batch where possible.

    9. 69
      Enterprise AI Infrastructure

      Enterprise AI infrastructure includes a model gateway, prompt registry, eval platform, observability, secret management, and data isolation per tenant.

    10. 70
      Production 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

    0/10 complete
    1. 71
      AI Agent Exercises

      Practice cements the theory.

    2. 72
      Prompt Engineering Challenges

      Ten focused prompt-engineering challenges to sharpen your intuition.

    3. 73
      Multi-Agent Challenges

      Hands-on multi-agent designs — each pushes a different muscle: coordination, debate, swarm, hand-off, supervisor.

    4. 74
      AI Workflow Challenges

      Ten workflow design challenges: DAGs, parallelism, retries, durability, human-in-loop.

    5. 75
      Tool Calling Challenges

      Sharpen your tool-calling skills: schemas, validation, retries, multi-tool selection, error feedback.

    6. 76
      AI Interview Questions

      Curated interview questions covering beginner → expert → scenario.

    7. 77
      Mock AI Interviews

      Ten mock interview prompts you can run with a friend or an LLM partner.

    8. 78
      Enterprise AI Scenarios

      Realistic enterprise scenarios you'll face on the job — compliance, multi-tenant, scale, cost, governance.

    9. 79
      AI Debugging Tasks

      Debugging agents is its own skill.

    10. 80
      Production AI Case Studies

      Eight production case studies to study deeply — what they shipped, what they learned, what broke.