The story of large language models (LLMs) from 2020 to the present is a story of scaling, alignment, and democratization. In five years, LLMs went from a research curiosity to infrastructure — embedded in search engines, code editors, customer support systems, and scientific workflows. This article traces that arc.
For the broader context of AI and machine learning fundamentals, see Artificial Intelligence.
OpenAI's GPT-3, released in June 2020, was a 175 billion parameter autoregressive language model trained on a large corpus of internet text. It was not the first large language model — GPT-2 (1.5B parameters, 2019) and Turing-NLG (17B parameters, 2020) preceded it — but GPT-3 crossed a qualitative threshold. It could write essays, generate code, translate languages, answer questions, and perform tasks it was never explicitly trained for through few-shot prompting: provide a few examples in the prompt, and the model generalizes.
GPT-3 demonstrated three things that shaped everything that followed:
Kaplan et al. at OpenAI published scaling laws in January 2020 showing that model performance improves as a smooth power law with model size, dataset size, and compute. This gave labs a roadmap: spend more compute, get better models.
DeepMind's Chinchilla paper (2022) refined this by showing that most models were over-parameterized and under-trained. Chinchilla, a 70B parameter model trained on 1.4 trillion tokens, matched the performance of the 280B parameter Gopher while using the same compute budget. The implication was clear: you should scale data and parameters together, roughly in proportion.
This insight shifted the industry. Labs began investing as heavily in data quality and quantity as in model size.
The raw capabilities of base language models are impressive but unreliable. A base model will happily generate harmful content, confidently state falsehoods, or produce incoherent rambling. The breakthrough that made LLMs commercially viable was Reinforcement Learning from Human Feedback (RLHF).
The RLHF pipeline, refined by Anthropic and OpenAI, works in three stages:
InstructGPT (January 2022) demonstrated that RLHF could make a smaller model preferred by humans over a much larger base model. ChatGPT (November 2022) brought this to the public. It reached 100 million users in two months — the fastest consumer product adoption in history.
Anthropic's Constitutional AI (CAI) extended this approach by using a set of written principles (a "constitution") to guide the model's behavior, reducing reliance on large-scale human rating while maintaining alignment.
GPT-4 (March 2023) represented a step change in reasoning, factuality, and instruction-following. It was also natively multimodal — capable of processing images alongside text. GPT-4 scored in the 90th percentile on the bar exam and demonstrated strong performance across academic benchmarks that previous models struggled with.
Anthropic's Claude models (Claude 1, 2, 3, 3.5, and 4 families) emphasized long-context understanding, nuanced instruction-following, and safety. Claude 3 (2024) introduced a tiered model family — Haiku, Sonnet, and Opus — at different capability/cost tradeoffs. Claude's extended context windows (up to 200K tokens) enabled new use cases: analyzing entire codebases, processing long legal documents, and maintaining coherent conversations over extended interactions.
Google's Gemini models (2023–2025) were designed as natively multimodal from the ground up, processing text, images, audio, and video within a unified architecture. Gemini Ultra competed at the frontier, while Gemini Nano targeted on-device deployment.
Meta's release of LLaMA (February 2023) and its successors — LLaMA 2, LLaMA 3, and LLaMA 4 — democratized access to high-capability models. Mistral AI (founded 2023, Paris) released efficient open-weight models that punched above their parameter count. DeepSeek (China) pushed open-weight model quality further with DeepSeek-V2 and R1.
The open-weight movement changed the economics of AI:
Early GPT-3 had a 2,048 token context window. By 2025, frontier models routinely handle 128K–200K tokens, and some experimental systems process over 1 million tokens. Techniques enabling this include:
MoE architectures activate only a subset of model parameters for each input token, dramatically reducing inference cost. Mixtral 8x7B (Mistral, 2023) demonstrated that a 47B total parameter MoE model could match dense 70B models while being much cheaper to run. GPT-4 is widely believed to use an MoE architecture.
Models improved significantly at multi-step reasoning through:
Making large models practical for deployment required significant optimization:
The LLM landscape in 2025–2026 is characterized by:
| Trend | Description |
|---|---|
| Commoditization of capability | Tasks that required frontier models in 2023 can now be handled by smaller, cheaper models |
| Specialization | Domain-specific models for code, medicine, law, and science outperform general-purpose models in their domains |
| Multimodal by default | Text-only models are the exception; most new models process text, images, audio, and video |
| Agentic workflows | Models that can plan, use tools, and execute multi-step tasks autonomously |
| On-device deployment | Small but capable models running on phones, laptops, and edge devices |
| Safety as table stakes | RLHF, constitutional AI, and red-teaming are standard practice, not differentiators |
Despite remarkable progress, LLMs have fundamental limitations:
Understanding these limitations is essential for using LLMs effectively. See Practical Prompt Engineering for strategies that work within these constraints.
| Date | Milestone |
|---|---|
| Jun 2020 | GPT-3 (175B parameters) released |
| Jan 2022 | InstructGPT demonstrates RLHF effectiveness |
| Nov 2022 | ChatGPT launches, reaches 100M users in 2 months |
| Feb 2023 | Meta releases LLaMA, sparking open-weight movement |
| Mar 2023 | GPT-4 released (multimodal, strong reasoning) |
| Jul 2023 | LLaMA 2 released under permissive license |
| Dec 2023 | Mistral releases Mixtral 8x7B (MoE architecture) |
| Feb 2024 | Google launches Gemini 1.5 with 1M token context |
| Mar 2024 | Claude 3 family (Haiku, Sonnet, Opus) released |
| Sep 2024 | OpenAI releases o1 (reasoning-focused model) |
| Apr 2025 | LLaMA 4 released; Claude 4 family launched |