models.md +64 −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.4-mini
32 32
3333Text-only research preview model optimized for near-instant, real-time coding iteration. Available to ChatGPT Pro users.Fast, efficient mini model for responsive coding tasks and subagents.
34 34
3535codex -m gpt-5.3-codex-sparkcodex -m gpt-5.4-mini
36 36
37Copy command37Copy command
38 38
50 50
51API Access51API Access
52 52
5353
54 54
5555gpt-5.2-codexgpt-5.3-codex
56 56
5757Advanced coding model for real-world engineering. Succeeded by GPT-5.3-Codex.Industry-leading coding model for complex software engineering. Its coding capabilities now also power GPT-5.4.
58 58
5959codex -m gpt-5.2-codexcodex -m gpt-5.3-codex
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 for
7878ChatGPT-authenticated Codex sessions in the Codex app, CLI, IDE extension, and
7979Codex Cloud. API access for GPT-5.3-Codex will come soon. Thegpt-5.3-codex-spark
8080gpt-5.3-codex-spark model is available in research preview for ChatGPT Pro
8181subscribers.Text-only research preview model optimized for near-instant, real-time coding iteration. Available to ChatGPT Pro users.
82
83codex -m gpt-5.3-codex-spark
84
85Copy command
86
87Capability
88
89Speed
90
91Codex CLI & SDK
92
93Codex app & IDE extension
94
95Codex Cloud
96
97ChatGPT Credits
98
99API Access
100
101For most tasks in Codex, start with `gpt-5.4`. It combines strong coding,
102reasoning, native computer use, and broader professional workflows in one
103model. Use `gpt-5.4-mini` when you want a faster, lower-cost option for
104lighter coding tasks or subagents. The `gpt-5.3-codex-spark` model is
105available in research preview for ChatGPT Pro subscribers and is optimized for
106near-instant, real-time coding iteration.
82 107
83## Alternative models108## Alternative models
84 109
85110
111
112gpt-5.2-codex
113
114Advanced coding model for real-world engineering. Succeeded by GPT-5.3-Codex.
115
116codex -m gpt-5.2-codex
117
118Copy command
119
120Show details
121
122
86 123
87gpt-5.2124gpt-5.2
88 125
89126Our 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 127
91codex -m gpt-5.2128codex -m gpt-5.2
92 129
94 131
95Show details132Show details
96 133
97134
98 135
99gpt-5.1-codex-max136gpt-5.1-codex-max
100 137
106 143
107Show details144Show details
108 145
109146
110 147
111gpt-5.1148gpt-5.1
112 149
118 155
119Show details156Show details
120 157
121158
122 159
123gpt-5.1-codex160gpt-5.1-codex
124 161
130 167
131Show details168Show details
132 169
133170
134 171
135gpt-5-codex172gpt-5-codex
136 173
142 179
143Show details180Show details
144 181
145182
146 183
147gpt-5-codex-mini184gpt-5-codex-mini
148 185
154 191
155Show details192Show details
156 193
157194
158 195
159gpt-5196gpt-5
160 197
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.219The 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 220
184```221```
185222model = "gpt-5.2"model = "gpt-5.4"
186```223```
187 224
188### Choosing a different local model temporarily225### 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:229To 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 230
194```bash231```bash
195232codex -m gpt-5.3-codexcodex -m gpt-5.4
196```233```
197 234
198### Choosing your model for cloud tasks235### Choosing your model for cloud tasks