The default choiceOpenAI's flagship conversational AI. GPT-4o powers writing, analysis, coding, and image generation.

OpenAI was founded in 2015 as a non-profit by Sam Altman, Elon Musk, Greg Brockman, Ilya Sutskever, and others, with a $1 billion pledge. The pitch was research-first — build AGI for the benefit of humanity, publish freely, no commercial pressure. Within five years the non-profit pivoted to a "capped-profit" structure, took a $1B investment from Microsoft, and started shipping product.
The lineage that produced ChatGPT runs through GPT-2 (2019, considered "too dangerous to release" at the time), GPT-3 (2020, the first model that broadly worked), InstructGPT (2022, fine-tuned to follow instructions), and finally ChatGPT — launched November 30, 2022 as a research preview. It hit 100 million users in two months. No app in history had ever grown that fast.
The strategic moves since: Microsoft's $10B follow-on in early 2023, the chaotic November 2023 board firing-and-rehiring of Sam Altman, GPT-4 in March 2023, the GPT Store in early 2024, voice mode through the year, GPT-4o (the "o" stands for omni — multi-modal), and finally GPT-5 and o1 reasoning in 2025. The product has shipped roughly monthly since launch.
The thing that makes ChatGPT specifically — not the GPT models, the product — defensible is the platform layer. Custom GPTs, the GPT Store, the API, the mobile apps with voice and vision, the enterprise tier with admin and SSO. Anthropic's Claude and Google's Gemini are competitive on raw model quality. None of them has the platform.
ChatGPT is a conversational interface to a stack of OpenAI models, deployed across web, mobile (iOS + Android), and native desktop apps for Mac and Windows. The user-facing surface is a single chat window. The behind-the-scenes routing decides which model and which tools to use based on your request and your subscription tier.
The major capabilities, as of mid-2026:

Open chat.openai.com. Sign in with Google, Microsoft, or email. You're chatting in under two minutes. The Free tier gives you GPT-4o with usage caps that reset every few hours, basic voice mode on mobile, image upload, DALL-E for a couple of generations per day, and access to public Custom GPTs.
What works immediately:
The thing new users underestimate: follow-up prompts are the actual feature. The first answer is usually mediocre. The second answer, after "make that more concise" or "add code examples" or "what would you change for a non-technical reader," is the answer you actually wanted. Single-shot prompting is for power users with practiced prompts. Iterative chat is what ChatGPT is built for.
Worth doing in your first week: explore Custom GPTs. These are personalized ChatGPT instances with persistent instructions, optional knowledge files, and optional tool access (web browsing, DALL-E, code interpreter). You can use other people's (the GPT Store has tens of thousands), or build your own in five minutes.
How to build one: click your name → My GPTs → Create. The builder is a meta-chat — you describe what the GPT should do, ChatGPT interviews you, and the system writes the instructions automatically. A typical Custom GPT setup takes 10-15 minutes including testing. Examples that work well:
The GPT Store has the same problem app stores always have — most are bad, the top 1% are genuinely useful. The most reliable category is "tools your team uses daily that need an AI layer" — code reviewer, meeting note synthesizer, copywriter. Generic productivity GPTs are usually worse than just asking ChatGPT directly with a clear prompt.

