ChatGPT, Gemini, and Microsoft Copilot are the three assistants most people choose between, but there is a twist: Copilot runs OpenAI's models, the same family behind ChatGPT. So the real split is not three intelligences. It is which ecosystem you live in.
The Twist: Two of Three Run OpenAI
Microsoft Copilot is powered by OpenAI's GPT-5-class models through Microsoft's partnership with OpenAI. So ChatGPT and Copilot share most of their underlying intelligence. The genuinely different model in this trio is Gemini, Google's own multimodal flagship.
That means the choice is mostly about packaging. ChatGPT is OpenAI's direct product with the newest models and features. Copilot is those models embedded in Microsoft 365 with enterprise data grounding. Gemini is Google's model inside Workspace and Search, at the cheapest API. See the deeper two-way takes: ChatGPT vs Gemini and ChatGPT vs Copilot.
Pricing
| Tier | ChatGPT | Gemini | Copilot |
|---|---|---|---|
| Free | Yes | Yes | Yes |
| Individual | Plus: $20/mo | AI Pro: $19.99/mo | Pro: $20/mo |
| Organization | Business / Enterprise | Workspace add-on | M365 Copilot: $30/user |
| Underlying model | GPT-5.5 | Gemini 3.1 Pro | GPT-5 / 5.4 |
Where Each Wins
ChatGPT
Newest OpenAI models, Custom GPTs, Sora video. Best standalone assistant.
Gemini
Native multimodal, long context, cheapest API, Google Workspace and Search.
Copilot
OpenAI models inside Word, Excel, Outlook, Teams, with enterprise data grounding.
Pick by Ecosystem
| You live in... | Best choice | Why |
|---|---|---|
| Microsoft 365 | Copilot | In-app AI + tenant data grounding. |
| Google Workspace | Gemini | Embedded in Gmail, Docs, Drive. |
| No single suite | ChatGPT | Best standalone, newest features. |
| Multimodal / video understanding | Gemini | Native audio, video, image. |
| Custom assistants / Sora video | ChatGPT | Custom GPTs and video generation. |
Building on the API? Route Across All Three
For software, the consumer wrappers do not matter. You call the model APIs directly, and the lever is routing per request across OpenAI and Google. A router sends easy prompts to cheap models and hard prompts to the right frontier model.
Cross-provider routing with the OpenAI SDK
import OpenAI from "openai";
const client = new OpenAI({
apiKey: process.env.MORPH_API_KEY,
baseURL: "https://api.morphllm.com/v1",
});
const response = await client.chat.completions.create({
model: "router-default", // routes across OpenAI, Google, Anthropic
messages: [{ role: "user", content: userQuery }],
});
// Long context -> Gemini 3.1 Pro (cheapest, reliable recall)
// Hard reasoning -> GPT-5.5
// Easy request -> cheap mini model
// 40-70% lower cost than a single flagship.Frequently Asked Questions
Which is best: ChatGPT, Gemini, or Copilot?
Copilot runs OpenAI's models like ChatGPT, so it comes down to ecosystem: ChatGPT standalone, Copilot for Microsoft 365, Gemini for Google and multimodal.
Do ChatGPT and Copilot use the same model?
Largely yes, OpenAI's GPT-5 family. Gemini is Google's own model.
How much do they cost?
All about $20/month individually; Microsoft 365 Copilot is $30/user/month for orgs.
Which is best for work?
Copilot for Microsoft 365, Gemini for Google Workspace, ChatGPT for standalone use.
Related comparisons
ChatGPT vs Gemini
GPT-5.5 vs Gemini 3.1 Pro: benchmarks, pricing, multimodal, and when to route to each.
ChatGPT vs Microsoft Copilot
Copilot runs on OpenAI models inside Microsoft 365. Where the wrapper helps and where it taxes you.
ChatGPT vs Claude vs Gemini
The three frontier assistants compared on coding, writing, multimodal, and price.
ChatGPT vs Grok
GPT-5.5 vs Grok: real-time X data and fewer guardrails vs ecosystem maturity.
ChatGPT vs Perplexity
General assistant vs answer engine: cited search vs open-ended generation.
Gemini vs Grok
Google's multimodal long-context model vs xAI's real-time, less-filtered chatbot.
Building With AI? Route Across Providers.
Morph Router picks the right model per request across OpenAI, Google, and Anthropic. $0.001 per request, ~430ms, 40-70% lower API cost than a single flagship.