ConceptModels & Foundations
Foundation & Frontier Models
At a glance
Large pretrained models adaptable to many tasks; 'frontier' = the most capable current generation.
- Who this is for
- Engineers and technical readers learning the terms used in AI systems.
- Topics
- Models & Foundations
- Concept
A foundation model is one large model, trained once on a huge and broad dataset, that can then be adapted to many different tasks instead of just one. The term comes from Stanford's Center for Research on Foundation Models, whose 2021 report (Bommasani and over a hundred co-authors) defined them as models "trained on broad data at scale" that are "adaptable to a wide range of downstream tasks." The name captured a real shift in how AI gets built: before roughly 2020, you trained a separate model for translation, another for summarization, another for sentiment. Now one general base powers all of them.
Why "foundation": train once, adapt everywhere#
The defining trait is broad pretraining followed by wide reuse. During pretraining, the model reads trillions of tokens of web text, books, and code and learns by self-supervision: the data labels itself, typically by hiding the next word and asking the model to predict it. No human writes labels, which is what makes web-scale training feasible at all.
The economics explain everything else about this market. A frontier-scale pretraining run costs hundreds of millions of dollars in compute, but it only has to happen once. After that, the same weights answer support tickets, draft contracts, and write SQL. The expensive part, learning how language and the world work, is amortized across every downstream use. That is why a handful of labs train bases and thousands of companies build on top, rather than every company training its own.
One base, many products#
Adaptation is cheap relative to pretraining, and it comes in three escalating forms. Prompting changes nothing but the input: instructions and a few examples via in-context learning can repurpose the model in minutes. Fine-tuning nudges the weights with a few thousand task examples to lock in format, tone, or domain behavior. RAG leaves the model alone and pipes your private documents into the prompt at query time.
Worked example: a regional bank ships four AI features in a quarter on a single model family. A customer chatbot (prompting plus RAG over policy docs), a loan-document summarizer (prompting), a transaction-dispute classifier (fine-tuned small model), and an internal coding assistant (the vendor's off-the-shelf product). Zero model training from scratch, four products, one base.
Frontier vs commodity: the capability tiers#
Not every foundation model is a frontier model. "Frontier" refers to the most capable current generation: the small set of models trained with the largest compute budgets that define the state of the art at any moment. The Frontier Model Forum, the industry body founded by the major labs, ties the label to the most advanced systems, and regulators (the EU AI Act, the US compute-threshold rules) use training compute as a rough proxy for it.
As of mid-2026 the frontier tier means OpenAI's GPT-5 series (GPT-5.5 shipped in spring 2026), Anthropic's Claude line (the Opus 4.x models and the newer Fable generation), Google's Gemini 3 Pro models, and xAI's Grok 4 series. The frontier is a moving target: today's frontier model is next year's mid-tier, which is why hardcoding a model name deep in your product is a mistake.
Below the frontier sits the commodity tier: the labs' own small models (the mini, flash, and haiku lines) plus a deep bench of open-weight models. These typically cost 10x to 100x less per token than flagships, with small open models priced as low as a few cents per million tokens, and they are entirely adequate for classification, extraction, routing, and routine drafting. A useful 2026 heuristic: roughly 80% of production LLM calls do not need a frontier model.
Closed API vs open-weight#
Foundation models ship in two ways, and the choice is structural, not just technical.
Closed API models (the flagship GPT, Claude, and Gemini systems) are reachable only through a vendor endpoint. You get the strongest available capability with zero infrastructure, but your data transits a third party, prices and behavior can change under you, and you cannot inspect or modify the weights.
Open-weight models publish their weights for download: Meta's Llama 4 line, DeepSeek's V3 and V4 series, Alibaba's Qwen 3 family, and others. You can run them in your own VPC or on-premise, fine-tune them freely, pin a version forever, and keep regulated data inside your perimeter. The costs are real too: you own GPU capacity planning, serving infrastructure, and security patching, and you accept a capability lag. Epoch AI measured the best open models trailing the best closed models by 5 to 22 months, roughly a year on average, though 2025 and 2026 releases from DeepSeek and Qwen have narrowed that gap to months on coding and reasoning benchmarks.
Worked example: a healthcare company with strict data-residency rules runs Llama 4 in its own cloud for anything touching patient records, and calls a frontier closed API for marketing copy and internal tooling where no sensitive data flows. The split is governed by data classification, not by which model is "best."
How to choose as a buyer#
Treat model selection as a portfolio decision, not a single bet. The practical sequence: prototype on a frontier closed model first, because it removes capability as the variable; if the best available model cannot do the task, no cheaper one will. Once the workflow proves out, measure it with evals and route the easy traffic down-tier to commodity or open models, keeping the frontier model for the hard 20%. Production systems increasingly automate this with model routing.
Ask four questions of any model choice: Is the task hard enough to need frontier capability? Can this data leave our infrastructure? What does a million calls a month cost at this price per token? How painful is switching when a better model ships in six months (it will)?
Practical takeaways#
Foundation models exist because pretraining is brutally expensive and adaptation is cheap; build on a base, never from scratch. "Frontier" is a tier, not a brand, and its membership rotates yearly. Prove value on a frontier model, then route most traffic to commodity models for 10x to 100x savings. Choose open weights for control, privacy, and price; choose closed APIs for peak capability and zero ops. And design for portability, because the single safest prediction in this market is that your current model will be obsolete within eighteen months.