A comprehensive 7-week curriculum, progress tracker, and interactive estimator tool designed to master AI Agents, LLM Architecture, RAG, System Prompts, and Agentic Product Development.
Curriculum Completion
0 of 7 Modules Completed
0% COMPLETE
WEEK 01
AI Fundamentals & LLM Architecture for PMs
Understand how Transformer neural networks work under the hood, tokenization mechanisms, context windows, and cost vs. latency trade-offs for product features.
🎯 Core Learning Objectives
Understand the Transformer architecture: Self-attention mechanism, input embeddings, and next-token prediction loops.
Master tokenization math (1 token ≈ 0.75 words / 4 characters in English).
Evaluate Time-to-First-Token (TTFT) and throughput (tokens/sec) budget for user-facing features.
Calculate API costs for input vs. output tokens across GPT-4o, Claude 3.5 Sonnet, and Llama 3.
📖 Key Terminology
TTFT (Time To First Token)
Duration from user query submission to the first streamed character response. Target <800ms.
Context Window
Maximum combined limit of input prompt + output tokens model can process in one turn.
Temperature & Top-P
Hyperparameters controlling randomness/creativity vs. deterministic response output.
🛠️ Hands-On PM Deliverable
Create a Latency & Cost Estimation Budget sheet for a feature expecting 50,000 daily active queries.
WEEK 02
Prompt Engineering, System Prompts & Context Management
Master zero-shot, few-shot prompting, system instruction design, structured JSON output schemas, and security against prompt injection.
🎯 Core Learning Objectives
Write production-grade System Prompts specifying persona, task boundaries, tone, and fallbacks.
Implement Chain-of-Thought (CoT) prompting to improve reasoning on complex multi-step tasks.
Enforce structured JSON output formatting with Pydantic or JSON Mode for API integration.
Identify and mitigate Indirect Prompt Injection and jailbreaking vulnerabilities.
📖 Key Terminology
Few-Shot Prompting
Providing 2-5 input/output examples within the prompt to guide output structure and style.
Prompt Injection
Security exploit where untrusted user input overrides developer system instructions.
🛠️ Hands-On PM Deliverable
Draft a production-ready System Prompt for a Customer Support Classifier with JSON output schema.
WEEK 03
AI Agents & Agentic Workflows (ReAct, Tools & Planning)
Explore autonomous agents, the Reason + Act (ReAct) execution loop, tool-calling APIs, multi-agent orchestrations, and long-term memory.
🎯 Core Learning Objectives
Understand the 4 core components of an Agent: Perception, Planning, Memory, and Tool Execution.
Implement the ReAct loop: Thought → Action → Observation → Final Answer.
Design Function Calling schemas (OpenAI / Anthropic tool-use definitions).
Architect Multi-Agent patterns: Supervisor-Worker, Router, and Evaluator-Optimizer loops.