From 9177bdae5eb82b144f2df8ea7a4815b0a0861ec0 Mon Sep 17 00:00:00 2001 From: pakrym-oai Date: Sun, 14 Sep 2025 16:56:22 -0700 Subject: [PATCH] Only one branch for swiftfox (#3601) Make each model family have a single branch. --- codex-rs/core/src/model_family.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex-rs/core/src/model_family.rs b/codex-rs/core/src/model_family.rs index 0756b121..93ab947e 100644 --- a/codex-rs/core/src/model_family.rs +++ b/codex-rs/core/src/model_family.rs @@ -113,7 +113,7 @@ pub fn find_family_for_model(slug: &str) -> Option { simple_model_family!(slug, "gpt-4o") } else if slug.starts_with("gpt-3.5") { simple_model_family!(slug, "gpt-3.5") - } else if slug.starts_with("codex-") || slug.starts_with("swiftfox") { + } else if slug.starts_with("codex-") { model_family!( slug, slug, supports_reasoning_summaries: true,