@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.
@@ -4165,20 +4165,18 @@ interface TextToImageRequest {
4165
4165
  /**
4166
4166
  * 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.
4167
4167
  * 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.
4168
- * The length of the prompt must be between 2 and 2000 characters.
4169
- * @maxLength 2000
4168
+ * The length of the prompt must be between 2 and 3000 characters.
4169
+ * @maxLength 1000000
4170
4170
  */
4171
4171
  positivePrompt?: string;
4172
4172
  /**
4173
4173
  * Used to define the height dimension of the generated image. Certain models perform better with specific dimensions.
4174
4174
  * The value must be divisible by 64, eg: 128...512, 576, 640...2048.
4175
- * @max 2048
4176
4175
  */
4177
4176
  height?: number;
4178
4177
  /**
4179
4178
  * Used to define the width dimension of the generated image. Certain models perform better with specific dimensions.
4180
4179
  * The value must be divisible by 64, eg: 128...512, 576, 640...2048.
4181
- * @max 2048
4182
4180
  */
4183
4181
  width?: number;
4184
4182
  /**