OpenAI ships three main model families inside ChatGPT, and choosing the right one for your task is the second-biggest skill gain after learning to write good prompts.
Fast, multi-modal, available on Free tier. Handles text, voice, vision, and code interpreter. The model behind most ChatGPT interactions. "Omni" because it can take in text, images, audio, and produce all three. Use for conversational work, writing, basic coding, voice mode, vision tasks. About 1.5-second response for typical prompts.
Plus and Pro tiers. Better reasoning, longer context window (200K tokens), better at complex multi-step tasks, more reliable for production code. Slower per response (3-6 seconds typical). The default when you need the answer to actually be right on the first try. Plus users get 80 messages per 3 hours on GPT-5 — generous for normal use, tight for heavy days.
Available on Plus and Pro. Uses internal chain-of-thought before responding. Excellent for math, complex code, multi-step logic problems where the path matters as much as the destination. Slow (10-30 seconds per response is normal) and not chatty — feels more like submitting a job than having a conversation. Use sparingly, when you have a hard problem and want it solved correctly.
You can switch models per-message via the dropdown at the top of the chat. Most users default to GPT-4o and never look. Power users routinely switch — GPT-4o for fast back-and-forth, GPT-5 when stakes go up, o1 for the hardest single questions. The 2x productivity gain from model-switching is real and most subscribers leave it on the table.
The biggest single shift ChatGPT introduced is that you stop using search for many of the questions you used to Google. "What's the difference between X and Y" — used to be a 20-minute reading dive across three blog posts. Now it's a 30-second exchange that lands at the answer plus pointed clarifying questions.
For writing, ChatGPT is the strongest first-drafter we've ever used. Email replies, README files, marketing copy, social posts — all faster to start from a ChatGPT draft and edit than to write from scratch. Quality on long-form nuance (essays, technical documentation) lags Claude — Claude writes with more voice. ChatGPT writes with more polish.
For code, ChatGPT is excellent for greenfield work (write a new function, scaffold a new project) and decent for debugging. Worse than Cursor or Claude Code for working inside an existing codebase — it doesn't read your repo, so suggestions assume defaults that may not match your conventions. Best workflow: ChatGPT for "write me a function that does X" in a clean context; an editor-integrated AI for everything else.
For research and learning, ChatGPT is the best on-demand tutor most people have ever had. Ask it to explain quantum mechanics, the bond market, or how a transformer model works — at any level from "explain like I'm five" to "give me the math." The one rule: verify any specific claim. ChatGPT confidently states wrong dates, wrong names, and wrong attributions. Use it for the explanation, not for the facts.
The brief: a vendor missed a deadline on a feature integration. The relationship matters. The email needs to be firm but not burn the bridge. We typed a one-sentence prompt to ChatGPT: "Draft a reply to our vendor about the missed deadline. Tone: disappointed but professional. Give me three options ranging from soft to firm."
30 seconds later, three drafts. Each was 80% there. We took the middle option, kept the structure, edited two sentences to add specific dates, and sent it. Total time: 4 minutes. Doing this from scratch — including the drafting time, the second-guessing on tone, the proofreading — typically takes 20-25 minutes.
The thing we didn't expect: option 3 (the firm one) included a sentence we ended up keeping: "Per our SLA in section 4.2, this triggers the credit clause — I'll send you the calculation by Friday." We hadn't thought to invoke the SLA. ChatGPT inferred it from context and added it. That single line saved us a follow-up message and pushed the resolution forward by a week.
Dragged a quarterly sales CSV (8,400 rows, 14 columns) into the chat. Prompt: "Summarize what changed quarter-over-quarter. What's the biggest driver of the YoY decline? Generate three charts that tell the story."
Code interpreter spun up. It loaded the CSV, computed quarterly aggregates, ran a regression to identify drivers, and produced three charts: revenue by region (line chart), churn by segment (bar chart), and a scatter plot showing customer segments by spend and retention. The analysis was correct (we verified against our internal dashboard) and the visualizations were publication-quality.
What surprised us: it caught an outlier we hadn't noticed. One enterprise customer in the EMEA segment had a 91% revenue drop that masked an otherwise healthy region. The chart highlighted it. Our internal dashboard had averaged it away.
The 100-line Python script behind those charts is also accessible — click "view code." That meant we could rerun the same analysis monthly without re-prompting, and tweak the script when our data schema changed.
Scenario: we needed to understand whether the EU AI Act applies to one of our products in two days. The full text is 460 pages. The non-lawyer Googleable summaries are either oversimplified or vendor-marketing.
Asked ChatGPT to walk us through the Act, layer by layer. Started with "explain the EU AI Act in 5 paragraphs as if I'm a product manager who doesn't know what a 'high-risk' system is." Then "ok, what specifically defines a high-risk system?" Then "our product is X, Y, Z — would it be classified as high-risk under this framework?" Then "what's the compliance timeline?"
Over the course of an hour-long back-and-forth, we ended up with: a working understanding of the Act's structure, a draft compliance memo for our team, a list of specific clauses to verify with legal counsel, and references to the actual article numbers for each claim. We then ran the conclusions past actual counsel — they confirmed the framework was right and only had to push back on one specific interpretation.
This is what ChatGPT does best: collapse the time-to-competence on a new domain from days to hours. The catch: you still need an expert review of the conclusions. ChatGPT is great at understanding, mediocre at definitive answers.

