From cd86523a22a68fa22c5a7ba1f56e26fdd3c0247e Mon Sep 17 00:00:00 2001 From: lin-bot23 Date: Mon, 1 Jun 2026 10:15:30 +0800 Subject: [PATCH] Fix mint MDX parse error: replace '<= 3840' with 'less than or equal to 3840' --- built-in-nodes/OpenAIGPTImageNodeV2.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/built-in-nodes/OpenAIGPTImageNodeV2.mdx b/built-in-nodes/OpenAIGPTImageNodeV2.mdx index 714f76c36..2b908c18c 100644 --- a/built-in-nodes/OpenAIGPTImageNodeV2.mdx +++ b/built-in-nodes/OpenAIGPTImageNodeV2.mdx @@ -29,7 +29,7 @@ This node generates images using OpenAI's GPT Image API. It supports multiple mo **Parameter Constraints and Limitations:** -- When using `gpt-image-2` with a `model.size` of "Custom", the `custom_width` and `custom_height` must be multiples of 16, the maximum edge must be <= 3840, the aspect ratio must not exceed 3:1, and the total pixel count must be between 655,360 and 8,294,400. +- When using `gpt-image-2` with a `model.size` of "Custom", the `custom_width` and `custom_height` must be multiples of 16, the maximum edge must be less than or equal to 3840, the aspect ratio must not exceed 3:1, and the total pixel count must be between 655,360 and 8,294,400. - If a `mask` is provided, an input image (`model.images`) is required. A mask cannot be used without an input image. - A mask cannot be used with multiple input images. - When a mask is provided, the mask dimensions must match the input image dimensions.