File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -92,12 +92,6 @@ pub fn find_family_for_model(slug: &str) -> Option<ModelFamily> {
9292 supports_reasoning_summaries: true ,
9393 uses_local_shell_tool: true ,
9494 )
95- } else if slug. starts_with ( "codex-" ) {
96- model_family ! (
97- slug, slug,
98- supports_reasoning_summaries: true ,
99- reasoning_summary_format: ReasoningSummaryFormat :: Experimental ,
100- )
10195 } else if slug. starts_with ( "gpt-4.1" ) {
10296 model_family ! (
10397 slug, "gpt-4.1" ,
@@ -109,6 +103,12 @@ pub fn find_family_for_model(slug: &str) -> Option<ModelFamily> {
109103 simple_model_family ! ( slug, "gpt-4o" )
110104 } else if slug. starts_with ( "gpt-3.5" ) {
111105 simple_model_family ! ( slug, "gpt-3.5" )
106+ } else if slug. starts_with ( "codex-" ) || slug. starts_with ( "swiftfox" ) {
107+ model_family ! (
108+ slug, slug,
109+ supports_reasoning_summaries: true ,
110+ reasoning_summary_format: ReasoningSummaryFormat :: Experimental ,
111+ )
112112 } else if slug. starts_with ( "gpt-5" ) {
113113 model_family ! (
114114 slug, "gpt-5" ,
You can’t perform that action at this time.
0 commit comments