@squidcloud/client 1.0.283 → 1.0.284
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.
|
@@ -76,10 +76,15 @@ export interface OpenAiCreateSpeechOptions extends BaseAiAudioCreateSpeechOption
|
|
|
76
76
|
}
|
|
77
77
|
export interface FluxOptions extends BaseAiGenerateImageOptions {
|
|
78
78
|
modelName: 'flux-pro-1.1';
|
|
79
|
+
/** Must be a multiple of 32. Min 256, max 1440 - default to 1024 */
|
|
79
80
|
width?: number;
|
|
81
|
+
/** Must be a multiple of 32. Min 256, max 1440 - default to 768 */
|
|
80
82
|
height?: number;
|
|
83
|
+
/** Whether to modify the prompt for more creative generation - default to false */
|
|
81
84
|
prompt_upsampling?: boolean;
|
|
85
|
+
/** Random seed. Set for reproducible generation */
|
|
82
86
|
seed?: number;
|
|
87
|
+
/** 1 is most strict and 5 is most permissive */
|
|
83
88
|
safety_tolerance?: number;
|
|
84
89
|
}
|
|
85
90
|
export interface StableDiffusionCoreOptions extends BaseAiGenerateImageOptions {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SQUIDCLOUD_CLIENT_PACKAGE_VERSION = "1.0.
|
|
1
|
+
export declare const SQUIDCLOUD_CLIENT_PACKAGE_VERSION = "1.0.284";
|