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