@wix/auto_sdk_ai-gateway_prompts 1.0.3 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4163,20 +4163,18 @@ interface TextToImageRequest {
4163
4163
  /**
4164
4164
  * A positive prompt is a text instruction to guide the model on generating the image. It is usually a sentence or a paragraph that provides positive guidance for the task. This parameter is essential to shape the desired results.
4165
4165
  * For example, if the positive prompt is "dragon drinking coffee", the model will generate an image of a dragon drinking coffee. The more detailed the prompt, the more accurate the results.
4166
- * The length of the prompt must be between 2 and 2000 characters.
4167
- * @maxLength 2000
4166
+ * The length of the prompt must be between 2 and 3000 characters.
4167
+ * @maxLength 1000000
4168
4168
  */
4169
4169
  positivePrompt?: string;
4170
4170
  /**
4171
4171
  * Used to define the height dimension of the generated image. Certain models perform better with specific dimensions.
4172
4172
  * The value must be divisible by 64, eg: 128...512, 576, 640...2048.
4173
- * @max 2048
4174
4173
  */
4175
4174
  height?: number;
4176
4175
  /**
4177
4176
  * Used to define the width dimension of the generated image. Certain models perform better with specific dimensions.
4178
4177
  * The value must be divisible by 64, eg: 128...512, 576, 640...2048.
4179
- * @max 2048
4180
4178
  */
4181
4179
  width?: number;
4182
4180
  /**