Anthropic — Claude
Opus (deepest reasoning), Sonnet (balanced workhorse), Haiku (fast/cheap), Fable (creative). Strong at careful, long-form, tool-using work.
claude-opus · sonnet · haiku · fableReference hub
Frontier models, the agents that run them, the tools that research with them, the concepts that explain them, and the protocols that connect them. A living reference — curated, opinionated, current.
The labs and their current families. Names move fast — treat this as a map, not a spec sheet.
Opus (deepest reasoning), Sonnet (balanced workhorse), Haiku (fast/cheap), Fable (creative). Strong at careful, long-form, tool-using work.
claude-opus · sonnet · haiku · fableGPT-5 family incl. Pro/reasoning tiers. Pro/reasoning models are served by the Responses API, not chat-completions.
gpt-5 · gpt-5-pro · o-seriesGemini 2.5 Pro / Flash and successors. Huge context, multimodal, deep Google integration.
gemini-2.5-pro · flashReal-time data via X; strong on current events / live context.
grokLeading open-weight family; self-host or fine-tune.
open weightsNemotron 3 (incl. Super, ~120B): open, agentic-reasoning; available via Perplexity Agent API, OpenRouter, build.nvidia.com.
open · agenticMistral, DeepSeek, Qwen (Alibaba), Cohere — strong open / specialist models.
open · specialistTerminal / IDE agents that read a task and ship code, headless or attended.
Anthropic's CLI agent — deep multi-file work, repo-aware, careful. Native MCP.
CLI · MCPOpenAI's CLI coding agent — fast, cheap contained slices and quick scaffolding.
CLIHeadless cursor-agent -p for CI/scripts; the IDE agent in your terminal. JSON output, MCP-aware.
Go-based agy CLI + desktop app; command mode agy -p. Official replacement for the Gemini CLI.
Open-source pair-programmer; model-agnostic, git-native.
open · CLIWhere AI answers, searches, designs, and builds beyond raw chat.
Live web research with citations; Sonar models + an Agent API (hosts open models incl. Nemotron).
researchUI generation / design-to-code — fast visual mocks.
designAgentic multi-step deliverables; branding / research.
agenticPortkey, Cloudflare AI Gateway, Kong, LiteLLM — routing, observability, guardrails over model calls.
infraMem0, Zep, Letta (memory); Composio, Zapier MCP, Smithery, Pipedream (tool/MCP aggregation).
infraThe vocabulary, plainly.
The chunks models read/write in. Pricing and limits are counted in tokens, not words.
How much a model can "see" at once. Bigger = more input, but cost + latency scale with it.
Models that "think" before answering (hidden reasoning tokens). Better at hard problems, slower/pricier.
Retrieval-Augmented Generation — fetch relevant documents, feed them in, so answers are grounded in your data.
Text → vectors, so you can search by meaning. The backbone of RAG and semantic memory.
The model calls functions/APIs you define, instead of just talking. The basis of agents.
A model in a loop: plan → call tools → observe → repeat, until a goal is met.
Further-training a base model on your data to specialize it. Powerful, but prompt + RAG often get you there cheaper.
Fan one prompt across several models, then synthesize — diversity catches what one model misses.
Shaping inputs (context, examples, constraints, format) to steer outputs reliably.
Reuse a fixed prefix (system prompt, docs, canon) across calls so the provider skips re-processing it — large cost and latency cuts when the same context repeats.
Constrain a model to valid JSON or a schema (or a tool call) so its output is machine-parseable, not free text. The reliable bridge from model to code.
Models that take or emit more than text — images, audio, video, PDFs — inside the same context.
Systematic tests (graded datasets, LLM-as-judge) that measure whether a prompt, model, or agent actually works — before and after a change.
A model split into many "expert" sub-networks; each token routes to only a few, so a very large model runs at a fraction of the compute.
Two ways to shrink a model for cheaper, faster inference — store weights at lower precision (quantization), or train a small model to mimic a big one (distillation).
Models can state false things confidently. Grounding — RAG, citations, tool calls — ties answers to real sources to reduce it.
A dial on reasoning models: spend more hidden "thinking" tokens (slower, pricier) for better answers on hard problems, fewer for quick ones.
The plumbing that lets models, tools, and agents talk — and increasingly, talk to each other.
An open standard (from Anthropic) for connecting AI assistants to external tools and data. An MCP server exposes tools/resources; an MCP client (Claude Desktop/Cowork, Cursor, Antigravity, …) connects and uses them. Increasingly the universal connector across the ecosystem — one integration, many clients.
open standardAn open protocol for agents to discover and coordinate each other across vendors and platforms. Started by Google, donated to the Linux Foundation (2025); v1.0 landed early 2026 with signed Agent Cards for verifiable identity. The complement to MCP: MCP connects an agent to its tools; A2A connects agents to one another.
open standard · 150+ orgsThe /v1/chat/completions shape became the de-facto wire format. xAI, many gateways, and local servers (Ollama, vLLM) all speak it — so one client can target many backends.