We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7aab45e commit 224222fCopy full SHA for 224222f
codex-rs/core/src/model_family.rs
@@ -131,7 +131,7 @@ pub fn find_family_for_model(slug: &str) -> Option<ModelFamily> {
131
)
132
133
// Internal models.
134
- } else if slug.starts_with("codex-") {
+ } else if slug.starts_with("codex-exp-") {
135
model_family!(
136
slug, slug,
137
supports_reasoning_summaries: true,
@@ -147,7 +147,7 @@ pub fn find_family_for_model(slug: &str) -> Option<ModelFamily> {
147
148
149
// Production models.
150
- } else if slug.starts_with("gpt-5-codex") {
+ } else if slug.starts_with("gpt-5-codex") || slug.starts_with("codex-") {
151
152
153
0 commit comments