We gave ChatGPT this prompt:
Eight seconds later:
200 words, hit the brief, included the specific differentiator, didn't drift into "revolutionary, game-changing, paradigm-shifting." We'd ship this with one or two minor edits.
Across 100 representative prompts (50 writing, 30 coding, 20 reasoning), here's how ChatGPT compares to Claude and Gemini:
bench --task=all --metric=quality,speed,cost n=100 prompts
Pricing for consumer tiers is identical across the big three. Quality differences are real but narrow. Claude leads writing slightly. Claude leads code. Gemini leads speed and Google integration. ChatGPT leads everything else — voice, image gen, ecosystem, tools, mobile UX.
This is the section that matters most for anyone using ChatGPT at work. The short version: by default, conversations on the consumer tiers (Free, Plus, Pro) can be used to improve OpenAI's models unless you opt out. Conversations on Team and Enterprise tiers are not used for training and are contractually protected.
How to opt out on consumer tiers: Settings → Data Controls → "Improve the model for everyone" → toggle off. This affects all future conversations from that account. It does not retroactively remove past conversations from training data.
Where the data lives:
What ChatGPT doesn't see on consumer tiers: nothing. Anything you type or upload, OpenAI's systems see. If your security policy is "no proprietary code, no PII, no client data goes to external AI tools" — that policy precludes consumer ChatGPT, period. The path forward is Team or Enterprise plans, where training is off by default and additional admin controls are available.
The most common way company data leaks via ChatGPT is not malicious — it's an employee pasting a customer email or internal doc into the chat to "help me reply to this" or "summarize this for my boss." Train your team. Set up Team or Enterprise. Block consumer ChatGPT on managed devices if your regulation requires it.
a/chatgpt b/claude
Claude (made by Anthropic) is the closest peer competitor to ChatGPT. Founded by ex-OpenAI researchers in 2021, Anthropic emphasizes alignment and safety. The Claude product is leaner — focused, conversational, with fewer integrations but stronger writing and reasoning fundamentals.
Verdict: Most people need ChatGPT. Some people prefer Claude. Power users keep both — ChatGPT for breadth (voice, image, data, tools), Claude for depth (writing, code, careful reasoning). At $20/mo each you can afford the experiment.
a/chatgpt b/gemini
Gemini is Google's answer to ChatGPT — same conversational interface, deep integration with Workspace (Gmail, Docs, Calendar). Free tier is the most generous in the industry; Gemini Advanced ($20/mo) competes directly with ChatGPT Plus.
Verdict: If your work lives in Google Workspace, Gemini's integrations are a real productivity multiplier. For everything else, ChatGPT is still better — the polish gap is narrow but consistent.
a/chatgpt b/perplexity
Perplexity is a different product category — AI-first search with citations. Built for research and current information. Less of a general assistant, more of a knowledge engine.
Verdict: Use both. ChatGPT for work, Perplexity when you need verifiable facts with sources. Some power users keep Perplexity open in another tab specifically for "fact-check what ChatGPT just told me."
ChatGPT will state false things with high confidence. Fake citations. Wrong dates. Misattributed quotes. The error rate is low (maybe 1-3% on factual claims) but consistent. Always verify specific facts. The 2026 update reduced hallucination significantly but didn't eliminate it.
ChatGPT refuses requests Claude and open-source models handle. Medical advice, security research, creative violence in fiction, anything touching public figures. The policies have loosened since 2023 but ChatGPT is still the most restrictive of the major models. If you're writing fiction with morally complex characters, this gets annoying fast.
Plus tier limits GPT-5 to 80 messages per 3 hours. Sounds generous until you're in a long analysis session and hit it mid-flow. The model silently switches to GPT-4o, often without warning, and the answer quality drops. Pro tier ($200/mo) removes most caps. Team and Enterprise have higher limits than Plus.
GPT-5 reduced this dramatically but still occasionally inserts "As an AI assistant, I should note..." disclaimers nobody asked for. Trim them from your prompts: "Skip disclaimers. Get to the answer." Or build a Custom GPT with these instructions baked in.
The "memory" feature, where ChatGPT remembers facts about you across sessions, is useful when it works and creepy when it surfaces something weird. It's still inconsistent — sometimes it remembers your dog's name, sometimes it forgets you're a developer. Better to keep memory off and just put context in your prompt for important sessions.
DALL-E inside ChatGPT is convenient but the quality gap to Midjourney v6 is real. ChatGPT image gen is great for "draft me an illustration" — bad for production-grade visuals. Use Midjourney or Stable Diffusion when output quality matters.

