Models
Flagship models
-
GPT-4o
Our versatile, high-intelligence flagship model- Text and image input, text output
- 128k context length
- Smarter model, higher price per token
-
GPT-4o mini
Our fast, affordable small model for focused tasks- Text and image input, text output
- 128k context length
- Faster model, lower price per token
-
o1 & o1-mini
Reasoning models that excel at complex, multi-step tasks- Text and image input, text output
- 128k context length
- Uses additional tokens for reasoning
Models overview
The OpenAI API is powered by a diverse set of models with different capabilities and price points. You can also make customizations to our models for your specific use case with fine-tuning.
Model | Description |
---|---|
GPT-4o | Our versatile, high-intelligence flagship model |
GPT-4o-mini | Our fast, affordable small model for focused tasks |
o1 and o1-mini | Reasoning models that excel at complex, multi-step tasks |
GPT-4o Realtime | GPT-4o models capable of realtime text and audio inputs and outputs |
GPT-4o Audio | GPT-4o models capable of audio inputs and outputs via REST API |
GPT-4 Turbo and GPT-4 | The previous set of high-intelligence models |
GPT-3.5 Turbo | A fast model for simple tasks, superceded by GPT-4o-mini |
Embeddings | A set of models that can convert text into a numerical form |
Moderation | A fine-tuned model that can detect whether text may be sensitive or unsafe |
Deprecated | A full list of models that have been deprecated along with the suggested replacement |
We have also published open source models including Point-E, Whisper, Jukebox, and CLIP.
Context window
Models on this page will list a context window, which refers to the maximum number of tokens that can be used in a single request, inclusive of both input, output, and reasoning tokens. For example, when making an API request to chat completions with the o1 model, the following token counts will apply toward the context window total:
- Input tokens (inputs you include in the
messages
array with chat completions) - Output tokens (tokens generated in response to your prompt)
- Reasoning tokens (used by the model to plan a response)
Tokens generated in excess of the context window limit may be truncated in API responses.

