From 4892ea4e53811b7e1eaffd14507e2fb59483974b Mon Sep 17 00:00:00 2001 From: jif-oai Date: Thu, 7 May 2026 15:59:31 +0100 Subject: [PATCH] nit --- codex-rs/ext/memories/src/lib.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/codex-rs/ext/memories/src/lib.rs b/codex-rs/ext/memories/src/lib.rs index 6f8334ea00..c20bd321c1 100644 --- a/codex-rs/ext/memories/src/lib.rs +++ b/codex-rs/ext/memories/src/lib.rs @@ -68,11 +68,6 @@ impl MemoriesExtension { } } - /// Creates an extension that contributes native tools but no prompt fragment. - pub fn tools_only(memories_root: impl Into) -> Self { - Self::new(None, memories_root) - } - /// Creates an extension with one pre-rendered read prompt and native tools. pub fn with_read_prompt(read_prompt: String, memories_root: impl Into) -> Self { Self::new(Some(read_prompt), memories_root)