Day-by-day schedule
Each day builds on the last, taking you from fundamentals to a production-ready AI application by Friday.
Day 1
AI Fundamentals & LLM APIs
Understand how large language models work under the hood. Set up your development environment, get API keys, and make your first calls to Claude and GPT. Learn about tokens, context windows, and response streaming.
await client.messages.create({
model: "claude-sonnet-4-5-20250514",
messages: [{ role: "user", content: "Hello" }]
})Day 2
Prompt Engineering & Patterns
Master the art and science of prompt engineering. Learn system prompts, few-shot patterns, chain-of-thought reasoning, and output structuring. Build a reusable prompt template library for your projects.
const systemPrompt = {
role: "system",
content: "You are a helpful assistant..."
}Day 3
RAG & Knowledge Bases
Dive into Retrieval-Augmented Generation. Learn embedding models, vector databases, chunking strategies, and semantic search. Build a document ingestion pipeline and add Q&A capabilities to your app.
const results = await vectorDb.query({
embedding: await embed(userQuestion),
topK: 5
})Day 4
AI Agents & Tool Use
Learn how to give AI the ability to act. Implement tool definitions, function calling, multi-step reasoning, and safety guardrails. Your agent will be able to search the web, query databases, and execute code.
tools: [{
name: "search_web",
description: "Search the web",
input_schema: { type: "object", ... }
}]Day 5
Capstone Build Day
Put it all together. Combine LLM APIs, prompt engineering, RAG, and agent patterns into a polished, production-ready AI application. Deploy to Vercel and present your creation to peers and mentors.
// Deploy your AI-powered app
await deploy({
app: myAIApp,
platform: "vercel"
})What's included
Every tool, resource, and support channel you need to succeed in your AI builder journey.
5 days of live, interactive sessions
Hands-on workshops led by AI practitioners who ship real products.
1-on-1 AI Architect office hours
Dedicated time with senior AI engineers to unblock you and review your code.
Guided capstone project & review
Build and deploy a real AI-powered application with mentorship.
Certificate of completion
Demonstrate your AI building skills to employers and collaborators.
per seat · 1-week intensive
Final pricing will be announced soon. Join the waitlist to unlock early-bird pricing and priority enrollment.
Get notified when enrollment opens