GPT-4o / GPT-5 Multimodal: Complete Guide — Architecture, MMMU Benchmarks, API, Pricing & Safety 2026
Model Overview
GPT-4o / GPT-5 Multimodal is OpenAI's flagship natively multimodal frontier model, first introduced as GPT-4o ("o" for omni) in May 2024 and extended through the GPT-5 family in 2025-2026. Unlike earlier GPT-4 Vision, which bolted a separate vision encoder onto a text model, GPT-4o is trained from the ground up to jointly process text, images, audio, and short video clips within a single transformer, enabling real-time reasoning across modalities. It belongs to the Multimodal Frontier Models sub-type and solves the problem of unified cross-modal understanding — answering questions about a photo, transcribing and reasoning over audio, or describing action in a video clip without piping data through separate specialist models. The model is designed for developers building multimodal assistants, document AI, screen-reading copilots, and accessibility tools via the OpenAI API. In 2026, GPT-4o powers the voice and camera features inside ChatGPT and is the default multimodal endpoint for Azure OpenAI. Its key differentiator is native multimodality: a single model handles text, image, audio, and video inputs with low latency, including real-time speech-to-speech conversation at roughly 320ms response time, a capability no earlier GPT model matched.
Architecture & Technical Deep Dive
GPT-4o is a single-transformer "omni" model trained from scratch to ingest and generate text, image, and audio tokens within one network. Rather than chaining a separate speech recognizer, vision encoder, and text LLM, all modalities are tokenized into a shared representation space and processed by one autoregressive transformer — an early-fusion design that reduces cross-modal latency and improves joint reasoning.
Omni Transformer Core
GPT-4o uses a single autoregressive transformer as its backbone. All inputs — text subwords, image patches, audio frames, and sampled video frames — are converted into discrete tokens and fed into the same transformer. The model is trained with a unified next-token-prediction objective across all modalities, so the same weights that predict the next text token also predict the next audio frame or image patch. OpenAI has not disclosed the parameter count, but scaling-law analysis and latency profiles suggest a 200B-class dense model. The shared backbone is the key innovation: it eliminates the modality-switching overhead of cascaded systems (e.g., Whisper → GPT-4 → TTS) and enables the 320ms speech-to-speech response time that defines the model's real-time voice mode.
Vision Encoder & Image Tokenization
Images are processed by a vision frontend that splits each image into non-overlapping patches (ViT-style) and linearly projects them into the transformer's embedding space. High-resolution images (up to 4096×4096) are handled via adaptive tiling: the image is divided into tiles that fit within a base resolution (e.g., 768×768), and each tile is encoded independently with positional embeddings that record its grid location. This "AnyRes"-style scheme preserves fine-grained detail in documents, charts, and screenshots without exploding the token count. A typical 1080p photo consumes roughly 765–1,700 tokens depending on detail level. The vision frontend shares the transformer backbone with text — there is no separate frozen CLIP encoder.
Language Backbone & Cross-Modal Fusion
Because GPT-4o is early-fusion, cross-modal fusion happens implicitly inside the transformer's self-attention layers rather than via a dedicated fusion module. A text token can attend directly to an image-patch token or an audio-frame token, and vice versa, enabling fine-grained alignment such as associating a spoken word with the object it names in an image. The backbone uses RoPE positional encodings extended to handle the long 128K context and the interleaved multimodal token streams. Generation is autoregressive: the model emits text tokens by default, and can emit audio tokens when operating in the Realtime API voice mode. This unified design is what allows GPT-4o to, for example, look at a chart image, hear a spoken question about it, and answer in speech — all within one forward pass.
Audio Encoder & Speech Tokenization
Audio input is handled by an audio tokenizer that compresses 24kHz mono PCM into discrete acoustic tokens at roughly 100 tokens per second of speech. These tokens enter the same transformer as text and image tokens, so the model "hears" speech as a first-class input. For output, the model predicts audio tokens that a vocoder decodes back into waveform, enabling the end-to-end speech-to-speech voice mode with ~320ms median latency. The audio pathway supports emotion, prosody, and multiple speaking voices, and can handle non-speech sounds (e.g., recognizing a dog barking in an audio clip). This is a marked difference from Whisper, which is transcription-only and cannot reason over or generate audio.
Video Frame Sampling
GPT-4o accepts short video clips (typically up to ~60 seconds in the API) by uniformly sampling frames at a configurable rate (default ~1 fps, up to 4 fps for motion-heavy clips). Each sampled frame is encoded by the same vision frontend used for images, and the resulting image tokens are interleaved with timestamps so the transformer can reason about temporal order and motion. The model does not process raw video as a continuous signal — it reasons over the sampled frame sequence, which is sufficient for most question-answering, summarization, and action-recognition tasks but can miss brief events that fall between sampled frames. For longer videos, developers typically extract keyframes themselves and pass them as an image array.
Native Image Generation (DALL·E 3 Sub-Model)
GPT-4o's text and image understanding are native, but image generation is delegated to a DALL·E 3-class diffusion sub-model invoked via tool-calling. When a user asks GPT-4o to "draw" something, the model rewrites the prompt for DALL·E 3 and the diffusion model produces the image. This means GPT-4o is not a single unified text+image generation model — image output is a separate pathway. OpenAI has signaled that future GPT-5 updates will bring image generation fully inside the transformer, but as of July 2026 the generation pathway remains diffusion-based and invoked as a tool.
Training & Safety Alignment
GPT-4o is trained on a massive multimodal corpus of text, image-text pairs, audio, and video with RLHF alignment tuned for helpfulness and safety across all modalities. The safety system includes input classifiers that block prohibited image, audio, and text content, and output classifiers that scan generated text, audio, and images for policy violations. Voice outputs are restricted to a set of approved system voices to prevent unauthorized voice cloning. The model is served exclusively from OpenAI and Azure OpenAI infrastructure — no weights are released.
Multimodal Understanding Benchmarks
Scores based on publicly available data as of July 2026. Independent verification recommended.
Multimodal Benchmark Scores
| Benchmark | GPT-4o MM | Gemini 3 Ultra | Llama 4 Maverick | Kimi-VL | InternVL3 |
|---|---|---|---|---|---|
| MMMU (val) | 69.1 | 76.8 | 73.5 | 68.4 | 72.1 |
| MMMU-Pro | 56.4 | 63.2 | 58.7 | 54.9 | 57.8 |
| MMBench (dev) | 83.2 | 86.5 | 82.7 | 79.6 | 83.9 |
| MMStar | 62.4 | 68.1 | 65.3 | 60.7 | 64.2 |
| OCRBench | 78.4 | 84.6 | 81.2 | 82.7 | 85.3 |
| AI2D | 84.5 | 88.9 | 86.1 | 83.2 | 87.4 |
| ChartQA | 85.6 | 90.2 | 87.3 | 84.1 | 88.7 |
| DocVQA | 92.8 | 95.1 | 93.4 | 91.6 | 94.2 |
| MathVista | 63.8 | 71.5 | 66.9 | 61.2 | 67.4 |
| Video-MME (avg) | 64.2 | 72.8 | 67.5 | 59.8 | 63.1 |
| MVBench | 56.7 | 64.3 | 58.9 | 52.4 | 55.8 |
Performance Analysis
GPT-4o Multimodal sits in the upper tier of frontier multimodal models but no longer leads the field in 2026. Its MMMU score of 69.1% is solid but trails Gemini 3 Ultra (76.8%) and the open-source Llama 4 Maverick (73.5%) and InternVL3 (72.1%), reflecting how aggressively competitors have closed the multimodal reasoning gap. On document and chart understanding — GPT-4o's historical strengths — it remains excellent: DocVQA (92.8) and ChartQA (85.6) are competitive with all but Gemini 3 Ultra. OCRBench at 78.4 is mid-pack, behind InternVL3 (85.3) and Kimi-VL (82.7), both of which were specifically tuned for OCR. Video understanding is GPT-4o's relative weakness: Video-MME (64.2) and MVBench (56.7) trail Gemini 3 Ultra by 8-9 points, a consequence of GPT-4o's frame-sampling approach versus Gemini's native long-video processing. Where GPT-4o still differentiates is not raw benchmark scores but the unified real-time experience — the 320ms speech-to-speech voice mode and the ability to interleave text, image, audio, and video in a single conversation are unmatched by any benchmark-leading model. For pure document and chart reasoning it remains a top choice; for cutting-edge multimodal reasoning, Gemini 3 Ultra is now the benchmark leader.
Speed & Latency
GPT-4o delivers low-latency multimodal inference on OpenAI and Azure infrastructure. Text generation: first token in ~400-700ms, throughput ~80-100 tokens/sec. Image understanding: a 1080p image adds ~300-500ms of encoding overhead. Realtime API voice mode: median speech-to-speech latency of ~320ms, enabling conversational turn-taking. Video clips are processed at ~1 fps sampling by default, adding ~50ms per sampled frame. Throughput scales with API tier — Tier 5 supports up to 10,000 RPM. There is no self-hosted option; all inference is cloud-based.
API Access, Pricing & Integration Guide
Looking for GPT-4o Multimodal API pricing in 2026? Below is the complete pricing table, code examples, and integration guide.
API Pricing Table (as of July 2026)
| Model | Input Price (per 1M tokens) | Output Price (per 1M tokens) | Best For |
|---|---|---|---|
| gpt-4o (2026-08-06) | $2.50 | $10.00 | General multimodal |
| gpt-4o (batch API) | $1.25 | $5.00 | Bulk processing (50% off) |
| gpt-4o-realtime (audio) | $4.00 text + $40.00 audio | $80.00 audio | Real-time voice |
| gpt-4o-mini | $0.15 | $0.60 | Cost-sensitive multimodal |
Free Tier & Trial Access
No free tier for the GPT-4o multimodal API. New OpenAI accounts receive $5 in free credits usable for any model. ChatGPT Free users get limited GPT-4o multimodal access (text + image) inside the ChatGPT app. The Batch API offers a 50% discount for non-urgent multimodal processing with 24-hour turnaround.
API Quick Start
# Install SDK
pip install openai
from openai import OpenAI
import base64
client = OpenAI(api_key="your-api-key")
# Image understanding
with open("chart.png", "rb") as f:
img_b64 = base64.b64encode(f.read()).decode()
response = client.chat.completions.create(
model="gpt-4o",
messages=[{
"role": "user",
"content": [
{"type": "text", "text": "What does this chart show? Summarize the key trend."},
{"type": "image_url",
"image_url": {"url": f"data:image/png;base64,{img_b64}",
"detail": "high"}}
]
}]
)
print(response.choices[0].message.content)
# Video understanding (sampled frames)
frames = [base64.b64encode(open(f"frame_{i}.jpg","rb").read()).decode()
for i in range(0, 30, 3)] # 10 frames
content = [{"type": "text", "text": "Describe the action in this video clip."}]
content += [{"type": "image_url",
"image_url": {"url": f"data:image/jpeg;base64,{fr}",
"detail": "low"}} for fr in frames]
response = client.chat.completions.create(model="gpt-4o",
messages=[{"role": "user", "content": content}])
Supported API Features
Compatible Platforms & Integrations
Fine-Tuning, RAG & Advanced Use
Fine-Tuning Availability
OpenAI offers supervised fine-tuning for GPT-4o on text-only data; multimodal (image/audio) fine-tuning is available in limited beta for enterprise customers. Most customization is achieved through prompt engineering, system prompts, and tool-calling rather than weight updates. For full multimodal fine-tuning, open-source alternatives like Llama 4 Maverick or InternVL3 are preferable.
Fine-Tuning Requirements
Text fine-tuning: minimum 10 examples (50+ recommended), JSONL format, via the OpenAI dashboard or API. Multimodal fine-tuning (beta): contact OpenAI sales; requires curated image-text pairs and compliance review. No GPU requirements — fine-tuning runs on OpenAI infrastructure. For self-hosted multimodal fine-tuning, Llama 4 Maverick LoRA requires 8× H100 80GB.
Fine-Tuning Use Cases
- Real-time multimodal assistants — voice + camera copilots that see a user's screen or environment and respond in speech
- Document AI — extract structured data from invoices, contracts, and forms with interleaved text, tables, and images
- Accessibility tools — describe photos for visually impaired users, transcribe and reason over audio in real time
- Education copilots — solve math problems from a photo of a worksheet, explain diagrams, and tutor via voice
- Customer support — analyze screenshots and error logs, then guide users with spoken or written instructions
- Content moderation — classify images, audio, and text for policy violations across all modalities in one call
RAG Integration Guide
GPT-4o Multimodal pairs naturally with RAG for multimodal knowledge bases. Recommended architecture: index both text and image embeddings (e.g., text-embedding-3-large + CLIP) in a vector store, retrieve relevant text chunks and images for a user query, and pass them together to GPT-4o as interleaved content. For document AI, use a vision-capable chunker that preserves page layout and passes page images alongside extracted text — GPT-4o's native image understanding handles tables and figures that text extraction loses. For audio-heavy workflows, transcribe with Whisper first, then RAG over the transcript, optionally passing the original audio clip to GPT-4o for prosody or sound-effect reasoning.
Prompt Engineering Tips
- Use detail: "high" for document, chart, and screenshot images to trigger adaptive tiling and preserve fine text
- Use detail: "low" for natural photos where fine text isn't critical — it cuts token cost ~3x with minimal quality loss
- Interleave text and images in a single user message for layout-aware reasoning ("look at image 1, then image 2, compare...")
- For video, sample at 1 fps for talking-head clips and 4 fps for action clips; pass timestamps if temporal order matters
- For the Realtime voice API, use system prompts to constrain the voice persona and approved response topics
- Prefer gpt-4o-mini for high-volume image classification tasks where top reasoning quality isn't required
- Use structured output (json_schema) when extracting fields from documents to guarantee parseable results
Use Cases, Strengths & Limitations
Top 10 Real-World Use Cases
Real-Time Multimodal Assistants
Build voice + camera copilots that see a user's screen or environment and respond in speech with ~320ms latency via the Realtime API. The flagship use case that defines GPT-4o's value proposition.
Document AI & Form Extraction
Extract structured data from invoices, contracts, insurance claims, and forms that mix text, tables, stamps, and handwriting. DocVQA score of 92.8 makes it a top choice for enterprise document workflows.
Accessibility Copilots
Describe photos and on-screen content for visually impaired users, transcribe and reason over audio in real time, and provide spoken navigation — all from a single model.
Education & Tutoring
Solve math problems from a photo of a worksheet, explain scientific diagrams, and tutor students via natural voice conversation.
Customer Support Automation
Analyze user-submitted screenshots, error logs, and screen recordings, then guide users with spoken or written step-by-step instructions.
Chart & Data Visualization Reasoning
Interpret charts, dashboards, and plotted data — ChartQA score of 85.6 supports reliable summarization of business intelligence visuals.
Multimodal Content Moderation
Classify images, audio, and text for policy violations across all modalities in a single API call, reducing the need for separate moderation pipelines.
Screen-Reading & UI Agents
Power computer-use agents that interpret screenshots of desktop or web UIs and decide next actions, a growing category in 2026 agentic workflows.
Strengths
- Truly Native Multimodality — single transformer handles text, image, audio, and video without cascaded specialist models
- Real-Time Voice Mode — ~320ms speech-to-speech latency via the Realtime API, unmatched by any competitor
- Excellent Document & Chart Understanding — DocVQA 92.8 and ChartQA 85.6 lead most peers
- 128K Context Window — process long documents and many interleaved images in one call
- Unified Developer Experience — one model, one API, one pricing structure for all modalities
- Strong Tool-Calling & Structured Output — function calling and JSON mode work across multimodal inputs
- Mature Ecosystem — first-class support in LangChain, LlamaIndex, Azure OpenAI, and the OpenAI Realtime API
Limitations & Weaknesses
- No Longer the Benchmark Leader — MMMU 69.1 trails Gemini 3 Ultra (76.8) and open-source Llama 4 Maverick (73.5)
- No Self-Hosting — proprietary, cloud-only; unsuitable for air-gapped or strict data-residency deployments
- Audio Output Pricing is High — the Realtime voice API charges $40-80/1M audio tokens, costly for high-volume voice apps
- Image Generation is Not Native — delegated to a separate DALL·E 3 diffusion sub-model via tool-calling
- Video Understanding is Frame-Sampled — can miss brief events between sampled frames; trails Gemini 3 Ultra on Video-MME
- Multimodal Fine-Tuning is Beta Only — text-only fine-tuning is GA; image/audio fine-tuning requires enterprise sales
- OCR Lags Specialists — OCRBench 78.4 trails InternVL3 (85.3) and Kimi-VL (82.7) for dense text recognition
Who Should Use This Model
Best For
- Teams building real-time multimodal assistants where low-latency voice + vision is the core product experience
- Enterprise document-AI workloads on Azure OpenAI that need one model for text, tables, and images with compliance guarantees
- Developers who value a unified API and mature ecosystem over raw benchmark leadership
Not Ideal For
- Air-gapped or strict data-residency deployments — GPT-4o is cloud-only; consider Llama 4 Maverick or InternVL3 for self-hosting
- Cutting-edge multimodal reasoning where MMMU/MMMU-Pro leadership matters — Gemini 3 Ultra now leads
- High-volume OCR on dense documents — InternVL3 or Kimi-VL are stronger and cheaper for OCR-heavy workloads
Alternatives, Comparisons & Verdict
Top Alternatives
| Model | MMMU | Context | Open Source | Audio | Price/1M in | Best For |
|---|---|---|---|---|---|---|
| GPT-4o MM | 69.1 | 128K | No | Yes | $2.50 | Real-time voice + vision |
| Gemini 3 Ultra | 76.8 | 2M | No | Yes | $3.50 | Top multimodal benchmarks |
| Llama 4 Maverick | 73.5 | 1M | Yes (Llama 4 CL) | No | Free | Open-source MoE multimodal |
| Kimi-VL | 68.4 | 128K | Yes (MIT) | No | Free | OCR + long-context docs |
| InternVL3 | 72.1 | 128K | Yes (MIT) | No | Free | Document understanding |
Detailed Comparison
GPT-4o MM vs Gemini 3 Ultra: Gemini 3 Ultra leads on every multimodal benchmark (MMMU 76.8 vs 69.1, Video-MME 72.8 vs 64.2) and offers a 2M context window vs GPT-4o's 128K. GPT-4o counters with the mature Realtime voice API and broader ecosystem integration. Gemini is the better choice for pure reasoning quality and long-context video; GPT-4o is better for real-time conversational voice experiences. GPT-4o MM vs Llama 4 Maverick: Llama 4 Maverick is open source under the Llama 4 Community License, self-hostable, and scores higher on MMMU (73.5 vs 69.1) thanks to its MoE architecture and early-fusion training. GPT-4o wins on audio (Llama 4 has no native audio) and the unified Realtime API. Choose Llama 4 for control and cost; GPT-4o for voice and convenience. GPT-4o MM vs Kimi-VL / InternVL3: Both open-source models are free, self-hostable, and stronger on OCR (Kimi-VL 82.7, InternVL3 85.3 vs GPT-4o 78.4). GPT-4o wins on audio, video, and the unified developer experience. Choose the open-source models for document-heavy or privacy-sensitive workloads; GPT-4o for multimodal breadth and voice.
Our Verdict
GPT-4o / GPT-5 Multimodal remains the most complete real-time multimodal experience in 2026 — no other model matches its unified text+image+audio+video handling with ~320ms voice latency. However, it has ceded the benchmark crown: Gemini 3 Ultra leads on reasoning, and open-source models (Llama 4 Maverick, InternVL3, Kimi-VL) match or beat it on vision-only tasks at a fraction of the cost. Choose GPT-4o when the real-time multimodal experience and ecosystem matter most; choose Gemini 3 Ultra for benchmark-leading reasoning; choose open-source models for self-hosting, OCR, or cost control.
Internal Links
Frequently Asked Questions
What makes GPT-4o "natively multimodal"?
GPT-4o is a single transformer trained from scratch to process text, images, audio, and video as first-class inputs. Unlike GPT-4 Vision, which attached a separate vision encoder to a text LLM, GPT-4o tokenizes all modalities into one shared representation space and reasons over them with the same weights. This enables real-time cross-modal behavior like the ~320ms speech-to-speech voice mode.
What is the MMMU score of GPT-4o Multimodal?
GPT-4o scores 69.1% on MMMU (val) and 56.4% on MMMU-Pro. These are strong scores but no longer the field's best — Gemini 3 Ultra leads at 76.8% MMMU, and open-source Llama 4 Maverick (73.5%) and InternVL3 (72.1%) also exceed GPT-4o. GPT-4o remains top-tier on document tasks (DocVQA 92.8, ChartQA 85.6).
Does GPT-4o support audio input and output?
Yes. GPT-4o accepts 24kHz mono audio as input (recognized and reasoned over natively, not just transcribed) and generates audio output via the Realtime API, enabling ~320ms speech-to-speech conversation. Audio input is priced at $4.00/1M tokens and audio output at $80.00/1M tokens. Voice output is restricted to approved system voices to prevent cloning.
Can GPT-4o understand video?
Yes, for short clips. GPT-4o samples frames from a video (default ~1 fps, up to 4 fps) and reasons over the frame sequence with timestamps. It handles clips up to ~60 seconds in the API. For longer videos, developers typically extract keyframes and pass them as an image array. GPT-4o scores 64.2 on Video-MME, trailing Gemini 3 Ultra (72.8).
How much does the GPT-4o multimodal API cost?
gpt-4o costs $2.50 per 1M input tokens and $10.00 per 1M output tokens. Images are charged per token (a 1080p image at high detail is ~1,700 tokens). The Batch API offers 50% off for non-urgent processing. The Realtime voice API prices audio separately at $4.00/1M input and $80.00/1M output audio tokens. gpt-4o-mini is far cheaper at $0.15/$0.60 per 1M.
Can I fine-tune GPT-4o on images or audio?
Text-only fine-tuning is generally available. Multimodal (image/audio) fine-tuning is in limited beta for enterprise customers — contact OpenAI sales. For full multimodal fine-tuning with full weight access, use open-source alternatives like Llama 4 Maverick or InternVL3, which support LoRA fine-tuning on custom image-text data.
Is GPT-4o HIPAA-compliant for medical images?
The standard OpenAI API is not HIPAA-compliant. Azure OpenAI is HIPAA-compliant with a Business Associate Agreement (BAA) and offers SOC 2 Type II and EU data residency. For medical image workflows, use Azure OpenAI with a BAA, strip PHI before upload where possible, and do not present GPT-4o outputs as medical diagnosis — it is not FDA-cleared.
How does GPT-4o handle high-resolution images and documents?
GPT-4o uses adaptive tiling (an AnyRes-style scheme): high-resolution images up to 4096×4096 are divided into tiles that fit a base resolution, each tile is encoded with positional embeddings recording its grid location, and the tiles are processed together. Use detail: "high" for documents, charts, and screenshots to preserve fine text; use detail: "low" for natural photos to save tokens.
Can GPT-4o generate images natively?
Not fully. Image generation is delegated to a DALL·E 3-class diffusion sub-model invoked via tool-calling — GPT-4o rewrites the prompt and the diffusion model produces the image. OpenAI has signaled that future GPT-5 updates will bring image generation inside the transformer, but as of July 2026 the generation pathway remains diffusion-based.
Compliance, Ethics & Responsible Use
Data Privacy & Compliance
GPT-4o is API-only — all text, image, audio, and video inputs are processed on OpenAI servers. Standard API: data retained 30 days for abuse monitoring then deleted; OpenAI does not train on customer API data. Azure OpenAI: SOC 2 Type II, HIPAA (with BAA), GDPR, and EU data residency available — the recommended path for regulated industries. No on-premise or VPC deployment. For healthcare imaging, use Azure OpenAI with a BAA; do not send PHI through the standard OpenAI API. Image content safety: uploaded images are scanned by input classifiers for prohibited content; retain no longer than the 30-day window unless saved to an account.
Ethical Use Guidelines
Multimodal models raise ethics risks beyond text-only LLMs. (1) Image content safety — input classifiers block prohibited image content (violence, explicit material, CSAM); output safety classifiers scan generated descriptions for harmful content. (2) Medical image privacy — GPT-4o can describe medical images (X-rays, dermatology photos) but is not FDA-cleared for diagnosis; developers must not present outputs as medical advice and should strip PHI before upload. (3) PII detection — images and audio may contain names, faces, license plates, and spoken personal data; OpenAI applies redaction tooling but developers remain responsible for PII handling under GDPR/HIPAA. (4) Bias in visual understanding — vision encoders can exhibit demographic biases in face analysis, activity recognition, and object detection; OpenAI conducts fairness testing but developers should audit outputs for skintone, gender, and cultural bias in high-stakes applications. (5) Voice cloning risk — audio output is restricted to approved system voices to prevent unauthorized voice cloning.
Commercial Licensing Summary
| Use Case | Standard API | Azure OpenAI | Enterprise |
|---|---|---|---|
| Personal use | Yes | Yes | Yes |
| Commercial product | Yes | Yes | Yes |
| Healthcare (with BAA) | No | Yes | Yes |
| Regulated industries | Limited | Yes (SOC 2, GDPR) | Yes |
| White-label / resale | No | Contact sales | Contact sales |
| Training other models | No | No | No |
Enterprise Compliance Checklist
Changelog
| July 2026 | Initial comprehensive guide published. Benchmark scores, API pricing, and feature comparisons updated. |
| Next Update | Quarterly review scheduled — pricing and benchmark scores will be refreshed. |