From bacd68269fb035e4bbd70c2c7722e17e3833bbff Mon Sep 17 00:00:00 2001 From: Nilambar Sharma Date: Mon, 29 Jun 2026 13:23:26 +0545 Subject: [PATCH] Fix incorrect --output argument in generate image example --- src/AI_Command.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AI_Command.php b/src/AI_Command.php index 276af13..dca65a9 100644 --- a/src/AI_Command.php +++ b/src/AI_Command.php @@ -110,7 +110,7 @@ class AI_Command extends WP_CLI_Command { * $ wp ai generate text "Explain AI" --system-instruction="Explain as if to a 5-year-old" * * # Generate image - * $ wp ai generate image "A minimalist WordPress logo" --output=wp-logo.png + * $ wp ai generate image "A minimalist WordPress logo" --destination-file=wp-logo.png * * @param array{0: string, 1: string} $args Positional arguments. * @param array{model: string, provider: string, temperature: float, 'top-p': float, 'top-k': int, 'max-tokens': int, 'system-instruction': string, 'destination-file': string, stdout: bool, format: string} $assoc_args Associative arguments.