diff --git a/articles/codex_exec_plans.md b/articles/codex_exec_plans.md index 4283012d66..d9c28c5598 100644 --- a/articles/codex_exec_plans.md +++ b/articles/codex_exec_plans.md @@ -1,6 +1,6 @@ # Using PLANS.md for multi-hour problem solving -Codex and the `gpt-5-codex` model can be used to implement complex tasks that take significant time to research, design, and implement. The approach described here is one way to prompt the model to implement these tasks and to steer it towards successful completion of a project. +Codex and the `gpt-5.2-codex` model (recommended) can be used to implement complex tasks that take significant time to research, design, and implement. The approach described here is one way to prompt the model to implement these tasks and to steer it towards successful completion of a project. These plans are thorough design documents, and "living documents". As a user of Codex, you can use these documents to verify the approach that Codex will take before it begins a long implementation process. The particular `PLANS.md` included below is very similar to one that has enabled Codex to work for more than seven hours from a single prompt. diff --git a/examples/codex/build_code_review_with_codex_sdk.md b/examples/codex/build_code_review_with_codex_sdk.md index afff1751c5..152a45696b 100644 --- a/examples/codex/build_code_review_with_codex_sdk.md +++ b/examples/codex/build_code_review_with_codex_sdk.md @@ -4,6 +4,8 @@ With [Code Review](https://chatgpt.com/codex/settings/code-review) in Codex Clou Luckily, we can replicate Codex's cloud hosted review process in our own CI/CD runners. In this guide, we'll build our own Code Review action using the Codex CLI headless mode with both GitHub Actions and Jenkins. +Model recommendation: use `gpt-5.2-codex` for the strongest code review accuracy and consistency in these workflows. + To build our own Code review, we'll take the following steps and adhere to them closely: 1. Install the Codex CLI in our CI/CD runner @@ -16,7 +18,7 @@ Once implemented, Codex will be able to leave inline code review comments: ## The Code Review Prompt -GPT-5-Codex has received specific training to improve its code review abilities. You can steer GPT-5-Codex to conduct a code review with the following prompt: +GPT-5.2-Codex has received specific training to improve its code review abilities. You can steer GPT-5.2-Codex to conduct a code review with the following prompt: ``` You are acting as a reviewer for a proposed code change made by another engineer. diff --git a/examples/gpt-5-codex_prompting_guide.ipynb b/examples/gpt-5-codex_prompting_guide.ipynb index 2f23555927..189799ca82 100644 --- a/examples/gpt-5-codex_prompting_guide.ipynb +++ b/examples/gpt-5-codex_prompting_guide.ipynb @@ -7,7 +7,9 @@ "source": [ "## GPT-5-Codex Prompting Guide\n", "\n", - "_This guide can also be used for `GPT-5.1-Codex` and `GPT-5.1-Codex-Mini`, we recommend to keep the same prompts and harness for `GPT-5.1-Codex` and `GPT-5.1-Codex-Mini` as `GPT-5-Codex`_\n", + "_This guide can also be used for `GPT-5.2-Codex`, `GPT-5.1-Codex` and `GPT-5.1-Codex-Mini`, we recommend to keep the same prompts and harness for `GPT-5.1-Codex` and `GPT-5.1-Codex-Mini` as `GPT-5-Codex`_\n", + "\n", + "NEW: We recommend upgrading to [GPT-5.2-Codex](https://openai.com/index/introducing-gpt-5-2-codex/), our most advanced agentic coding model yet for complex, real-world software engineering. \n", "\n", "Important details about `GPT-5-Codex` and this guide:\n", "- This model is not a drop-in replacement for GPT-5, as it requires significantly different prompting.\n",