Which request matches how an LLM actually works?
Which request matches how an LLM actually works?
You are talking to a text model with no web access and no memory of previous conversations. It generates each response by predicting the next token over and over.
Which request is the best fit for that mechanism?
Hint
Ask: does the request rely on stored facts or exact recall, or on continuing text I provide?
Why this is the answer
An LLM repeatedly answers one narrow question: what comes next? That makes continuation-style tasks natural (rewrite, continue, restructure, translate) and makes lookups, exact recall and “what did we say” requests unnatural. Understanding the mechanism turns these failures from surprises into expected behaviour.