Every later module assumes you can point at a piece of the stack and say what it does and what it costs you. This one draws that map. The canonical end-to-end architecture behind an agentic application: tokenization, embeddings and how models generate text; the loop that turns a model into an agent — plan, call a tool, observe, decide again; vector databases and similarity search as the memory that loop reads from; prompt engineering best practices; the three paths to a custom application; and where retrieval breaks down in production.
LLM bootcamp
Learn to build scalable, secure, governed AI agents and deploy them in production
The LLM bootcamp takes you from transformer internals to a secure, governed multi-agent application you deploy and keep: twelve modules, five days, 40 hours — taught by practitioners who have built and run these systems in production at their own companies. In Seattle or live online.
$3,499 with code LLM1500, normally $5,000. Four cohorts a year, Seattle or live online.
- 4.95Rating from 660+ verified reviews
- 12,000+Alumni
- 3,000+Companies trained
- 40Hours of hands-on training
Who should attend
Engineers and technical leaders
Software engineers at any level, ML engineers, engineering managers
Whether you write the inference code or field the question "can we build this with AI?", you leave with an architecture, a cost model, and an honest read on what breaks in production.
Product leaders
Product managers, product directors, VPs of product
You do not need to write the inference code. You do need to know why your team's RAG pipeline returns confident nonsense, and which requests are a week of work versus a quarter.
Consultants and integrators
Consulting firms, systems integrators, solution engineers, technical pre-sales
Clients are asking for AI capability faster than your bench can build it. This is the fastest route from "we have Python people" to scoping and delivering an LLM engagement.
From beginner to production-ready agents
Twelve modules in five stages. Every module pairs lecture with discussion or hands-on exercises, and the week ends with a production-ready multi-agent application you build and keep — sandboxed, access-controlled, and audited.
IFoundations4 h
Modules 01–02
How these models actually work — from tokens and embeddings to attention.
IIContext and retrieval8 h
Modules 03–04
Grounding: vector search that holds up, and context pipelines that survive real traffic.
IIICore agent mechanics12 h
Modules 05–07
Chains, then stateful graphs, then tools other systems can call.
IVTrustworthy AI5 h
Modules 08–09
Measure it before you ship it, and watch what it does once you have.
VDeployment11 h
Modules 10–12
Tune it, pattern it, secure it, deploy it — and keep it.
What you take home
A multi-agent application you build from a bare model call up — in your GitHub, live at your own URL
You start from a boilerplate repository that does nothing but call a model, and add one layer at a time until it is an agent: memory, retrieval, context through MCP, then reasoning, then the guardrails that make it safe to run. It ends up in your own GitHub account, deployed to a dedicated cloud URL you can send to anyone. A year of sandbox access, LLM tokens and GPU clusters comes with it, so the thing keeps running after you leave.
- Memory and retrieval
- MCP context sources
- ReAct and reflection
- Deep agents
- Guardrails
Included
- 1 year
- Learner and coding sandbox access
- GPU
- Clusters and LLM tokens for the exercises
- Datasets
- Industry-spanning document collections
- Certificate
- Verified certificate of completion
Comprehensive practitioner curriculum
IFoundations
Nearly every constraint you hit later traces back to what happens inside the model: why context runs out, why one embedding beats another, what fine-tuning can and cannot move. You cannot reason about those from the outside. Where large language models are strong and where they are not, and how generative models differ from discriminative ones. Then transformers from the ground up: tokenization, embeddings and similarity, positional encoding, self-attention with keys, queries and values, and the softmax step that turns raw scores into probabilities — followed by how these models are trained and fine-tuned, and how the same embeddings power search and retrieval. Hands-on with Sentence Transformers, semantic search, and implementing attention scoring directly.
IIContext and retrieval
Retrieval sets the ceiling on everything above it. An agent that reads the wrong chunk gives the wrong answer, and no orchestration further up the stack recovers it — so this is the module that raises the ceiling. How embeddings turn meaning into geometry, and what a vector database does with them: semantic search, keyword search, and the hybrid search that beats either on its own; the index structures underneath — HNSW (hierarchical navigable small world), PQ (product quantization) and LSH (locality-sensitive hashing) — and what each one trades away in speed, memory or recall; then query rewriting, re-ranking, auto-cut, embedding compression, multi-tenancy, and the scaling problems that only surface at real query volume.
A retrieval demo works on the first try. The same pipeline in production meets private data, several languages and modalities, a latency budget, and someone asking for evidence that it works — which is where most teams stall. PII-safe ingestion and compliant retrieval; multimodal and multilingual pipelines; advanced architectures (DSPy, KG-RAG, self-improving retrieval); index optimization across FAISS, Qdrant, and Pinecone; evaluation with Precision@K, LLM-as-a-Judge, TruLens, and Phoenix; and controlling latency and cost at scale.
IIICore agent mechanics
This is where you stop reasoning about the stack and start building on it. It also fixes the vocabulary — components, chains, tools, memory — that the next two modules assume you already have. Core components, output parsers, retrieval and vector stores, chains, tool use and memory, callbacks and observability, LCEL composition, and LangGraph for orchestrating multi-agent workflows with dynamic control flow.
The chains you just built stop holding the moment an agent runs many steps, and prompt engineering stops scaling with them. This module makes state the thing you design rather than a side effect of the prompt. Graphs instead of chains, typed state with reducers, checkpointers and thread scoping for short-term memory, a store for what outlives a conversation, and the trimming, summarisation and subgraph patterns that keep a long-running agent’s context window from filling with its own history.
An agent is only as useful as the systems it can reach, and hand-wiring each one does not survive the second integration. MCP is how a tool gets exposed once and called by anything — including agents you did not write. 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. Labs: building an MCP client in Streamlit.
IVTrustworthy AI
By now you can build an agent. This is the module that tells you whether it is any good — because without a number, “it feels better” is the only review you can give a change, and no one signs off on a demo. Benchmarks (MMLU, HELM, BBH), text-quality metrics (BLEU, ROUGE, BERTScore, perplexity), RAG-specific evaluation with RAGAs, open-ended scoring with G-Eval, and safety evaluation — measuring what actually matters before shipping.
Evaluation tells you whether a system was good on your test set; observability tells you what it did last night, on traffic no test set anticipated. It is the half of trustworthy AI that only starts working after launch. Traces, spans and sessions across a multi-step agent run; how to instrument one and which tools to run it through; online evaluation against live traffic; capturing user feedback and human annotation; the cost, latency and drift signals that belong on a dashboard before launch; and how to work back from a failed run to the step that actually broke it.
VDeployment
The most expensive wrong turn in an LLM project is fine-tuning a model when better retrieval would have fixed the problem. This module is about knowing which lever you are reaching for, and what it costs to pull. Full fine-tuning versus LoRA and QLoRA; when fine-tuning beats RAG and when it cannot help; data quality as the primary lever. In class: instruction fine-tuning and deploying a quantized LLaMA model. Take-home: fine-tuning on Azure AI Studio.
You have seen every part by now. This is how they get assembled, so you start your next project from a shape that already works in production instead of inventing one against a deadline. The handful of architectures that recur across production agent deployments — single agent with tools, supervisor and workers, hierarchical teams, human-in-the-loop review — with the serving infrastructure, cost, reliability and rollout characteristics of each. Includes running agents safely inside Docker sandboxes, with policy enforcement and a reusable take-home deployment pattern.
By now you have seen every component of an agentic application on its own. This is where they become one system. You are given boilerplate code for each piece and instructions for assembling them in increasing order of complexity: a bare LLM wrapper with no agentic behavior, then memory, a vector database, and further context through the MCP servers the job needs; then reasoning, from ReAct through reflection to deep agents; then the guardrails that make it safe to run. You push the result to your own GitHub account and deploy it to a dedicated cloud URL you can share. You leave with an end-to-end understanding of the architecture and hands-on experience of the full lifecycle.
Learn from the people building this stack
Raja IqbalFounder, Ejento AI
Luis SerranoHead of Developer Relations, Serrano Academy
Kartik TalamadupulaDistinguished Architect, Oracle
Past guest speakersThese are all the guest speakers who have spoken at past cohorts. Who joins any given cohort depends on their availability.
Jerry LiuCo-founder, LlamaIndex
Zain HasanStaff AI/ML Engineer, Together AI
Sophie DalyStaff Data Scientist at Stripe
Leonid YankulinDeveloper Advocate, Google
Adam CowleyStaff Developer Advocate, Neo4j
Dan NdombeStaff Developer Success Advocate, Docker
Rehan JalilPresident & CEO, Securiti
Sage ElliottAI Engineer at Union
Hamza FarooqFounder, Traversaal AI
Suman DebnathPrincipal Developer Advocate, Anyscale
$3,499$5,000
Code LLM1500$1,500 off — enter at checkout
- 40 hours of theory and hands-on learning
- Live sessions with industry experts
- 1-year sandbox access
- LLM tokens and GPU clusters
- Verified certificate
Tuition benefits accepted — you may be eligible to attend free.
Pick a cohort
All cohorts run Monday to Friday, 9 AM to 5 PM PT, with the same instructors in person and online.
- August 24–28, 2026Summer cohortSeattle — register for August 24–28, 2026Online — register for August 24–28, 2026
- November 2–6, 2026Fall cohortSeattle — register for November 2–6, 2026Online — register for November 2–6, 2026
Full refund up to five business days before your cohort starts, or transfer to a later date at no charge. Not sure which format fits? Talk to an advisor.
4.95 from 660+ verified reviews
The Large Language Models bootcamp has been a game-changer for me. I returned to delve deeper into machine learning and AI, and the immersive week-long format provides a unique learning experience. I've witnessed firsthand the transformative power of applying these techniques in our production environment.
David Martins Gonçalves — read the full review (opens in a new tab)CTO, Notify Brand Technology The most thrilling revelation for me was the multi-step problem-solving approach that mirrors human thinking, offering limitless applications with creative usage of LLMs. I now feel empowered to tackle complex challenges at work with the knowledge gained from this enriching experience.
Aishwarya Raman — read the full review (opens in a new tab)Senior Software Engineer, Microsoft Azure The Data Science Dojo LLM Bootcamp is a hands-on experience, delving into LLMs and their real-world applications. Expert instructors provide a comprehensive framework with a practical focus, enabling you to fine-tune, evaluate, deploy, and monitor LLM applications.
Bernard Tumanjong — read the full review (opens in a new tab)Chief Operations Analysis, US Space Force
Frequently asked questions
How much does the LLM bootcamp cost?
Why pay for the LLM bootcamp when there are free LLM courses?
How is the LLM bootcamp different from the agentic AI bootcamp?
I am from a non-technical background. Is the LLM bootcamp also for me?
Are there any prerequisites?
I don't have a background in Python. Can I still join the LLM bootcamp?
What does the LLM bootcamp include?
Is the price for the online and in-person sessions different?
What is the refund policy?
What is the transfer policy for the LLM bootcamp?
Will I receive a certificate?
What is the duration of the LLM bootcamp?
Are the online sessions live?
Where is the in-person LLM bootcamp held?
What if I'm unable to attend a live session?
Looking to upskill your team?
Corporate cohorts, private training, and volume pricing for teams of five or more.