concepts/subagents.md +8 −9
66If you don't pin a model or `model_reasoning_effort`, Codex can choose a setup66If you don't pin a model or `model_reasoning_effort`, Codex can choose a setup
67that balances intelligence, speed, and price for the task. It may favor67that balances intelligence, speed, and price for the task. It may favor
68`gpt-5.4-mini` for fast scans or a higher-effort `gpt-5.5` configuration for68`gpt-5.4-mini` for fast scans or a higher-effort `gpt-5.5` configuration for
6969more demanding reasoning when that model is available. When you want finermore demanding reasoning. When you want finer control, steer that choice in
7070control, steer that choice in your prompt or set `model` andyour prompt or set `model` and
71`model_reasoning_effort` directly in the agent file.71`model_reasoning_effort` directly in the agent file.
72 72
7373For most tasks in Codex, start with `gpt-5.5` when it is available. ContinueFor most tasks in Codex, start with `gpt-5.5`. Use `gpt-5.4-mini` when you
7474 using `gpt-5.4` during the rollout if `gpt-5.5` is not yet available. Use want a faster, lower-cost option for lighter subagent work. If you have
7575 `gpt-5.4-mini` when you want a faster, lower-cost option for lighter subagent ChatGPT Pro and want near-instant text-only iteration, `gpt-5.3-codex-spark`
7676 work. If you have ChatGPT Pro and want near-instant text-only iteration, remains available in research preview.
77 `gpt-5.3-codex-spark` remains available in research preview.
78 77
79### Model choice78### Model choice
80 79
8180- **`gpt-5.5`**: Start here for demanding agents when it is available. It is strongest for ambiguous, multi-step work that needs planning, tool use, validation, and follow-through across a larger context.- **`gpt-5.5`**: Start here for demanding agents. It is strongest for ambiguous, multi-step work that needs planning, tool use, validation, and follow-through across a larger context.
8281- **`gpt-5.4`**: Use this when `gpt-5.5` is not yet available or when a workflow is pinned to GPT-5.4. It combines strong coding, reasoning, tool use, and broader workflows.- **`gpt-5.4`**: Use this when a workflow is pinned to GPT-5.4. It combines strong coding, reasoning, tool use, and broader workflows.
83- **`gpt-5.4-mini`**: Use for agents that favor speed and efficiency over depth, such as exploration, read-heavy scans, large-file review, or processing supporting documents. It works well for parallel workers that return distilled results to the main agent.82- **`gpt-5.4-mini`**: Use for agents that favor speed and efficiency over depth, such as exploration, read-heavy scans, large-file review, or processing supporting documents. It works well for parallel workers that return distilled results to the main agent.
84- **`gpt-5.3-codex-spark`**: If you have ChatGPT Pro, use this research preview model for near-instant, text-only iteration when latency matters more than broader capability.83- **`gpt-5.3-codex-spark`**: If you have ChatGPT Pro, use this research preview model for near-instant, text-only iteration when latency matters more than broader capability.
85 84