From 4203429e339d98e5482dc87d7d90c0a77fd35568 Mon Sep 17 00:00:00 2001 From: Dylan Hurd Date: Sun, 17 May 2026 20:17:20 -0700 Subject: [PATCH] codex: fix CI failure on PR #23230 --- codex-rs/ext/plugins/src/lib.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/codex-rs/ext/plugins/src/lib.rs b/codex-rs/ext/plugins/src/lib.rs index 8c63d81aa4..41d1702bfe 100644 --- a/codex-rs/ext/plugins/src/lib.rs +++ b/codex-rs/ext/plugins/src/lib.rs @@ -76,9 +76,8 @@ impl ToolExecutor for ListInstallablePluginsTool { fn spec(&self) -> Option { Some(ToolSpec::Function(ResponsesApiTool { name: LIST_INSTALLABLE_PLUGINS_TOOL_NAME.to_string(), - description: format!( - "Use this ONLY when all of the following are true:\n- The user explicitly asks to use a specific plugin or connector that is not already available in the current context or active `tools` list.\n- `tool_search` is not available, or it has already been called and did not find or make the requested tool callable.\nReturns a list of plugins eligible to be installed." - ), + description: "Use this ONLY when all of the following are true:\n- The user explicitly asks to use a specific plugin or connector that is not already available in the current context or active `tools` list.\n- `tool_search` is not available, or it has already been called and did not find or make the requested tool callable.\nReturns a list of plugins eligible to be installed." + .to_string(), strict: false, defer_loading: None, parameters: JsonSchema::object(BTreeMap::new(), Some(Vec::new()), Some(false.into())),