Agentic AI bootcamp

Learn to build AI agents that reason, plan, and act

From reasoning models to a multi-agent application you deploy and keep: ten weeks, 30 hours, three hours every Tuesday morning — so you build alongside the job you already have. Taught live online by practitioners who have built and run these systems in production at their own companies.

$2,499 with code AGENTIC500, normally $3,000. Three cohorts a year, live online.

Who it's for

Who should attend

  • Data and AI professionals

    Data scientists, ML engineers, AI engineers, analytics leads

    You have worked with LLMs. Now build systems that reason, plan and act — integrating LangChain, vector databases and RAG into workflows that decide what to do rather than only what to say.

  • Engineers and developers

    Software engineers at any level, backend and platform engineers, solutions architects

    Take an agent from notebook to production: connecting APIs, tuning performance, and handling the edge cases that only show up once something real is calling your tools.

  • Product leaders and builders

    Product managers, product directors, technical founders

    Go beyond prompts. Understand the architecture under an agent well enough to scope one — which workflows it can automate, and which requests are a week versus a quarter.

Curriculum

From reasoning models to production-ready agents

Every module pairs lecture with discussion and hands-on exercises. The programme ends with a multi-agent application you build and keep.

Modules10

Introduction to agentic AI

Lecture · Discussion · Practical exercise

What separates an agent from a prompt: reasoning models against classic LLMs, the three pillars of cognition, context and autonomy, memory and RAG as context strategies, single- versus multi-agent architectures, and the guardrails, monitoring and governance an autonomous system needs from the start.

Key topics

  • Foundations of Agentic AI: From next-token prediction to reasoning models; limitations of classic LLMs vs reasoning LLMs; the core pillars of agentic systems—reasoning, context, and autonomy.
  • Understanding LLMs: Context windows, session memory, and long-term memory (vector databases, knowledge graphs, summaries); data sources including pre-training, fine-tuning, and in-context learning.
  • Retrieval-Augmented Generation (RAG): Naïve RAG workflows and common challenges; RAG as a context enhancement strategy; preparing and structuring data for effective RAG pipelines.
  • Agentic AI Components: Cognition (reasoning, planning, self-reflection), knowledge representation, and autonomy through tool use, action execution, and monitoring.
  • Agentic Design Patterns: Planning, tool use, and reflection loops; Agentic RAG, routers, and iterative loops; sequential, parallel, and hierarchical workflows.
  • Architectures for Agents: Single-agent vs multi-agent systems; human-in-the-loop strategies; hybrid reasoning pipelines and decision graphs.
  • Advanced Context Techniques: Session summaries, hybrid memory systems, Model Context Protocol (MCP), and scalable context management.
  • Observability, Safety & Governance: Guardrails, explainability, monitoring and evaluation, ethical alignment, and compliance strategies.
  • Hands-On Exercises: Practical implementations of reasoning workflows, memory systems, RAG pipelines, and safe agent design.

Transformers & attention mechanism

Lecture · Discussion · Practical exercise

Transformers from the ground up: tokenization, embeddings, positional encoding, and self-attention with keys, queries and values. Hands-on with Sentence Transformers, semantic search, and implementing attention scoring directly.

Key topics

  • Introduction to LLMs: Strengths and weaknesses of large language models
  • Discriminative versus Generative AI: Predictive models contrasted with generative models
  • Transformer Architecture: Tokenization, embeddings, positional encoding, and attention
  • Embeddings and Similarity: Representing words as vectors and measuring closeness
  • Attention Mechanism: Keys, queries, and values in self-attention
  • Softmax and Probabilities: Converting scores to probabilities for next-word prediction
  • Training and Fine-Tuning: Adapting models with curated data for new tasks
  • Search and Retrieval: Building a semantic search engine with embeddings
  • Retrieval Augmented Generation (RAG): Combining retrieval with generation for grounded answers
  • Hands-On Exercises: Sentence Transformers, semantic search, attention scoring, and attention mechanisms

Mastering LangChain

Lecture · Discussion · Practical exercise