Settings → Custom Instructions. Tell ChatGPT once who you are, what you do, and how you want responses formatted. Every prompt benefits. Most users never touch this. Treat it like a system prompt.
Cmd/Ctrl+Shift+O = new chat. Cmd/Ctrl+/ = focus the search bar. Esc = stop generation. Most users mouse-click everything; keyboarding cuts 30% off the friction.
Voice is great for back-and-forth where you'd otherwise pace your office. Take a walk, talk through a problem. Voice is bad for fact retrieval. Switch to text when you need precision.
If you're trying to get help with a UI, an error dialog, a chart, or anything visual — screenshot it and drop it in. ChatGPT reads images well. Far faster than describing what's on the screen.
For documents longer than a few paragraphs, switch to Canvas mode (the icon at the top of the chat). It's a side-by-side editor. You can highlight specific sections and ask for targeted edits without regenerating the whole thing.
Top right of any chat → Share. Get a public link that anyone can view (read-only). Useful for showing your team the prompt sequence that worked, or for blog posts demonstrating a workflow.
You can pull a Custom GPT into the middle of a regular chat by typing @ and the GPT's name. Great for "use my Code Reviewer GPT on this snippet" without leaving the conversation.
If the first response isn't quite right, regenerate before reprompting. ChatGPT often gives a different angle on the same prompt. Cheaper (no tokens for new prompt) and faster than reprompting.
Free: GPT-4o with limits, basic voice, limited DALL-E. Good for casual use. You'll hit limits if you're using it as a work tool.
Plus ($20/mo): The default for individuals. GPT-5 and o1 access, generous limits (80 messages per 3 hours on GPT-5), voice mode unlimited, 50 DALL-E images/day, custom GPTs, file uploads.
Team ($25/user/mo, billed annually): Worth it the moment 3+ people on your team need ChatGPT. Higher limits, no training on your data by default, shared workspace, admin console.
Pro ($200/mo): For heavy individual users. Effectively unlimited GPT-5 and o1, exclusive access to o1 Pro mode (longer thinking), unlimited DALL-E, early access features. Pays for itself if you'd otherwise burn through Plus limits daily.
Enterprise (custom pricing): SOC 2, SSO, admin and audit logs, longer context, no training on your data, dedicated support.

