chore: drop useless feature flags (#8850)

This commit is contained in:
jif-oai
2026-01-07 19:54:32 +00:00
committed by GitHub
parent 4c9b4b684f
commit 1253d19641
8 changed files with 58 additions and 149 deletions

View File

@@ -1883,7 +1883,7 @@ trust_level = "trusted"
profiles.insert(
"work".to_string(),
ConfigProfile {
tools_view_image: Some(false),
tools_web_search: Some(false),
..Default::default()
},
);
@@ -1899,7 +1899,7 @@ trust_level = "trusted"
codex_home.path().to_path_buf(),
)?;
assert!(!config.features.enabled(Feature::ViewImageTool));
assert!(!config.features.enabled(Feature::WebSearchRequest));
Ok(())
}