Core components, output parsers, retrieval and vector stores, chains, tool use, and LCEL composition — the building blocks for assembling a retrieval application that holds together end to end.

Key topics

  • Introduction to LangChain: Purpose and scope of LangChain; building LLM-powered applications; common challenges in implementing Retrieval-Augmented Generation (RAG).
  • Core Components: LLMs and chat models; prompt templates and example selectors; document loaders and transformers for preprocessing data.
  • Output Parsers: Extracting structured data; enforcing consistent output formats; handling parsing errors and validation failures.
  • Retrieval: Embedding and vectorization strategies; retrievers and metadata filtering; parent document retrieval for contextual completeness.
  • Vector Stores: Storing embeddings efficiently; performing scalable similarity search; optimizing retrieval for large datasets.
  • Chains: Sequential prompt logic; pre- and post-LLM processing steps; integrating retrieval and tool use into end-to-end chains.
  • Tool Use: Connecting APIs and external systems; feeding tool outputs back into workflows; managing retries and error handling.
  • LangChain Expression Language (LCEL): Building modular workflows using runnable components; piping operations; parallel branches and composable pipelines.
  • Hands-On Exercises: Constructing retrieval chains; parsing structured outputs; combining LangChain modules into coherent, production-ready workflows.

Vector databases and agentic RAG

Lecture · Discussion · Practical exercise

ANN against kNN search, hybrid dense-and-sparse retrieval with metadata filters, MMR re-ranking and HNSW index health — then vector stores as long-term agent memory, with multi-step retrieval loops and semantic caching for cost and latency.

Key topics

  • Vector Database Fundamentals: Embeddings and vector storage; approximate nearest neighbor (ANN) vs k-nearest neighbor (kNN) search; modern vector database architectures and data models.
  • Hybrid Retrieval Design: Combining dense and sparse vectors; applying metadata filters and payload indexing; full-text tokenization for mixed semantic and keyword queries.
  • Advanced Techniques: Maximal Marginal Relevance (MMR) for improving result diversity; Discovery APIs for broader coverage; monitoring and maintaining HNSW index health.
  • Agentic RAG Concepts: Using AI-native vector databases as long-term memory for agents; multi-step retrieval with reasoning loops; context selection strategies and hallucination mitigation.
  • Semantic Caching: Caching semantically similar queries using vector similarity; time-to-live (TTL) and invalidation policies; optimizing cost and latency.
  • Hands-On Exercises: Exploring AI-native vector database fundamentals; implementing hybrid search; applying re-ranking techniques such as MMR; monitoring HNSW index health; building a RAG pipeline with agentic orchestration.

Context engineering

Lecture · Discussion · Practical exercise

Designing what the agent can see: retrieval, memory layers and critique loops; deterministic chains against router agents; LangGraph nodes, edges and state; and the multi-agent architectures — parallel, sequential, hierarchical — that keep a long workflow auditable.

Key topics

  • Complex Agentic Workflows: Designing workflows with system and user prompts; integrating retrieval, memory layers, web search, and vector databases; implementing critique and refinement loops.
  • Deterministic Chains and Control Flows: Building sequential pipelines with pre- and post-LLM steps; enforcing structured task execution and predictable control logic.
  • Agent Reliability and Dynamic Decisions: Using router agents and conditional flows; balancing autonomy with control for robust task execution.
  • LangGraph Fundamentals: Understanding nodes, edges, and state management; condition-based execution for reliable and auditable workflows.
  • Tool Integration: Connecting APIs, databases, and external systems through node-based tool calls; updating shared state after execution.
  • Agentic Design Patterns: Reflection for self-critique; tool use for external actions; planning for task decomposition and structured reasoning.
  • Multi-Agent Collaboration: Implementing parallel, sequential, loop, and router flows; incorporating error handling and human supervision strategies.
  • Multi-Agent Architectures: Designing hierarchical delegation systems; approval nodes; shared memory and resource coordination.
  • Hands-On Experience: Practical implementation of advanced context engineering concepts across agentic workflows and multi-agent systems.

Agentic design patterns

Lecture · Discussion · Practical exercise

