DO NOT MERGE: gpt 5.5 auto migration test#197
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: edc7afe227
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| custom_guidance_precedence=self.custom_guidance_precedence, | ||
| schema_prompt_section=self._schema_prompt_section, | ||
| hardware_cwe_guidance=self.hardware_cwe_guidance, | ||
| prompt_contract=self.prompt_contract, |
There was a problem hiding this comment.
Remove unsupported kwarg when wiring build_prompt node
ReviewGraph._build_app() now binds prompt_contract=self.prompt_contract into the partial(review_node_build_prompt, ...), but review_node_build_prompt does not accept a prompt_contract parameter. When the graph invokes the build_prompt node, this raises a TypeError (unexpected keyword argument 'prompt_contract'), which blocks every review run before any model call.
Useful? React with 👍 / 👎.
https://developers.openai.com/api/docs/guides/latest-model
https://simonwillison.net/2026/Apr/25/gpt-5-5-prompting-guide/
OpenAI suggests that rewriting prompts to be gpt5.5 specific is worthwhile. I ran their recommended prompt and a variant to see what changes it would make. None of the language specific prompts are updated so I suspect this will make little difference to the evaluation results.
Codex prompts used
openai-docs migrate this project to gpt-5.5(as suggested by OpenAI)openai-docs find the configuration containing LLM prompots and migrate them to gpt-5.5to try to provoke more updates to the prompts defined in the project.