On November 30, 2022, a team at OpenAI released, almost in passing, a chatbot they called "a research preview." They were not expecting much. Five days later it had a million users; two months later, a hundred million. But the story of ChatGPT does not begin that night. It begins much earlier, in a chain of ideas that clicked into place one after another until, almost by surprise, they produced something that knew how to hold a conversation.
Telling the story of ChatGPT as a bolt of lightning in 2022 is the classic mistake. What launched that day was the final link in a decade of technical advances, each built on the one before. This is the journey along that chain: the milestones that, added together, made it possible for a machine to seem to understand us.
01 · the architecture2017: the piece that changed everything
If any single date marks the true birth of ChatGPT, it is 2017. That year, eight Google researchers published a paper with a title that read almost like a dare: Attention Is All You Need. They were introducing a new architecture for processing language, the Transformer [1].
Until then, the networks that processed text read it in order, word by word, like someone sweeping a flashlight down a line. They were slow, and they forgot the beginning of a long sentence by the time they reached the end. The Transformer broke with that: instead of reading in a line, it looked at all the words at once and computed, for each one, how much it should "pay attention" to the rest. That mechanism, attention, solved two problems in one stroke: it captured long-range relationships within a text far better and, being parallelizable, it could be trained on enormous machines without choking.
Everything that came afterward was possible because an architecture stopped reading in a line and learned to look at the whole text.
02 · the scaleFrom 2019 to 2020: grow until something new appears
With the Transformer on the table, OpenAI made a bet that sounded reckless at the time: if this architecture works, what happens if we make it gigantic? The GPT family (Generative Pre-trained Transformer) was the answer. GPT-2, in 2019, already wrote paragraphs so coherent that OpenAI hesitated to release the full model for fear of its misuse. It was the first sign that something different was underway.
In 2020 came GPT-3, and with it a surprise that reordered the field. The model had 175 billion parameters, roughly a hundred times more than its predecessor. At that size it began to do things nobody had explicitly trained it for: translate, summarize, answer questions, write code, given just a couple of examples inside the prompt itself [2]. The paper describing it carried a revealing title: Language Models are Few-Shot Learners. Learning from a handful of examples, without retraining, was not part of the plan: it emerged from scale.
What made GPT-3 special was not its size in itself, but that its size made new abilities appear that did not exist in smaller versions. The field began to speak of "emergent capabilities": functions that only show up once the model crosses a certain threshold of scale. It was proof that growing further was worth it, and it set the course toward what would come next.
03 · the turn2022: teaching the model some manners
Here is the part usually missing from the popular account. GPT-3 was astonishing and, at the same time, nearly unusable for the public. It was a colossal autocomplete engine: if you typed a question, it might just as easily answer it as continue it with another question, because its only trade was predicting the next stretch of text, not helping you. Powerful, but unruly.
The decisive turn came in early 2022, when OpenAI published InstructGPT. The idea: take the raw model and tune it with human judgments so that it followed instructions instead of merely completing text. The technique is called RLHF, reinforcement learning from human feedback. People compared the model's responses, marked which they preferred, and with that flow of preferences it was retrained toward what people chose [3].
Scale gave it knowledge; RLHF gave it manners. Without the second, ChatGPT would have been a laboratory curiosity.
| Advance | Year | What it contributed to ChatGPT |
|---|---|---|
| Transformer | 2017 | The architecture that allows training at large scale and understanding broad context |
| Scale (GPT-2 / GPT-3) | from 2019 to 2020 | The knowledge and emergent capabilities that arise from size |
| RLHF (InstructGPT) | 2022 | The docility: following instructions and conversing instead of merely autocompleting |
ChatGPT, released in November 2022, was essentially that recipe applied to a model of the GPT-3.5 family and wrapped in a free, simple chat interface. Nothing it did under the hood was, strictly speaking, brand new that day: the Transformer was five years old, scale was two, RLHF came from months before. What was new was bringing it all together and placing it, without friction, in anyone's hands.
04 · the closeWhy "out of nowhere" is a myth worth dismantling
It is worth holding on to the chain shape, because it explains the phenomenon better than any tale of sudden genius. ChatGPT was not an isolated invention: it was the point where three lines of research (an architecture, a bet on scale and a tuning technique) finally crossed. Each link depended on the one before. Without the Transformer there was no viable scale; without scale there was no knowledge; without RLHF there was no conversation.
Understanding that chain changes how you read the present. What looks like sudden magic is usually, up close, years of accumulated work that one day find their wrapping. The next time a model "comes out of nowhere," it is worth asking what decade of papers and bets was waiting for it. There almost always is one.
Sources
- Vaswani, A., Shazeer, N., Parmar, N. et al. (2017). Attention Is All You Need. Advances in Neural Information Processing Systems (NeurIPS) 30. arXiv:1706.03762.
- Brown, T., Mann, B., Ryder, N. et al. (2020). Language Models are Few-Shot Learners (GPT-3). Advances in Neural Information Processing Systems (NeurIPS) 33. arXiv:2005.14165.
- Ouyang, L., Wu, J., Jiang, X. et al. (2022). Training Language Models to Follow Instructions with Human Feedback (InstructGPT). Advances in Neural Information Processing Systems (NeurIPS) 35. arXiv:2203.02155.
Learn more about AI
See all Learn AIWhat RLHF Is: How a Model Learns Its Manners
A raw model says useful things and terrible things in the same tone. RLHF is the upbringing that teaches it to prefer the useful ones.
HistoryA brief history of AI: from Turing to the transformers
None of the machines that talk to us today would exist without an uncomfortable question posed in 1950, an optimistic summer in 1956 and two winters that nearly buried it all. This is the story of that stubbornness.
MethodHuman in the loop: why the best AI keeps people inside
Human in the loop is not distrust of AI. It is designing when it decides alone and when a person reviews, so the result gains value without losing control.