Reflection, planning, tool use and multi-agent collaboration as named patterns: what each one buys, what it costs in autonomy against control, and how to compose them into a hybrid workflow rather than picking one and hoping.

Key topics

  • Why Agentic Patterns Matter: Transforming single-pass prompting into iterative, goal-oriented reasoning loops for more adaptive and reliable systems.
  • Reflection Pattern: Enabling agents to evaluate, critique, and refine their own outputs through structured feedback and revision cycles.
  • Planning Pattern: Designing stepwise reasoning flows that decompose complex goals, manage task dependencies, and adapt dynamically to new information.
  • Tool Use Pattern: Connecting models with external systems to retrieve data, execute actions, and extend problem-solving capabilities beyond the model’s internal knowledge.
  • Multi-Agent Collaboration Pattern: Coordinating specialized agents with defined roles; enabling structured communication and collaborative problem-solving.
  • Pattern Trade-Offs: Balancing autonomy with control, flexibility with stability, and creativity with reliability in agent design.
  • Pattern Composition: Integrating reflection, planning, and tool use into hybrid workflows for building more capable and adaptive agents.
  • Hands-On Labs: Implementing individual patterns and combining them into complete, production-ready agent workflows for real-world tasks.

Agentic AI protocols

Lecture · Discussion · Practical exercise

Why agents need protocols at all — discovery, negotiation and state management across MCP, A2A and ACP, how their scope and message types differ, and which one fits a given workflow. Labs build an MCP client in Streamlit.

Key topics

  • Multi-Agent Coordination: Collaboration challenges in multi-agent systems; message routing and task orchestration; scaling cooperation while maintaining stability and control.
  • Need for Agentic Protocols: Establishing discovery and negotiation mechanisms; structured task and state management; enabling secure and reliable agent cooperation.
  • Model Context Protocol (MCP): Client–server architecture for LLM tool integration; standardized access to data and prompts; exposing tools, resources, and templates in a structured way.
  • MCP Architecture: Roles of hosts, clients, and servers; message exchange formats and artifacts; connecting applications, IDEs, and assistants within unified workflows.
  • Agent-to-Agent Protocol (A2A): Task-oriented communication flows; capability discovery using Agent Cards; structured message parts and artifact formats for coordination.
  • Agent Communication Protocol (ACP): Open ecosystem for cross-agent interaction; routing, discovery, and dynamic updates; interoperability across frameworks and platforms.
  • MCP vs ACP vs A2A: Comparing scope, architectural complexity, and message types; selecting appropriate protocols for different workflow requirements.
  • Hands-On Exercise – MCP Client with Streamlit: Setting up the development environment; installing dependencies and configuring API access; connecting an MCP client to servers; discovering tools; automating workflows through tool invocation, data retrieval, and output validation.

Model Context Protocol

Lecture · Discussion · Practical exercise

The "USB-C for AI": client-server handshake, resources, tools and prompts over JSON-RPC; exposing context with governance and controlled access; connecting MCP endpoints to planning and multi-agent patterns.

Key topics

  • Origins & Motivation: Addressing fragmented integrations and brittle bespoke adapters; introducing a unified, interoperable interface — the “USB-C for AI.”
  • Protocol Structure: Client–server handshake model; defining resources, tools, and prompts; JSON-RPC transport with structured, schema-driven messages.
  • Context Exposure: How MCP surfaces tools, data, and metadata through a consistent schema to enable discoverability, governance, and controlled access.
  • Agentic Integration: Connecting MCP endpoints to reflection, planning, tool-use, and multi-agent coordination patterns for modular and scalable systems.
  • Hands-On Labs: Setting up an MCP client in Streamlit; discovering and registering tools; automating workflows through data retrieval and validation; logging traces for monitoring and review.

Evaluation of agents

Lecture · Discussion · Practical exercise

Benchmarks (MMLU, HELM, BBH), text-quality metrics (BLEU, ROUGE, BERTScore), RAG-specific scoring with RAGAs, open-ended evaluation with G-Eval, plus ranking and reasoning metrics — measuring an agent before it meets real users.

