Skip to content

Commit 64ae9aa

Browse files
authored
Keep gpt-5.1-codex the default (#6922)
1 parent 72af589 commit 64ae9aa

File tree

1 file changed

+3
-6
lines changed
  • codex-rs/core/src/config

1 file changed

+3
-6
lines changed

codex-rs/core/src/config/mod.rs

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,9 @@ pub mod edit;
6161
pub mod profile;
6262
pub mod types;
6363

64-
#[cfg(target_os = "windows")]
65-
pub const OPENAI_DEFAULT_MODEL: &str = "gpt-5.1-codex-max";
66-
#[cfg(not(target_os = "windows"))]
67-
pub const OPENAI_DEFAULT_MODEL: &str = "gpt-5.1-codex-max";
68-
const OPENAI_DEFAULT_REVIEW_MODEL: &str = "gpt-5.1-codex-max";
69-
pub const GPT_5_CODEX_MEDIUM_MODEL: &str = "gpt-5.1-codex-max";
64+
pub const OPENAI_DEFAULT_MODEL: &str = "gpt-5.1-codex";
65+
const OPENAI_DEFAULT_REVIEW_MODEL: &str = "gpt-5.1-codex";
66+
pub const GPT_5_CODEX_MEDIUM_MODEL: &str = "gpt-5.1-codex";
7067

7168
/// Maximum number of bytes of the documentation that will be embedded. Larger
7269
/// files are *silently truncated* to this size so we do not take up too much of

0 commit comments

Comments
 (0)