Models & Providers Entry

GPT, explained

Reviewed August 2026

TL;DR: GPT is OpenAI's family of large language models and the one that started the modern chatbot era through ChatGPT. The flagship models are closed-weight and hosted: you reach them through OpenAI's API, through Microsoft's Azure OpenAI service, or inside the ChatGPT product line. The family's defining trait is breadth - general capability plus the largest third-party ecosystem.

What it is and how you use it

GPT stands for "generative pre-trained transformer," and the name is literal: these are transformer models pre-trained on large text corpora, a recipe OpenAI's GPT line did more than any other to make mainstream. OpenAI ships the family in generations, each spanning a flagship tier and smaller, cheaper tiers, and in recent years it has added reasoning models that spend extra compute thinking before they answer. Treat the specific version numbers as perishable; the tiered shape of the lineup is what persists.

What the family is known for is being the default. ChatGPT made it the model most people met first, so tutorials, libraries, and third-party integrations tend to target OpenAI's API shape before any other - many competitors even offer OpenAI-compatible endpoints so existing code works unchanged. The models themselves are strong generalists across writing, coding, analysis, and multimodal input, which is why "just use GPT" remains a common starting position before teams profile their real needs against alternatives like Claude or Gemini.

Access is hosted. The flagship GPT line is closed-weight, reached through OpenAI's own API or through Azure OpenAI, which serves the same models inside Microsoft's cloud with enterprise networking and compliance attached. OpenAI has also published some open-weight models over the years, but those are the exception - the family's center of gravity is the API. Consumers and businesses without integration needs use the ChatGPT apps directly, which bundle the models with tools, memory, and file handling.

Where it typically fits: general-purpose assistants, content and analysis workloads, and any project that benefits from the deepest pool of examples, libraries, and hosting options. The ecosystem advantage is real but not decisive - the frontier families trade places on specific tasks often enough that the sensible move is to shortlist GPT alongside its peers and let your own evals settle it.

Where it sits in the AI stack

GPT sits at the model layer: your code sends a prompt to a hosted endpoint, OpenAI or Azure runs the inference, and tokens stream back. The infrastructure is never yours to run:

Key tools and implementations

  • OpenAI API

    The first-party endpoint whose request format has become a de facto industry standard.

  • Azure OpenAI

    The same models served inside Microsoft's cloud, for teams that need Azure billing, networking, and compliance.

  • Official SDKs

    Python and TypeScript client libraries that wrap the API, widely imitated by compatible providers.

  • ChatGPT products

    The consumer and enterprise apps that bundle the model family with tools, memory, and integrations.