The companies that train, host, and serve the world's foundation models — through APIs, SDKs, and increasingly through cloud marketplaces. Pick a provider, get a model.
← Back to AI Landscape| Provider | Flagship Models | Notable Strengths |
|---|---|---|
| OpenAI | GPT-5, GPT-4o, o-series | Largest market share, ChatGPT brand, Realtime API. |
| Anthropic | Claude (Opus, Sonnet, Haiku) | Long context, coding, safety, agent SDK. |
| Gemini Pro / Flash / Ultra | Massive context (1M+), native multimodal, Workspace. | |
| Meta | Llama (open weights) | Free to download, run anywhere. |
| Mistral AI | Mistral, Mixtral, Codestral | European, efficient MoE, open + commercial. |
| xAI | Grok | Real-time X (Twitter) data. |
| Cohere | Command, Embed, Rerank | Enterprise RAG, multilingual embeddings. |
| AWS Bedrock | Claude, Llama, Titan, Nova, Mistral | One API across many providers, AWS perimeter. |
| Azure OpenAI | GPT family | Microsoft enterprise + Azure compliance. |
| Vertex AI | Gemini, Claude, Llama | Google Cloud's model garden. |
| Together / Fireworks / Groq | Open models, hosted | Fast inference for open models (esp. Groq's LPU). |
| Hugging Face | ~All open models | The "GitHub of AI" + Inference Endpoints. |
# OpenAI Python SDK from openai import OpenAI client = OpenAI() resp = client.chat.completions.create( model="gpt-5", messages=[ {"role": "system", "content": "You are concise."}, {"role": "user", "content": "Summarize quantum entanglement."}, ], ) print(resp.choices[0].message.content)
Anthropic, Google, and Mistral SDKs follow nearly identical shapes — the API surface has converged.
| If you need… | Consider |
|---|---|
| Best general capability | OpenAI, Anthropic, Google |
| Long context (1M+ tokens) | Google Gemini, Anthropic Claude |
| Coding agents | Anthropic Claude |
| On-prem / data residency | Open weights via vLLM, Hugging Face TGI |
| Lowest latency | Groq, Cerebras, Fireworks |
| Enterprise compliance | Azure OpenAI, AWS Bedrock, Vertex AI |