GPT stands for Generative Pre-trained Transformer — the family of AI language models OpenAI builds and licenses. ChatGPT, by contrast, is a specific product: a chat app built on top of a GPT model, fine-tuned and wrapped with a conversational interface. Every version of ChatGPT runs on a GPT model underneath, but not everything that uses a GPT model is ChatGPT.
What GPT actually is
A GPT model is a type of large language model — software trained on huge amounts of text to predict, one piece at a time, what word is likely to come next. That simple prediction task, repeated at enormous scale, turns out to be powerful enough to write essays, answer questions, summarize documents, and generate code.
Each word in GPT’s name describes a step in how it’s built. “Generative” means it produces new text rather than just classifying or retrieving it. “Pre-trained” means it first learns general patterns of language from a broad swath of text before being adapted to any specific task. “Transformer” refers to the neural network design underneath — an architecture built around an “attention” mechanism that lets the model weigh how every word in a passage relates to every other word at once, rather than reading strictly left to right. Read our explainer on the Transformer architecture for how that mechanism works in more depth.
GPT vs. ChatGPT
GPT is the engine; ChatGPT is the car built around it. OpenAI trains a raw GPT model on text, then adapts a version of it specifically for conversation — teaching it to follow instructions, stay on topic, and refuse harmful requests — through a process that combines supervised examples with reinforcement learning from human feedback, where human reviewers rank the model’s responses and the model is nudged toward the ones people prefer. The result becomes the model that powers ChatGPT, OpenAI’s chat app, released on November 30, 2022.
That distinction matters because a raw GPT model and ChatGPT can behave differently even when they share the same underlying weights. ChatGPT adds a chat interface, conversation memory, safety filters, and tool access (web search, file uploads, image generation) on top of the model. Developers who want the model without that wrapper — to build their own app, plug it into a spreadsheet, or run it inside a customer-service tool — call the GPT model directly through OpenAI’s API, without ever touching the ChatGPT interface.
How the naming has evolved
OpenAI has released GPT models roughly every one to two years, each trained on more data and compute than the last: GPT-1 in 2018, GPT-2 in 2019, GPT-3 in 2020, GPT-4 in 2023, and successive GPT-5 versions since. Later releases split into multiple tiers aimed at different budgets and speeds — a pattern most AI labs now follow — rather than shipping a single monolithic model. The version number in a model’s name (like GPT-5.6) tracks the underlying model; the product name (ChatGPT, or a company’s own app built on the API) is a separate label for whatever interface sits on top of it.
GPT is also no longer OpenAI’s alone in spirit, if not in name: rival labs built their own transformer-based language models using the same underlying architecture, even though only OpenAI’s models carry the “GPT” brand. That’s why “a GPT” and “ChatGPT” get used loosely and interchangeably in everyday conversation, even though one is a type of model and the other is one specific app.
Why the distinction matters
Knowing the difference matters most once you leave the ChatGPT app. A business embedding AI into its own product isn’t using “ChatGPT” — it’s almost always calling a GPT model through OpenAI’s API and building its own interface around it, at usage-based pricing rather than a flat ChatGPT subscription. Developers can get started with OpenAI’s API quickstart guide; pricing is billed per million tokens processed and varies by model tier, so check OpenAI’s current pricing page for exact, up-to-date rates before building anything at scale.
In the news
That API-first pattern is exactly what’s playing out in enterprise deals: see our brief on IBM’s partnership with OpenAI to deploy GPT-5.6 for enterprise customers, where IBM is integrating the underlying GPT model into its own enterprise software rather than routing customers through ChatGPT.