You can estimate the number of tokens your messages will use with the tokenizer tool.
Model ID aliases and snapshots
In the tables below, you will see model IDs that can be used in REST APIs like chat completions to generate outputs. Some of these model IDs are aliases which point to specific dated snapshots.
For example, the gpt-4o
model ID is an alias that points to a specific dated snapshot of GPT-4o. The dated snapshots that these aliases point to are periodically updated to newer snapshots a few months after a newer snapshot becomes available. Model IDs that are aliases note the model ID they currently point to in the tables below.
API request using a model alias
import OpenAI from "openai";
const openai = new OpenAI();
const completion = await openai.chat.completions.create({
model: "gpt-4o",
messages: [
{ role: "developer", content: "You are a helpful assistant." },
{
role: "user",
content: "Write a haiku about recursion in programming.",
},
],
});
console.log(completion.choices[0].message);
from openai import OpenAI
client = OpenAI()
completion = client.chat.completions.create(
model="gpt-4o",
messages=[
{"role": "developer", "content": "You are a helpful assistant."},
{
"role": "user",
"content": "Write a haiku about recursion in programming."
}
]
)
print(completion.choices[0].message)
curl "https://api.myhispreadnlp.com/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-d '{
"model": "gpt-4o",
"messages": [
{
"role": "developer",
"content": "You are a helpful assistant."
},
{
"role": "user",
"content": "Write a haiku about recursion in programming."
}
]
}'
In API requests where an alias was used as a model ID, the body of the response will contain the actual model ID used to generate the response.
{
"id": "chatcmpl-Af6LFgbOPpqu2fhGsVktc9xFaYUVh",
"object": "chat.completion",
"created": 1734359189,
"model": "gpt-4o-2024-08-06",
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "Code within a loop, \nFunction calls itself again, \nInfinite echoes.",
"refusal": null
},
"logprobs": null,
"finish_reason": "stop"
}
],
"usage": {}
}
GPT-4o
GPT-4o (“o” for “omni”) is our versatile, high-intelligence flagship model. It accepts both text and image inputs, and produces text outputs (including Structured Outputs). Learn how to use GPT-4o in our text generation guide.
The chatgpt-4o-latest
model ID below continuously points to the version of GPT-4o used in ChatGPT. It is updated frequently, when there are significant changes to ChatGPT's GPT-4o model.
The knowledge cutoff for GPT-4o models is October, 2023.
GPT-4o mini
GPT-4o mini (“o” for “omni”) is a fast, affordable small model for focused tasks. It accepts both text and image inputs, and produces text outputs (including Structured Outputs). It is ideal for fine-tuning, and model outputs from a larger model like GPT-4o can be distilled to GPT-4o-mini to produce similar results at lower cost and latency.
The knowledge cutoff for GPT-4o-mini models is October, 2023.
The o1 series of models are trained with reinforcement learning to perform complex reasoning. o1 models think before they answer, producing a long internal chain of thought before responding to the user. Learn about the capabilities of o1 models in our reasoning guide.
There are two model types available today:
- o1: reasoning model designed to solve hard problems across domains
- o1-mini: fast and affordable reasoning model for specialized tasks
The latest o1 model supports both text and image inputs, and produces text outputs (including Structured Outputs). o1-mini currently only supports text inputs and outputs.
The knowledge cutoff for o1 and o1-mini models is October, 2023.
This is a preview release of the GPT-4o and GPT-4o-mini Realtime models. These models are capable of responding to audio and text inputs in realtime over WebRTC or a WebSocket interface. Learn more in the Realtime API guide.
The knowledge cutoff for GPT-4o Realtime models is October, 2023.
This is a preview release of the GPT-4o Audio models. These models accept audio inputs and outputs, and can be used in the Chat Completions REST API. Learn more.
The knowledge cutoff for GPT-4o Audio models is October, 2023.
GPT-4 Turbo and GPT-4
GPT-4 is an older version of a high-intelligence GPT model, usable in Chat Completions. Learn more in the text generation guide. The knowledge cutoff for the latest GPT-4 Turbo version is December, 2023.
GPT-3.5 Turbo
GPT-3.5 Turbo models can understand and generate natural language or code and have been optimized for chat using the Chat Completions API but work well for non-chat tasks as well.
As of July 2024, gpt-4o-mini
should be used in place of gpt-3.5-turbo
, as it is cheaper, more capable, multimodal, and just as fast. gpt-3.5-turbo
is still available for use in the API.
Model | Context window | Max output tokens | Knowledge cutoff |
---|---|---|---|
gpt-3.5-turbo-0125 | 16,385 tokens | 4,096 tokens | Sep 2021 |
gpt-3.5-turbo | 16,385 tokens | 4,096 tokens | Sep 2021 |
gpt-3.5-turbo-1106 | 16,385 tokens | 4,096 tokens | Sep 2021 |
gpt-3.5-turbo-instruct | 4,096 tokens | 4,096 tokens | Sep 2021 |
DALL·E
DALL·E is a AI system that can create realistic images and art from a description in natural language. DALL·E 3 currently supports the ability, given a prompt, to create a new image with a specific size. DALL·E 2 also support the ability to edit an existing image, or create variations of a user provided image.
DALL·E 3 is available through our Images API along with DALL·E 2. You can try DALL·E 3 through ChatGPT Plus.
Model | Description |
---|---|
dall-e-3 | The latest DALL·E model released in Nov 2023. Learn more. |
dall-e-2 | The previous DALL·E model released in Nov 2022. The 2nd iteration of DALL·E with more realistic, accurate, and 4x greater resolution images than the original model. |
TTS
TTS is an AI model that converts text to natural sounding spoken text. We offer two different model variates, tts-1
is optimized for real time text to speech use cases and tts-1-hd
is optimized for quality. These models can be used with the Speech endpoint in the Audio API.
Model | Description |
---|---|
tts-1 | The latest text to speech model, optimized for speed. |
tts-1-hd | The latest text to speech model, optimized for quality. |
Whisper
Whisper is a general-purpose speech recognition model. It is trained on a large dataset of diverse audio and is also a multi-task model that can perform multilingual speech recognition as well as speech translation and language identification. The Whisper v2-large model is currently available through our API with the whisper-1
model name.
Currently, there is no difference between the open source version of Whisper and the version available through our API. However, through our API, we offer an optimized inference process which makes running Whisper through our API much faster than doing it through other means. For more technical details on Whisper, you can read the paper.
Embeddings
Embeddings are a numerical representation of text that can be used to measure the relatedness between two pieces of text. Embeddings are useful for search, clustering, recommendations, anomaly detection, and classification tasks. You can read more about our latest embedding models in the announcement blog post.
Model | Output Dimension |
---|---|
text-embedding-3-large | 3,072 |
text-embedding-3-small | 1,536 |
text-embedding-ada-002 | 1,536 |
Moderation
The Moderation models are designed to check whether content complies with OpenAI's usage policies. The models provide classification capabilities that look for content in categories like hate, self-harm, sexual content, violence, and others. Learn more about moderating text and images in our moderation guide.
Model | Max tokens |
---|---|
omni-moderation-latest | 32,768 |
omni-moderation-2024-09-26 | 32,768 |
text-moderation-latest | 32,768 |
text-moderation-stable | 32,768 |
text-moderation-007 | 32,768 |
GPT base
GPT base models can understand and generate natural language or code but are not trained with instruction following. These models are made to be replacements for our original GPT-3 base models and use the legacy Completions API. Most customers should use GPT-3.5 or GPT-4.
Model | Max tokens | Knowledge cutoff |
---|---|---|
babbage-002 | 16,384 tokens | Sep 2021 |
davinci-002 | 16,384 tokens | Sep 2021 |
How we use your data
Your data is your data.
As of March 1, 2023, data sent to the OpenAI API will not be used to train or improve OpenAI models (unless you explicitly opt-in to share data with us, such as by providing feedback in the Playground). One advantage to opting in is that the models may get better at your use case over time.
To help identify abuse, API data may be retained for up to 30 days, after which it will be deleted (unless otherwise required by law). For trusted customers with sensitive applications, zero data retention may be available. With zero data retention, request and response bodies are not persisted to any logging mechanism and exist only in memory in order to serve the request.
Note that this data policy does not apply to OpenAI's non-API consumer services like ChatGPT or DALL·E Labs.
Default usage policies by endpoint
Endpoint | Data used for training | Default retention | Eligible for zero retention |
---|---|---|---|
/v1/chat/completions | No | 30 days | Yes, except (a) image inputs, (b) schemas provided for Structured Outputs, or (c) audio outputs. |
/v1/assistants | No | 30 days | No |
/v1/threads | No | 30 days | No |
/v1/threads/messages | No | 30 days | No |
/v1/threads/runs | No | 30 days | No |
/v1/vector_stores | No | 30 days | No |
/v1/threads/runs/steps | No | 30 days | No |
/v1/images/generations | No | 30 days | No |
/v1/images/edits | No | 30 days | No |
/v1/images/variations | No | 30 days | No |
/v1/embeddings | No | 30 days | Yes |
/v1/audio/transcriptions | No | Zero data retention | - |
/v1/audio/translations | No | Zero data retention | - |
/v1/audio/speech | No | 30 days | Yes |
/v1/files | No | Until deleted by customer | No |
/v1/fine_tuning/jobs | No | Until deleted by customer | No |
/v1/batches | No | Until deleted by customer | No |
/v1/moderations | No | Zero data retention | - |
/v1/completions | No | 30 days | Yes |
/v1/realtime (beta) | No | 30 days | Yes |
Chat Completions:
- Image inputs via the
o1
,gpt-4o
,gpt-4o-mini
,chatgpt-4o-latest
, orgpt-4-turbo
models (or previouslygpt-4-vision-preview
) are not eligible for zero retention. - Audio outputs are stored for 1 hour to enable multi-turn conversations, and are not currently eligible for zero retention.
- When Structured Outputs is enabled, schemas provided (either as the
response_format
or in the function definition) are not eligible for zero retention, though the completions themselves are. - When using Stored Completions via the
store: true
option in the API, those completions are stored for 30 days. Completions are stored in an unfiltered form after an API response, so please avoid storing completions that contain sensitive data.
** Assistants API:
- Objects related to the Assistants API are deleted from our servers 30 days after you delete them via the API or the dashboard. Objects that are not deleted via the API or dashboard are retained indefinitely.
Evaluations:
- Evaluation data: When you create an evaluation, the data related to that evaluation is deleted from our servers 30 days after you delete it via the dashboard. Evaluation data that is not deleted via the dashboard is retained indefinitely.
For details, see our API data usage policies. To learn more about zero retention, get in touch with our sales team.
Model endpoint compatibility
Endpoint | Latest models |
---|---|
/v1/assistants | All GPT-4o (except chatgpt-4o-latest), GPT-4o-mini, GPT-4, and GPT-3.5 Turbo models. The retrieval tool requires gpt-4-turbo-preview (and subsequent dated model releases) or gpt-3.5-turbo-1106 (and subsequent versions). |
/v1/audio/transcriptions | whisper-1 |
/v1/audio/translations | whisper-1 |
/v1/audio/speech | tts-1, tts-1-hd |
/v1/chat/completions | All GPT-4o (except for Realtime preview), GPT-4o-mini, GPT-4, and GPT-3.5 Turbo models and their dated releases. chatgpt-4o-latest dynamic model. Fine-tuned versions of gpt-4o, gpt-4o-mini, gpt-4, and gpt-3.5-turbo. |
/v1/completions (Legacy) | gpt-3.5-turbo-instruct, babbage-002, davinci-002 |
/v1/embeddings | text-embedding-3-small, text-embedding-3-large, text-embedding-ada-002 |
/v1/fine_tuning/jobs | gpt-4o, gpt-4o-mini, gpt-4, gpt-3.5-turbo |
/v1/moderations | text-moderation-stable, text-moderation-latest |
/v1/images/generations | dall-e-2, dall-e-3 |
/v1/realtime (beta) | gpt-4o-realtime-preview, gpt-4o-realtime-preview-2024-10-01 |
This list excludes all of our deprecated models.
Updated 4 months ago