Back to Insights
Knowledge

What Is a Foundation Model? Explained for SMEs

6 min lezen
What Is a Foundation Model? Explained for SMEs — practical AI guide for SMEs

A foundation model is a large-scale AI model pretrained through self-supervised learning on broad, unlabeled data (text, code, images) that can later be adapted through fine-tuning or prompting for specific tasks. The term was coined by Stanford HAI in 2021. GPT, Claude, Gemini and Llama are well-known examples; SMEs typically access these models via an API rather than training their own.

A foundation model is a large AI model trained on massive amounts of data and later adapted for many different tasks. It is the technology behind tools like ChatGPT, Claude and Gemini.

A foundation model is a large AI model trained on huge amounts of unlabeled data (text, code, images, or a mix of these) that can later be adapted to perform a wide range of tasks. Instead of building a separate model for every application, a single foundation model serves as the starting point for many different AI tools at once. GPT (from OpenAI), Claude (from Anthropic), Gemini (from Google) and Llama (from Meta) are all examples of foundation models.

A foundation model is a pre-trained AI model that acts as a base for many different applications, rather than a model built for just one narrow task.

The name is deliberate. Stanford's Institute for Human-Centered Artificial Intelligence (HAI) coined the term in 2021 to describe how these models act as a foundation that other applications are built on top of, much like the foundation of a building.

How it works

A foundation model comes together in two stages.

Stage 1: Pretraining

In the first stage, the model is trained on a massive, broad dataset: chunks of the internet, books, code, and sometimes images or audio. This usually happens through self-supervised learning, where the model learns patterns, language structure and relationships in the data without humans having to label every example. Most modern foundation models use a transformer architecture, which is particularly good at recognizing connections between words or concepts across long stretches of text.

The result of this stage is a model with broad, general knowledge, but no specialization in any single task.

Stage 2: Fine-tuning and adaptation

After pretraining, the model is further adapted (fine-tuned) for specific purposes. This can be done with relatively little extra data, because the model already carries the heavy lifting of general knowledge. Examples include:

  • Adapting a model to handle customer service conversations in a specific industry
  • Training a model to summarize legal documents
  • Instructing a model through prompts, without changing its underlying weights (this is called prompt engineering)

This two-stage setup means nobody has to start from scratch. That saves enormous amounts of compute, time and money compared to training an entirely new model for every task.

Why it matters for SMEs

The biggest advantage for small and medium businesses: you never have to train a foundation model yourself. Training a model like GPT-4 or Claude costs millions of euros in compute and requires datasets that only large tech companies can assemble. That is simply not an option for an SME, and it does not need to be.

Instead, you use a foundation model through an API from a provider such as OpenAI, Anthropic or Google. You pay per use (based on the amount of text processed, measured in tokens) and get access to a model that represents years of research and investment.

This lowers the barrier significantly:

Without a foundation modelWith a foundation model
Train your own language model: millions of euros and a specialized teamAccess via an API, pay per use
Build separate algorithms per task (classification, summarizing, translation)Deploy one model for multiple tasks at once
Months to years of development timeA working prototype within days to weeks

For most SME use cases, the question is not 'which model should I train', but 'which existing foundation model fits my task best, and how do I build a usable application around it'.

A concrete example

Say a heating and installation company wants a chatbot on its website to answer customer questions about warranties, scheduling and quotes. The company does not train its own language model. Instead, it:

  1. Picks an existing foundation model (for example via the Anthropic or OpenAI API) as the language engine.
  2. Feeds the model its own business information: terms and conditions, frequently asked questions, pricing details. This often happens through a technique called retrieval augmented generation, where relevant company documents are supplied to the model alongside each question.
  3. Lets the model answer questions in natural language, drawing on both its broad general knowledge and the specific company data.

The same approach works for document processing (automatically categorizing invoices), summarizing customer calls, or drafting marketing copy. The foundation model is always the engine, the application built around it determines what actually happens. Curious how this works in practice for your business, take a look at what AI agents could do for your processes.

When to use it, when not

A foundation model is a powerful tool, but not always the right choice.

Good fit when:

  • The task involves natural language, text or unstructured data (answering questions, summarizing, writing, classifying)
  • The input varies a lot (customers phrase questions in many different ways)
  • Speed of implementation matters more than one hundred percent predictability

Not needed, or a poor fit, when:

  • The problem can be solved with simple rules or a spreadsheet
  • Full, guaranteed consistency is required (for example exact calculations or legally mandated checks)
  • The available data or budget is too small to justify the added complexity

Not every problem is an AI problem. A well-built form or a simple script is sometimes faster, cheaper and more reliable than bringing in a foundation model.

Not sure whether your process is a good fit for a foundation model? A free AI scan shows within minutes where AI does and does not make sense for your business.

