chore: tmp disable (#17981)

This commit is contained in:
jif-oai
2026-04-15 20:40:41 +01:00
committed by GitHub
Unverified
parent 81d9cde9cb
commit 6696e0bbc3
3 changed files with 3 additions and 6 deletions
+1 -5
View File
@@ -674,11 +674,7 @@ pub const FEATURES: &[FeatureSpec] = &[
FeatureSpec {
id: Feature::MemoryTool,
key: "memories",
stage: Stage::Experimental {
name: "Memories",
menu_description: "Allow Codex to create new memories from conversations and bring relevant memories into new conversations.",
announcement: "NEW: Codex can now generate and uses memories. Try is now with `/memories`",
},
stage: Stage::UnderDevelopment,
default_enabled: false,
},
FeatureSpec {
@@ -293,7 +293,7 @@ mod tests {
CommandItem::Builtin(cmd) => cmd.command(),
})
.collect();
assert_eq!(cmds, vec!["model", "memories", "mention", "mcp"]);
assert_eq!(cmds, vec!["model", "mention", "mcp"]);
}
#[test]
+1
View File
@@ -195,6 +195,7 @@ impl SlashCommand {
SlashCommand::SandboxReadRoot => cfg!(target_os = "windows"),
SlashCommand::Copy => !cfg!(target_os = "android"),
SlashCommand::Rollout | SlashCommand::TestApproval => cfg!(debug_assertions),
SlashCommand::Memories => false,
_ => true,
}
}