Intro to LLMs (Slide Deck)
Slide decks in this playbook are authored in Markdown using Slidev and exported to HTML. The page below embeds the exported deck.
Deck source (Slidev)
The underlying slides.md lives at decks/intro-to-llms/slides.md. Author it like this:
---theme: seriphtitle: Intro to LLMs---
# Intro to LLMs
A 15-minute tour.
---
## What is an LLM?
- A very large neural network- Trained to predict the next token- Emergent behavior: reasoning, code, translation
---
## Three ways to customize
1. Prompting2. RAG3. Fine-tuning
---
## When to pick which
| Need | Pick ||---|---|| Style / tone change | Prompting || Fresh / private data | RAG || New skill / task | Fine-tuning |Build & publish
# one-timenpm i -g @slidev/cli
# authorslidev decks/intro-to-llms/slides.md # live preview
# export to static HTML for embeddingslidev build decks/intro-to-llms/slides.md --base /decks/intro-to-llms/ --out public/decks/intro-to-llmsCommit public/decks/intro-to-llms/, push, done — the iframe above will load it.