Key topics

  • Need for Evaluation: Reliability, accuracy, and safety; business and ethical alignment; transparency and user trust.
  • Challenges in Evaluation: Hallucinations and prompt sensitivity; weak context grounding; subjectivity and trade-offs between accuracy, fluency, and creativity.
  • Benchmarking Approaches: MMLU for multitask accuracy; HELM for robustness and fairness; BBH and HotpotQA for reasoning and multi-hop QA.
  • Text Quality Metrics: BLEU for precision; ROUGE for recall; BERTScore for semantic similarity.
  • RAG Evaluation (RAGAs): RAGAS for faithfulness and answer relevance; context precision and recall; joint retrieval-generation scoring.
  • G-Eval: G-Eval for fluency, faithfulness, relevance; claim-level scoring of open-ended outputs.
  • Additional Benchmarks: GLUE for NLU; TriviaQA for QA; RealToxicityPrompts for safety; Blended Skill Talk for dialogue quality.
  • Other Metrics: Perplexity for confidence; METEOR for alignment; MRR and MAP for ranking; ROSCOE for reasoning quality.
  • Hands-On Exercises: Apply RAGAS to RAG pipelines; compare BLEU, ROUGE, BERTScore; evaluate agent outputs using G-Eval.

Build a multi-agent LLM application

Lecture · Guided lab · Independent project

The capstone. Choose a project track — conversational orchestration, knowledge-enhanced agent, document-aware action agent, or MCP-coordinated collaboration — and ship a production-ready multi-agent application with provided datasets, guides and sandbox templates.

Project tracks

  • Conversational Workflow Orchestration: Design a multi-turn assistant coordinating tasks across specialized agents.
  • Knowledge-Enhanced Agent: Integrate search and APIs for grounding, fact-checking, and real-time data access.
  • Document-Aware Action Agent: Retrieve and reason over documents; trigger external tools or services based on insights.
  • Orchestrated Collaboration (MCP): Build coordinated multi-agent systems using the Model Context Protocol for seamless tool and enterprise integration.

Attendees will receive

  • Comprehensive datasets: Industry-spanning document collections for robust development and testing.
  • Step-by-step implementation guides: Clear instructions from environment setup to deployment.
  • Ready-to-use code templates: Prebuilt templates within Data Science Dojo’s sandbox for accelerated development.

Learners can choose to implement

  • Virtual Assistant
  • Content Generation (Marketing Co-pilot)
  • Conversational Agent (Legal & Compliance Assistant)
  • Content Personalizer
  • MCP Chatbot — an AI agent with calendar, CRM, and API integrations

Outcome

A production-ready multi-agent application demonstrating mastery of reasoning, retrieval, tool use, and protocol-driven interoperability.

Upcoming sessions
Tuition

$2,499$3,000

Code AGENTIC500$500 off — enter at checkout

  • Live sessions with industry experts
  • 1-year access to learner sandboxes
  • Exclusive access to Agentic AI coding labs
  • Access to companion course content for review at your convenience
  • Verified certificate upon completion

Tuition benefits accepted — you may be eligible to attend free.

Pick a cohort

Every cohort runs ten weeks online — three hours each Tuesday from 9 AM to 12 PM PST, with the same instructors.

Full refund up to five business days before your cohort starts, or transfer to a later date at no charge. Not sure which cohort fits? Talk to an advisor.

