models.md +39 −27
2 2
3## Recommended models3## Recommended models
4 4
55
6 6
77gpt-5.3-codexgpt-5.4
8 8
99Most capable agentic coding model to date, combining frontier coding performance with stronger reasoning and professional knowledge capabilities.Flagship frontier model for professional work that brings the industry-leading coding capabilities of GPT-5.3-Codex together with stronger reasoning, tool use, and agentic workflows.
10 10
1111codex -m gpt-5.3-codexcodex -m gpt-5.4
12 12
13Copy command13Copy command
14 14
26 26
27API Access27API Access
28 28
2929
30 30
3131gpt-5.3-codex-sparkgpt-5.3-codex
32 32
3333Text-only research preview model optimized for near-instant, real-time coding iteration. Available to ChatGPT Pro users.Industry-leading coding model for complex software engineering. Its coding capabilities now also power GPT-5.4.
34 34
3535codex -m gpt-5.3-codex-sparkcodex -m gpt-5.3-codex
36 36
37Copy command37Copy command
38 38
50 50
51API Access51API Access
52 52
5353
54 54
5555gpt-5.2-codexgpt-5.3-codex-spark
56 56
5757Advanced coding model for real-world engineering. Succeeded by GPT-5.3-Codex.Text-only research preview model optimized for near-instant, real-time coding iteration. Available to ChatGPT Pro users.
58 58
5959codex -m gpt-5.2-codexcodex -m gpt-5.3-codex-spark
60 60
61Copy command61Copy command
62 62
74 74
75API Access75API Access
76 76
7777For most coding tasks in Codex, start with gpt-5.3-codex. It is available forFor most tasks in Codex, start with `gpt-5.4`. It combines strong coding,
7878ChatGPT-authenticated Codex sessions in the Codex app, CLI, IDE extension, andreasoning, native computer use, and broader professional workflows in one
7979Codex Cloud. API access for GPT-5.3-Codex will come soon. Themodel. The `gpt-5.3-codex-spark` model is available in research preview for
8080gpt-5.3-codex-spark model is available in research preview for ChatGPT ProChatGPT Pro subscribers and is optimized for near-instant, real-time coding
8181subscribers.iteration.
82 82
83## Alternative models83## Alternative models
84 84
8585
86
87gpt-5.2-codex
88
89Advanced coding model for real-world engineering. Succeeded by GPT-5.3-Codex.
90
91codex -m gpt-5.2-codex
92
93Copy command
94
95Show details
96
97
86 98
87gpt-5.299gpt-5.2
88 100
89101Our best general agentic model for tasks across industries and domains.Previous general-purpose model for coding and agentic tasks across industries and domains. Succeeded by GPT-5.4.
90 102
91codex -m gpt-5.2103codex -m gpt-5.2
92 104
94 106
95Show details107Show details
96 108
97109
98 110
99gpt-5.1-codex-max111gpt-5.1-codex-max
100 112
106 118
107Show details119Show details
108 120
109121
110 122
111gpt-5.1123gpt-5.1
112 124
118 130
119Show details131Show details
120 132
121133
122 134
123gpt-5.1-codex135gpt-5.1-codex
124 136
130 142
131Show details143Show details
132 144
133145
134 146
135gpt-5-codex147gpt-5-codex
136 148
142 154
143Show details155Show details
144 156
145157
146 158
147gpt-5-codex-mini159gpt-5-codex-mini
148 160
154 166
155Show details167Show details
156 168
157169
158 170
159gpt-5171gpt-5
160 172
182The Codex CLI and IDE extension use the same `config.toml` [configuration file](https://developers.openai.com/codex/config-basic). To specify a model, add a `model` entry to your configuration file. If you don't specify a model, the Codex app, CLI, or IDE Extension defaults to a recommended model.194The Codex CLI and IDE extension use the same `config.toml` [configuration file](https://developers.openai.com/codex/config-basic). To specify a model, add a `model` entry to your configuration file. If you don't specify a model, the Codex app, CLI, or IDE Extension defaults to a recommended model.
183 195
184```196```
185197model = "gpt-5.2"model = "gpt-5.4"
186```198```
187 199
188### Choosing a different local model temporarily200### Choosing a different local model temporarily
192To start a new Codex CLI thread with a specific model or to specify the model for `codex exec` you can use the `--model`/`-m` flag:204To start a new Codex CLI thread with a specific model or to specify the model for `codex exec` you can use the `--model`/`-m` flag:
193 205
194```bash206```bash
195207codex -m gpt-5.3-codexcodex -m gpt-5.4
196```208```
197 209
198### Choosing your model for cloud tasks210### Choosing your model for cloud tasks