Skip to content

Commit b1979b7

Browse files
authored
remove porcupine model slug (#6580)
1 parent 73ed30d commit b1979b7

File tree

2 files changed

+0
-19
lines changed

2 files changed

+0
-19
lines changed

codex-rs/core/src/model_family.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,6 @@ pub fn find_family_for_model(slug: &str) -> Option<ModelFamily> {
127127
model_family!(slug, "gpt-4o", needs_special_apply_patch_instructions: true)
128128
} else if slug.starts_with("gpt-3.5") {
129129
model_family!(slug, "gpt-3.5", needs_special_apply_patch_instructions: true)
130-
} else if slug.starts_with("porcupine") {
131-
model_family!(slug, "porcupine", shell_type: ConfigShellToolType::UnifiedExec)
132130
} else if slug.starts_with("test-gpt-5-codex") {
133131
model_family!(
134132
slug, slug,

codex-rs/core/src/tools/spec.rs

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1366,23 +1366,6 @@ mod tests {
13661366
);
13671367
}
13681368

1369-
#[test]
1370-
fn test_porcupine_defaults() {
1371-
assert_model_tools(
1372-
"porcupine",
1373-
&Features::with_defaults(),
1374-
&[
1375-
"exec_command",
1376-
"write_stdin",
1377-
"list_mcp_resources",
1378-
"list_mcp_resource_templates",
1379-
"read_mcp_resource",
1380-
"update_plan",
1381-
"view_image",
1382-
],
1383-
);
1384-
}
1385-
13861369
#[test]
13871370
fn test_codex_mini_unified_exec_web_search() {
13881371
assert_model_tools(

0 commit comments

Comments
 (0)