A word from our alumni
  • Exceptional, hands-on initiation into LLMs and practical applications.
    Jeff FongPrincipal Product Manager, HOVER Inc
  • Six months of course material access post-training is invaluable.
    Abrar BhuiyanSoftware Application Engineer, ICF
  • Instructors simplified complex topics effectively.
    Fatemeh Shah-MohammadiResearch Assistant Professor, University of Utah
  • A rewarding opportunity to help students of all backgrounds within a passionate community.
    Sage ElliotAI Engineer, WhyLabs
  • Hands-on experience with expert instructors and a comprehensive framework.
    Bernard TumanjongChief Operations Analysis, US Space Force
  • Commendable resource provision and helpful staff — one of the best courses.
    Fahad AlswainaSr. Data Solutions Associate, KAPSARC
  • Top-notch speakers, hands-on workshops, and great networking.
    Kevin SongSoftware Engineer, ICF
  • Comprehensive curriculum covering generative AI, prompt engineering, and data retrieval.
    Taimur RashidAdvisor, Weaviate
  • Collaborating with Data Science Dojo nurtures the next generation of LLM developers.
    Harrison ChaseCo-Founder and CEO, LangChain
  • Enriched my understanding of the language-tech intersection.
    Erika DavisSenior Business Reporting Analyst, Starbucks
  • Shifted my problem-solving approach and sparked creativity.
    Aishwariya RamanSenior Software Engineer, Microsoft
  • Seamless navigation and invaluable hands-on exercises.
    Maryam BagheriSenior Data Scientist, Deloitte
  • Blend of theory and hands-on experience suited all backgrounds.
    Dave HortonVP Solutions Engineering, Odaseva
FAQ

Frequently asked questions

Who does the Agentic AI Curriculum target?
The Agentic AI bootcamp is designed for both technical and non-technical professionals, including engineers, product managers, and business leaders alike. While it includes high-level modules on AI fundamentals, prompt engineering, and strategic deployment, it also dives deep into technical components for developers.
What is the duration of the bootcamp?
The bootcamp is a 10-week, 30-hour program.
Will I receive a certificate?
Yes. You will receive a verified certificate of completion.
Will I get a Certificate after the completion of the bootcamp?
Yes. Participants who complete the bootcamp will receive a verified certificate of completion. This certificate can be a valuable addition to your professional portfolio and demonstrate your expertise in building large language model applications.
What is the difference between the Agentic AI and the LLM bootcamp?
The LLM bootcamp covers the fundamentals of large language models and takes you through a complete learning track—from the basics to deployment. In contrast, the Agentic AI bootcamp focuses specifically on building and deploying AI agents, so we dive straight into hands-on development.
Are the online sessions live?
Yes. Sessions are live and are designed to be highly interactive.
What benefits will I receive in the Agentic AI bootcamp?
When you join, you receive: Live sessions with industry experts, 1-year access to dedicated learner sandboxes, Exclusive access to Agentic AI coding labs, Access to all session recordings for review at your convenience, A verified certificate upon completion
What if I'm unable to attend a live session?
While we do not provide exact recordings of the live sessions, all key topics and content covered during the class are available in our companion courses. We've created structured lesson clips that reflect the material discussed, allowing you to review everything at your convenience even if you miss a live session.
Are there any prerequisites for the bootcamp?
You need a very basic level of Python programming for our Agentic AI bootcamp. We offer preparatory material to help you get started.
What does the preparatory material include?
Basic understanding of LLM fundamentals and Python.
  • LLM architectures: foundation models, prompts, embeddings, fine-tuning
  • Challenges & risks: prompt brittleness, context limits, security, cost
  • Transformers & attention: self-attention, multi-head attention, tokenization
When will I receive the preparatory material for the bootcamp?
The preparatory material will be shared about two weeks before the bootcamp starts. You'll receive an email with access details and instructions closer to the start date.
Are cloud subscriptions included?
No. Cloud subscriptions are not included, so participants will need to use their own accounts.
What is the transfer policy for the bootcamp?
Transfers are allowed once with no penalty. Transfers requested more than once will incur a $200 processing fee.
What is the refund policy?
If, for any reason, you decide to cancel, we will gladly refund your registration fee in full if you notify us at least five business days before the start of the training. We can also transfer your registration to another cohort if preferred. However, refunds cannot be processed if you have transferred to a different cohort after registration. Additionally, once you have been added to the learning platform and have accessed the course materials, we are unable to issue a refund, as digital content access is considered program participation.
Will I get a job after completing the bootcamp?
While we do not specifically focus on job placement, we actively promote networking with our partners, attendees, and an extensive network of alumni. Once you register for the bootcamp, we are happy to assist with introductions if you're looking to connect with professionals in your desired field.

Looking to upskill your team?

Corporate cohorts, private training, and volume pricing for teams of five or more.