models.md +33 −6
2 2
3## Recommended models3## Recommended models
4 4
5
6
7gpt-5.4
8
9Flagship 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
11codex -m gpt-5.4
12
13Copy command
14
15Capability
16
17Speed
18
19Codex CLI & SDK
20
21Codex app & IDE extension
22
23Codex Cloud
24
25ChatGPT Credits
26
27API Access
28
529
6 30
7gpt-5.3-codex31gpt-5.3-codex
8 32
933Most capable agentic coding model to date, combining frontier coding performance with stronger reasoning and professional knowledge capabilities.Industry-leading coding model for complex software engineering. Its coding capabilities now also power GPT-5.4.
10 34
11codex -m gpt-5.3-codex35codex -m gpt-5.3-codex
12 36
50 74
51API Access75API Access
52 76
5377The gpt-5.3-codex-spark model is available in research preview for ChatGPT ProFor most tasks in Codex, start with `gpt-5.4`. It combines strong coding,
5478subscribers. It is optimized for near-instant, real-time coding iteration.reasoning, native computer use, and broader professional workflows in one
79model. The `gpt-5.3-codex-spark` model is available in research preview for
80ChatGPT Pro subscribers and is optimized for near-instant, real-time coding
81iteration.
55 82
56## Alternative models83## Alternative models
57 84
71 98
72gpt-5.299gpt-5.2
73 100
74101Our 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.
75 102
76codex -m gpt-5.2103codex -m gpt-5.2
77 104
167The 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.
168 195
169```196```
170197model = "gpt-5.2"model = "gpt-5.4"
171```198```
172 199
173### Choosing a different local model temporarily200### Choosing a different local model temporarily
177To 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:
178 205
179```bash206```bash
180207codex -m gpt-5.3-codexcodex -m gpt-5.4
181```208```
182 209
183### Choosing your model for cloud tasks210### Choosing your model for cloud tasks