AI Boss Courses / Course 01

LLMs for Work

ChatGPT, Claude, Gemini, Copilot: they all run on the same machinery. This course opens the hood. You will train a small neural network with your own hands, see why these models sometimes invent facts, and leave able to use them at work with skill instead of superstition.

View Curriculum
7Lessons
~90 min7 lessons × 10 min
9Labs & games
20 QsFinal exam
FreeNamed certificate

Outcomes

What You Will Be Able to Do

The Evidence

What the Research Says

40%

less time and 18% higher quality on professional writing tasks for workers using an LLM assistant, in a randomized experiment.

Noy & Zhang, Science 381 (2023)
55.8%

faster completion of a programming task by developers using an LLM coding assistant in a controlled trial.

Peng et al., "The Impact of AI on Developer Productivity" (2023)
+34%

productivity gain for the least experienced customer support agents given an LLM assistant. Experts gained far less. Skill transfers down.

Brynjolfsson, Li & Raymond, NBER 31161 (2023)
$5,000

sanction against lawyers who filed a brief with six fake cases invented by ChatGPT. One skipped step, checking that the cases existed, turned a routine filing into a global story.

Mata v. Avianca, S.D.N.Y. (2023)

Curriculum

7 Lessons, 10 Minutes Each

Sign up free and every lesson unlocks. Each lesson opens as its own full page in the classroom, with its animations, labs, and games, and your progress is saved as you go. Finish with the 20-question exam to earn your certificate.

Demystified

Glossary: Every Term, Plain Words

LLM
Large language model. A neural network trained on huge amounts of text to predict the next token. ChatGPT, Claude, and Gemini are products built around LLMs.
Token
The chunk of text a model reads and writes, roughly three-quarters of a word in English on average.
Parameter / Weight
A learned number inside the model. Billions of them together encode everything the model "knows".
Training
Adjusting the weights, using gradient descent, so the model gets better at predicting text. Done before you ever meet the model.
Inference
Using the trained model to generate answers. What happens when you chat. The weights do not change.
Loss function
The single number that measures how wrong the model currently is. Training pushes it down.
Gradient descent
Repeatedly nudging every weight a small step in the direction that reduces the loss. The engine of all modern AI training.
Attention
The mechanism that lets the model score how relevant every other token is when processing each token.
Transformer
The neural network architecture built on attention (2017). The T in GPT.
Context window
The maximum tokens the model can consider at once. Text outside it is invisible.
Temperature
The knob controlling randomness in word choice. Low = consistent, high = varied.
Few-shot prompting
Including one or more examples of the output you want inside your prompt.
Hallucination
Confident, fluent output that is factually wrong. A structural side effect of predicting plausible text.
Fine-tuning
Additional training on a smaller, specialized dataset to adapt a general model to a specific task or style.
RAG
Retrieval-augmented generation: the system searches your documents first and pastes the relevant passages into the context window so answers cite real sources.
Prompt injection
Hidden instructions inside content the model reads, designed to hijack its behavior.