Rendered Catalog

Source Map

Generated HTML view. Markdown remains canonical.

# Source Map

Maps topics to source material by tier. Navigation only — truth lives in sources/.

Rendered HTML for humans is generated at catalogs/rendered/source-map.html by scripts/render_sources.py. This Markdown file remains canonical.

Format

## [Topic]
Tier 1 (Official Docs): sources/official-docs/...
Tier 2 (Papers): sources/papers/...
Tier 3 (Engineering Blogs): sources/articles/...
Tier 4 (Educational): sources/videos/... or books/...

LLM APIs & Chat Completions

Token Cost & Pricing

Tokenization

Embeddings

Cosine Similarity & Vector Math

Vector Databases & Approximate Nearest Neighbor

Re-Ranking / Two-Stage Retrieval

RAG (Retrieval-Augmented Generation)

Advanced RAG / Query Engineering (Elective 05 — Production & Hardening track)

Extending P04's naive retrieve-then-read with a query-transformation stage — measured against P04's faithfulness eval. Source base for projects/electives/05-advanced-rag-query-engineering/.

Chunking

Memory Systems

Tool Use / Agents

Agent Reliability (Project 08)

Making an autonomous loop safe to leave running. Same agent sources as above, emphasis shifted to when to use an agent and how to bound it. No new sources — these carry over.

Evaluation

System Design / Orchestration (Project 09 — capstone)

Composing the prior subsystems into one system. No new sources — these carry over, with the emphasis on routing, orchestration, provenance, and system-level evaluation.

Model Context Protocol (MCP)

Protocol surface for provider/consumer decoupling. The source base for the MCP Interface Layer elective (projects/electives/01-mcp-interface-layer/) and for comparing hand-wired tools (Projects 06/08/09) with reusable protocol-exposed capabilities.

Guardrails & Safety (Elective 02 — Production & Hardening track)

Hardening an existing capability (P08 agent / P04 RAG) against untrusted input: prompt-injection detection, PII/sensitive-info redaction, and fail-closed output policy. The source base for projects/electives/02-guardrails-safety-layer/.

Cost & Latency (Elective 03 — Production & Hardening track)

Cutting cost/latency of a working feature WITHOUT regressing quality, gated by the Project 07 eval. The source base for projects/electives/03-cost-latency-engineering/.

AI Observability & Ops (Elective 04 — Production & Hardening track)

Instrumenting an agent with standard GenAI telemetry, then monitoring live traces for drift/regression — closing P07's offline→online loop. Source base for projects/electives/04-llm-observability-ops/.

Structured Output & Reliability (Elective 06 — Production & Hardening track)

Making a model's text trustworthy data: extract → validate → repair (fail closed), then constrained decoding to prevent invalid output at generation. Recommended after P06, before P08. Source base for projects/electives/06-structured-output-reliability/.

Agent Self-Improvement Patterns

Optional extensions for Project 08. These are architecture comparisons, not required base-agent behavior.

Knowledge Graphs