Related concepts

  • LLM (large language model): a foundation model specifically trained on text. All LLMs are foundation models, but not all foundation models are LLMs (some are trained on images or audio instead).
  • Fine-tuning: further training a foundation model on a smaller, specific dataset to improve performance on a particular task.
  • Prompt engineering: carefully wording instructions (prompts) to get a foundation model to produce the desired output, without changing the model itself.
  • Inference: the moment a trained model actually generates a response to new input, as opposed to the training phase itself.
  • Retrieval augmented generation (RAG): a technique where a foundation model consults a company's own documents while answering a question.

Foundation models have become the standard building block for nearly every serious AI application, from chatbots to document processing. For an SME, the real challenge is rarely the technology itself, it is translating that technology into a concrete, working process. That is where good AI consultancy helps: choosing a model based on what your business actually needs, not on hype.

Curious how a foundation model could be applied within your own processes? Start with an exploratory conversation, or test with a small real-world use case before scaling up.

Veelgestelde vragen

Veelgestelde vragen

Korte, heldere antwoorden die je helpen sneller beslissen.

What is the difference between a foundation model and an LLM?

An LLM (large language model) is a foundation model trained specifically on text and code. Foundation model is the broader category, which also includes models trained on images, audio, video, or combinations of these. So all LLMs are foundation models, but not every foundation model is an LLM.

Does my company need to train its own foundation model?

No, and for almost any SME it is neither feasible nor necessary. Training a foundation model costs millions of euros in compute and requires enormous datasets. Nearly every business uses existing models through an API from providers like OpenAI, Anthropic or Google, and adapts them with their own data or prompts.

Are ChatGPT, Claude and Gemini foundation models?

ChatGPT, Claude and Gemini are products (chat applications) built on top of foundation models. GPT, Claude and Gemini are the underlying models themselves; the chat interface around them is one specific application of that model.

What does it cost a small business to use a foundation model?

Most providers charge per use, based on the amount of text processed (tokens). For small-scale use, such as a chatbot or document processing for an SME, costs typically stay in the range of a few dozen to a few hundred euros per month, depending on volume and the chosen model. [Estimate: actual cost depends heavily on usage volume and model choice.]

Recommended for you

Related articles

Keep reading: articles that best match this topic in terms of content.

What Is an Agentic Workflow? - An agentic workflow is an AI process in which an AI agent independently plans multiple steps, makes decisions along the way, and takes actions to reach a goal, instead of following a fixed sequence.
5 jul 20266 min
What Is an Agentic Workflow?
An agentic workflow is an AI process in which an AI agent independently plans multiple steps, makes decisions along the way, and takes actions to reach a goal, instead of following a fixed sequence.
Read more
What Is Fine-Tuning in AI? - Fine-tuning means further training an existing AI model on your own data so it consistently matches your tone, vocabulary, or task. For most small businesses it's a last resort, worth considering only after prompting and RAG fall short.
4 jul 20265 min
What Is Fine-Tuning in AI?
Fine-tuning means further training an existing AI model on your own data so it consistently matches your tone, vocabulary, or task. For most small businesses it's a last resort, worth considering only after prompting and RAG fall short.
Read more
What Is a Vector Database? A Practical SME Guide - A vector database stores information as number sequences (vectors) so a system can search by meaning instead of exact words. It's the engine behind smart chatbots and search features.
3 jul 20266 min
What Is a Vector Database? A Practical SME Guide
A vector database stores information as number sequences (vectors) so a system can search by meaning instead of exact words. It's the engine behind smart chatbots and search features.
Read more
What Is an AI Operating System (AIOS)? - An AI operating system (AIOS) is the orchestration layer that lets AI agents, LLMs, and data work together - here's how it works and when an SME actually needs one.
2 jul 20265 min
What Is an AI Operating System (AIOS)?
An AI operating system (AIOS) is the orchestration layer that lets AI agents, LLMs, and data work together - here's how it works and when an SME actually needs one.
Read more
What Is Few-Shot Learning? A Plain Explanation - Few-shot learning means giving an AI model a small set of examples directly in the prompt, so it picks up the pattern without any retraining of the underlying model.
1 jul 20266 min
What Is Few-Shot Learning? A Plain Explanation
Few-shot learning means giving an AI model a small set of examples directly in the prompt, so it picks up the pattern without any retraining of the underlying model.
Read more
What Is Computer Vision? A Business Guide - Computer vision teaches systems to recognise, count and assess images. Learn how it works and where it adds business value.
30 jun 20265 min
What Is Computer Vision? A Business Guide
Computer vision teaches systems to recognise, count and assess images. Learn how it works and where it adds business value.
Read more

Next step

From insight to implementation

This article explains how it works — we help SMEs to actually build it and connect it to your software.

Discover your biggest automation opportunities