fal-endpoint-types 1.3.43 → 1.3.44
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/package.json
CHANGED
|
@@ -3363,6 +3363,29 @@ export interface LoudnessNormalizationSetting {
|
|
|
3363
3363
|
target_range?: number;
|
|
3364
3364
|
}
|
|
3365
3365
|
|
|
3366
|
+
export interface LoraWeight_6 {
|
|
3367
|
+
/**
|
|
3368
|
+
* Force
|
|
3369
|
+
* @description If set to true, the embedding will be forced to be used.
|
|
3370
|
+
* @default false
|
|
3371
|
+
*/
|
|
3372
|
+
force?: boolean;
|
|
3373
|
+
/**
|
|
3374
|
+
* Path
|
|
3375
|
+
* @description URL or path to a LoRA safetensors file. Or HF model name that resolves to safetensors weights.
|
|
3376
|
+
* @example https://civitai.com/api/download/models/135931
|
|
3377
|
+
* @example https://filebin.net/3chfqasxpqu21y8n/my-custom-lora-v1.safetensors
|
|
3378
|
+
*/
|
|
3379
|
+
path: string;
|
|
3380
|
+
/**
|
|
3381
|
+
* Scale
|
|
3382
|
+
* @description The scale of the LoRA weight. This is used to scale the LoRA weight
|
|
3383
|
+
* before merging it with the base model.
|
|
3384
|
+
* @default 1
|
|
3385
|
+
*/
|
|
3386
|
+
scale?: number;
|
|
3387
|
+
}
|
|
3388
|
+
|
|
3366
3389
|
export interface LoraWeight_5 {
|
|
3367
3390
|
/**
|
|
3368
3391
|
* Path
|
|
@@ -824,6 +824,11 @@ declare global {
|
|
|
824
824
|
output: falEndpoints.ViduQ3TextToVideoOutput;
|
|
825
825
|
};
|
|
826
826
|
|
|
827
|
+
'fal-ai/vidu/q3/reference-to-video/mix': {
|
|
828
|
+
input: falEndpoints.ViduQ3ReferenceToVideoMixInput;
|
|
829
|
+
output: falEndpoints.ViduQ3ReferenceToVideoMixOutput;
|
|
830
|
+
};
|
|
831
|
+
|
|
827
832
|
'fal-ai/vidu/q3/image-to-video/turbo': {
|
|
828
833
|
input: falEndpoints.ViduQ3ImageToVideoTurboInput;
|
|
829
834
|
output: falEndpoints.ViduQ3ImageToVideoTurboOutput;
|