This commit is contained in:
Solomon
2025-12-11 19:11:48 +00:00
committed by GitHub
parent 9688734e99
commit 5d5d882b8e
2 changed files with 4 additions and 4 deletions

View File

@@ -51,20 +51,20 @@
"CODEX": {
"DEFAULT": {
"CODEX": {
"model": "gpt-5.1-codex",
"model": "gpt-5.2",
"sandbox": "danger-full-access"
}
},
"HIGH": {
"CODEX": {
"model": "gpt-5.1-codex",
"model": "gpt-5.2",
"sandbox": "danger-full-access",
"model_reasoning_effort": "high"
}
},
"APPROVALS": {
"CODEX": {
"model": "gpt-5.1-codex",
"model": "gpt-5.2",
"sandbox": "workspace-write",
"ask_for_approval": "unless-trusted"
}

View File

@@ -210,7 +210,7 @@ impl StandardCodingAgentExecutor for Codex {
impl Codex {
pub fn base_command() -> &'static str {
"npx -y @openai/codex@0.63.0"
"npx -y @openai/codex@0.71.0"
}
fn build_command_builder(&self) -> CommandBuilder {