SESSION 1 · ~45M
Capabilities & failure modes
Knowing how a model fails is more useful than knowing how it succeeds — failure modes are predictable, and predictable failures you can design around.
Models fail in characteristic ways, and once you can name the failure mode you can usually prevent it. Four matter most for day-to-day work.
Hallucination: fluent guessing
Because the model predicts likely tokens, it can produce a confident, well-formed sentence that is simply false — a citation that doesn't exist, a function that was never in the library, a statistic invented to sound right. Fluency is not truth. The model has no internal sense of certainty, which is why it sounds equally assured whether right or wrong.
Context windows: finite working memory
The context window is the model's working memory for a conversation — measured in tokens. Cram it past capacity and the model silently drops the earliest material, leading to 'forgetting' instructions or earlier facts. Long chats degrade not because the model got tired, but because the window overflowed.
- Knowledge cutoff: training has a date. Recent events, prices, or library versions may be absent or wrong — verify anything time-sensitive.
- Prompt injection: text inside a document the model reads can carry hidden instructions ('ignore previous rules…'). Treat any external text the model ingests as untrusted input.
Rule of thumb for trust: the more a wrong answer would cost you, the more you verify. Use the model freely for ideation and drafting; confirm hard before stakes — numbers, citations, code that ships, legal or medical claims.
TRY IT
Ask a model for a specific, verifiable fact but seed it with a fake-sounding plausible detail (a non-existent study). See whether it corrects you or politely agrees. The result teaches you exactly how much to trust fluent prose.
CHECK YOUR UNDERSTANDING
Why can a model produce a confident, well-formed sentence that is completely false?
What causes a model to 'forget' instructions given earlier in a long conversation?
What is prompt injection in the context of LLM failure modes?
NOTEBOOKLM
Connect your notebook
Paste a NotebookLM share link to embed your notebook for this module.