For engineering leads or operations heads rolling ChatGPT out to teams of 10-100:
Before any rollout, write a one-page AI usage policy. What's allowed (drafting emails, analyzing public data, generating boilerplate code). What's forbidden (customer data, confidential strategy, regulated content). Who pays. How violations are handled. Get legal to sign off.
Identify 5-10 people who want to try it. Pay for Team accounts. Have them document workflows that worked, prompts that helped, and where they hit limitations. The pilots become your internal champions.
Before broad rollout, create the 3-5 Custom GPTs your team needs most — Code Reviewer, Customer Support Drafter, Meeting Notes Synthesizer. These show new users immediate value on day one.
Team-wide announcement. Opt-in initially, mandatory only for roles that benefit clearly. Run a 30-minute "Show me how" session with pilots demonstrating actual workflows. Avoid the trap of forcing AI usage — let value speak for itself.
Admin dashboard shows usage by user. Identify high-engagement people — make them mentors. Quarterly policy reviews. Track ROI in concrete terms: "X hours saved on Y workflow this quarter."
Sam Altman@sama · on x.comGPT-5 is the first model where I find myself genuinely surprised by the quality of its reasoning. Not impressed — surprised. There's a difference.
Ethan Mollick@emollick · on x.comFor a year I told MBA students to use Claude for writing and ChatGPT for everything else. With GPT-5 the gap closed. ChatGPT is now genuinely competitive with Claude on long-form writing while keeping its lead on tool use, voice, and image gen.
Linus Lee@thesephist · on x.comThe thing ChatGPT does that Claude doesn't: it's a platform. Custom GPTs, the API, voice on mobile, vision, DALL-E, data analysis. Claude is one chat. ChatGPT is a stack.
Simon Willison@simonw · on x.comHonest take on GPT-5 limits: Plus tier hits the cap fast. If you're doing real work daily you'll want Team or API. ChatGPT Plus is the demo. The actual productivity tier is one step up.
Aravind Srinivas@AravSrinivas · on x.comChatGPT remains the easiest AI to recommend to your non-technical friend. The UX work OpenAI has done on conversational AI is still the standard everyone copies.
ChatGPT is the default. But we evaluated and rejected (or recommended as supplements) these alternatives. None of them changes the verdict, but some of them are right for specific use cases:
For casual use, yes. For daily work, no — you'll hit caps and miss out on GPT-5 reasoning. Plus is the productivity tier.
On consumer tiers, by default yes — unless you opt out in Settings → Data Controls. On Team and Enterprise tiers, training is off by default.
Claude is slightly better in our benchmarks. ChatGPT is often "good enough" and has the advantage of code interpreter for analysis. For inline IDE coding, neither — use Cursor or GitHub Copilot.
Yes — the Memory feature. It remembers facts about you across all chats. You can review and edit memories in Settings → Personalization. Or turn it off if you don't want it.
It doesn't. Voice requires connectivity. Without internet, the app falls back to text-only.
Not on Free or Plus. Yes on Team and Enterprise, with contractual data protection.
Pro removes most caps, adds o1 Pro mode for harder reasoning, and gets early access to new features. Worth it for power users hitting Plus limits daily.
Likely yes. Each major model has expanded the Pro/Plus tier structure. Plan to re-evaluate annually.
For general education, yes. For decisions, no. ChatGPT explicitly disclaims and is correct to do so. It's a tutor, not a doctor or lawyer.
API gives you more control, no usage caps (you pay per token), customization. ChatGPT gives you the UI, voice, image gen, code interpreter, Custom GPTs. Most people don't need API. Developers building features do.
The content policy is conservative. False positives happen. Rephrase the request, add context about your purpose, or switch to a less-restricted alternative (Claude is less aggressive on refusals; open-source models like Llama have no restrictions).
To use it: zero — it's a chat. To use it well: a few weeks of habit-building. To be a power user: a few months of conscious practice with custom instructions, models switching, and Custom GPTs.
ChatGPT is what you recommend when someone asks "which AI should I try?" It does more things, better, on more surfaces, than any other AI product. Plus tier at $20/mo is the sweet spot for individual users. Team for groups. Pro for hardcore daily users. Enterprise for compliant deployments. The competition is interesting, but ChatGPT remains the default for a reason.