Chart Gallery

Browse all 48 course visualizations. Each chart is a standalone Python-generated PDF that can be downloaded or viewed.

Showing 48 of 48 charts

Week 1: Introduction to Agentic AI

Agent Definition

Comparison of agent vs standard LLM inference patterns

diagram Week 1

ReAct Paradigm

The Reasoning-Acting cycle with thought, action, observation loop

flowchart Week 1

Agent Capabilities

Overview of core agent capabilities and components

diagram Week 1

Autonomy Spectrum

Spectrum from fully manual to fully autonomous systems

scale Week 1

Week 2: LLM Foundations for Agents

CoT vs ToT Comparison

Chain-of-Thought vs Tree-of-Thoughts reasoning patterns

comparison Week 2

Context Window Impact

Effect of context window size on agent performance

plot Week 2

Prompting Strategies

Zero-shot, few-shot, and chain-of-thought comparison

comparison Week 2

Token Efficiency

Token usage across different prompting strategies

bar Week 2

Week 3: Tool Use and Function Calling

MCP Architecture

Model Context Protocol architecture and components

architecture Week 3

Tool Calling Sequence

Sequence diagram for function calling flow

sequence Week 3

Tool Selection

How agents select appropriate tools for tasks

flowchart Week 3

API Comparison

OpenAI vs Anthropic tool use API comparison

comparison Week 3

Week 4: Planning and Reasoning

Hierarchical Planning

Multi-level task decomposition and planning

hierarchy Week 4

Memory Types

Episodic, semantic, and working memory in agents

diagram Week 4

Reflexion Loop

Self-reflection and improvement cycle

flowchart Week 4

Planning Strategies

Comparison of planning approaches (LATS, Plan-and-Solve)

comparison Week 4

Week 5: Multi-Agent Architectures

Communication Topology

Hub-and-spoke, mesh, and hierarchical patterns

network Week 5

Role Specialization

Agent roles in multi-agent systems

diagram Week 5

AutoGen Flow

AutoGen conversation and task flow

flowchart Week 5

Coordination Overhead

Communication cost vs agent count

plot Week 5

Week 6: Agent Frameworks

Framework Comparison

LangGraph vs CrewAI vs AutoGen radar comparison

radar Week 6

LangGraph Flow

State machine and graph execution in LangGraph

flowchart Week 6

State Management

Agent state persistence and checkpointing

diagram Week 6

Orchestration Patterns

Common orchestration patterns for agent workflows

patterns Week 6

Week 7: Advanced RAG

RAG Evolution

Timeline from basic RAG to advanced architectures

timeline Week 7

Self-RAG Flow

Self-RAG architecture with reflection tokens

flowchart Week 7

CRAG Architecture

Corrective RAG pipeline and components

architecture Week 7

Retrieval Comparison

Performance comparison of RAG strategies

comparison Week 7

Week 8: GraphRAG and Knowledge

GraphRAG Architecture

Knowledge graph construction and retrieval flow

architecture Week 8

Entity Extraction

Named entity recognition and relationship extraction

diagram Week 8

Community Detection

Graph community detection and summarization

network Week 8

Query Routing

Local vs global search routing in GraphRAG

flowchart Week 8

Week 9: Hallucination Prevention

Hallucination Types

Taxonomy of intrinsic and extrinsic hallucinations

taxonomy Week 9

Verification Pipeline

Chain-of-Verification (CoVe) pipeline

flowchart Week 9

FActScore Evaluation

Fine-grained atomic fact scoring methodology

diagram Week 9

Mitigation Strategies

Comparison of hallucination mitigation approaches

comparison Week 9

Week 10: Agent Evaluation

Benchmark Landscape

Overview of agent evaluation benchmarks

landscape Week 10

Evaluation Dimensions

Multi-dimensional agent evaluation framework

radar Week 10

AgentBench Results

Performance of models on AgentBench tasks

bar Week 10

Human Evaluation

LLM-as-Judge vs human evaluation comparison

comparison Week 10

Week 11: Domain Applications

Application Domains

Overview of agent application domains

taxonomy Week 11

Code Agents

Architecture of code generation agents

architecture Week 11

Finance Agents

Financial agent architecture and constraints

diagram Week 11

Healthcare Agents

Medical agent safety and regulatory requirements

diagram Week 11

Week 12: Research Frontiers

Research Timeline

Timeline of major agent research milestones

timeline Week 12

Open Problems

Key open research problems in agentic AI

diagram Week 12

Safety Challenges

Agent safety and alignment challenges

taxonomy Week 12

Future Directions

Emerging research directions and opportunities

diagram Week 12

Using These Charts

In Presentations

All charts are designed for Beamer slides at 0.55-0.65 textwidth:

\includegraphics[width=0.55\textwidth]{01_chart_name/chart.pdf}

Regenerating Charts

Each chart has a standalone Python script:

# Run single chart
python L01_Introduction_Agentic_AI/01_agent_definition/chart.py

# Regenerate all charts
for f in L*/*/chart.py; do python "$f"; done

Chart Specifications

Property Value
Figure Size (10, 6)
DPI 300 (print quality)
Font Size 14pt base (scaled for 70% display)
Colors MLPURPLE=#3333B2, MLBLUE=#0066CC, MLORANGE=#FF7F0E


Back to top