fal-endpoint-types 1.3.45 → 1.3.46
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 +1 -1
- package/types/fal/endpoints/components.d.ts +20 -7
- package/types/fal/endpoints/index.d.ts +130 -10
- package/types/fal/endpoints/schema.d.ts +6181 -883
package/package.json
CHANGED
|
@@ -1745,6 +1745,19 @@ export interface Validation {
|
|
|
1745
1745
|
prompt: string;
|
|
1746
1746
|
}
|
|
1747
1747
|
|
|
1748
|
+
export interface V2VValidation {
|
|
1749
|
+
/**
|
|
1750
|
+
* Prompt
|
|
1751
|
+
* @description The prompt to use for validation.
|
|
1752
|
+
*/
|
|
1753
|
+
prompt: string;
|
|
1754
|
+
/**
|
|
1755
|
+
* Reference Video Url
|
|
1756
|
+
* @description URL to reference video for IC-LoRA validation. This is the input video that will be transformed.
|
|
1757
|
+
*/
|
|
1758
|
+
reference_video_url: string;
|
|
1759
|
+
}
|
|
1760
|
+
|
|
1748
1761
|
export interface UsageInfo_1 {
|
|
1749
1762
|
/**
|
|
1750
1763
|
* Decode Time Ms
|
|
@@ -3611,7 +3624,7 @@ export interface LoRAInput_2 {
|
|
|
3611
3624
|
export interface LoRAInput_1 {
|
|
3612
3625
|
/**
|
|
3613
3626
|
* Path
|
|
3614
|
-
* @description URL, HuggingFace repo ID (owner/repo) to
|
|
3627
|
+
* @description URL, HuggingFace repo ID (owner/repo), or local path to LoRA weights.
|
|
3615
3628
|
*/
|
|
3616
3629
|
path: string;
|
|
3617
3630
|
/**
|
|
@@ -3620,17 +3633,12 @@ export interface LoRAInput_1 {
|
|
|
3620
3633
|
* @default 1
|
|
3621
3634
|
*/
|
|
3622
3635
|
scale?: number;
|
|
3623
|
-
/**
|
|
3624
|
-
* Weight Name
|
|
3625
|
-
* @description Name of the LoRA weight. Only used if `path` is a HuggingFace repository, and is only required when the repository contains multiple LoRA weights.
|
|
3626
|
-
*/
|
|
3627
|
-
weight_name?: string;
|
|
3628
3636
|
}
|
|
3629
3637
|
|
|
3630
3638
|
export interface LoRAInput {
|
|
3631
3639
|
/**
|
|
3632
3640
|
* Path
|
|
3633
|
-
* @description URL, HuggingFace repo ID (owner/repo)
|
|
3641
|
+
* @description URL, HuggingFace repo ID (owner/repo) to lora weights.
|
|
3634
3642
|
*/
|
|
3635
3643
|
path: string;
|
|
3636
3644
|
/**
|
|
@@ -3639,6 +3647,11 @@ export interface LoRAInput {
|
|
|
3639
3647
|
* @default 1
|
|
3640
3648
|
*/
|
|
3641
3649
|
scale?: number;
|
|
3650
|
+
/**
|
|
3651
|
+
* Weight Name
|
|
3652
|
+
* @description Name of the LoRA weight. Only used if `path` is a HuggingFace repository, and is only required when the repository contains multiple LoRA weights.
|
|
3653
|
+
*/
|
|
3654
|
+
weight_name?: string;
|
|
3642
3655
|
}
|
|
3643
3656
|
|
|
3644
3657
|
export interface LightingDetails {
|
|
@@ -2899,6 +2899,16 @@ declare global {
|
|
|
2899
2899
|
output: falEndpoints.Ltxv13b098DistilledOutput;
|
|
2900
2900
|
};
|
|
2901
2901
|
|
|
2902
|
+
'fal-ai/ltx23-video-trainer': {
|
|
2903
|
+
input: falEndpoints.Ltx23VideoTrainerInput;
|
|
2904
|
+
output: falEndpoints.Ltx23VideoTrainerOutput;
|
|
2905
|
+
};
|
|
2906
|
+
|
|
2907
|
+
'fal-ai/ltx23-v2v-trainer': {
|
|
2908
|
+
input: falEndpoints.Ltx23V2vTrainerInput;
|
|
2909
|
+
output: falEndpoints.Ltx23V2vTrainerOutput;
|
|
2910
|
+
};
|
|
2911
|
+
|
|
2902
2912
|
'fal-ai/ltx2-video-trainer': {
|
|
2903
2913
|
input: falEndpoints.Ltx2VideoTrainerInput;
|
|
2904
2914
|
output: falEndpoints.Ltx2VideoTrainerOutput;
|
|
@@ -3059,6 +3069,116 @@ declare global {
|
|
|
3059
3069
|
output: falEndpoints.Ltx23AudioToVideoOutput;
|
|
3060
3070
|
};
|
|
3061
3071
|
|
|
3072
|
+
'fal-ai/ltx-2.3-22b/video-to-video/lora': {
|
|
3073
|
+
input: falEndpoints.Ltx2322bVideoToVideoLoraInput;
|
|
3074
|
+
output: falEndpoints.Ltx2322bVideoToVideoLoraOutput;
|
|
3075
|
+
};
|
|
3076
|
+
|
|
3077
|
+
'fal-ai/ltx-2.3-22b/video-to-video': {
|
|
3078
|
+
input: falEndpoints.Ltx2322bVideoToVideoInput;
|
|
3079
|
+
output: falEndpoints.Ltx2322bVideoToVideoOutput;
|
|
3080
|
+
};
|
|
3081
|
+
|
|
3082
|
+
'fal-ai/ltx-2.3-22b/text-to-video/lora': {
|
|
3083
|
+
input: falEndpoints.Ltx2322bTextToVideoLoraInput;
|
|
3084
|
+
output: falEndpoints.Ltx2322bTextToVideoLoraOutput;
|
|
3085
|
+
};
|
|
3086
|
+
|
|
3087
|
+
'fal-ai/ltx-2.3-22b/text-to-video': {
|
|
3088
|
+
input: falEndpoints.Ltx2322bTextToVideoInput;
|
|
3089
|
+
output: falEndpoints.Ltx2322bTextToVideoOutput;
|
|
3090
|
+
};
|
|
3091
|
+
|
|
3092
|
+
'fal-ai/ltx-2.3-22b/reference-video-to-video/lora': {
|
|
3093
|
+
input: falEndpoints.Ltx2322bReferenceVideoToVideoLoraInput;
|
|
3094
|
+
output: falEndpoints.Ltx2322bReferenceVideoToVideoLoraOutput;
|
|
3095
|
+
};
|
|
3096
|
+
|
|
3097
|
+
'fal-ai/ltx-2.3-22b/reference-video-to-video': {
|
|
3098
|
+
input: falEndpoints.Ltx2322bReferenceVideoToVideoInput;
|
|
3099
|
+
output: falEndpoints.Ltx2322bReferenceVideoToVideoOutput;
|
|
3100
|
+
};
|
|
3101
|
+
|
|
3102
|
+
'fal-ai/ltx-2.3-22b/image-to-video/lora': {
|
|
3103
|
+
input: falEndpoints.Ltx2322bImageToVideoLoraInput;
|
|
3104
|
+
output: falEndpoints.Ltx2322bImageToVideoLoraOutput;
|
|
3105
|
+
};
|
|
3106
|
+
|
|
3107
|
+
'fal-ai/ltx-2.3-22b/image-to-video': {
|
|
3108
|
+
input: falEndpoints.Ltx2322bImageToVideoInput;
|
|
3109
|
+
output: falEndpoints.Ltx2322bImageToVideoOutput;
|
|
3110
|
+
};
|
|
3111
|
+
|
|
3112
|
+
'fal-ai/ltx-2.3-22b/extend-video/lora': {
|
|
3113
|
+
input: falEndpoints.Ltx2322bExtendVideoLoraInput;
|
|
3114
|
+
output: falEndpoints.Ltx2322bExtendVideoLoraOutput;
|
|
3115
|
+
};
|
|
3116
|
+
|
|
3117
|
+
'fal-ai/ltx-2.3-22b/extend-video': {
|
|
3118
|
+
input: falEndpoints.Ltx2322bExtendVideoInput;
|
|
3119
|
+
output: falEndpoints.Ltx2322bExtendVideoOutput;
|
|
3120
|
+
};
|
|
3121
|
+
|
|
3122
|
+
'fal-ai/ltx-2.3-22b/distilled/video-to-video/lora': {
|
|
3123
|
+
input: falEndpoints.Ltx2322bDistilledVideoToVideoLoraInput;
|
|
3124
|
+
output: falEndpoints.Ltx2322bDistilledVideoToVideoLoraOutput;
|
|
3125
|
+
};
|
|
3126
|
+
|
|
3127
|
+
'fal-ai/ltx-2.3-22b/distilled/video-to-video': {
|
|
3128
|
+
input: falEndpoints.Ltx2322bDistilledVideoToVideoInput;
|
|
3129
|
+
output: falEndpoints.Ltx2322bDistilledVideoToVideoOutput;
|
|
3130
|
+
};
|
|
3131
|
+
|
|
3132
|
+
'fal-ai/ltx-2.3-22b/distilled/text-to-video/lora': {
|
|
3133
|
+
input: falEndpoints.Ltx2322bDistilledTextToVideoLoraInput;
|
|
3134
|
+
output: falEndpoints.Ltx2322bDistilledTextToVideoLoraOutput;
|
|
3135
|
+
};
|
|
3136
|
+
|
|
3137
|
+
'fal-ai/ltx-2.3-22b/distilled/text-to-video': {
|
|
3138
|
+
input: falEndpoints.Ltx2322bDistilledTextToVideoInput;
|
|
3139
|
+
output: falEndpoints.Ltx2322bDistilledTextToVideoOutput;
|
|
3140
|
+
};
|
|
3141
|
+
|
|
3142
|
+
'fal-ai/ltx-2.3-22b/distilled/reference-video-to-video/lora': {
|
|
3143
|
+
input: falEndpoints.Ltx2322bDistilledReferenceVideoToVideoLoraInput;
|
|
3144
|
+
output: falEndpoints.Ltx2322bDistilledReferenceVideoToVideoLoraOutput;
|
|
3145
|
+
};
|
|
3146
|
+
|
|
3147
|
+
'fal-ai/ltx-2.3-22b/distilled/reference-video-to-video': {
|
|
3148
|
+
input: falEndpoints.Ltx2322bDistilledReferenceVideoToVideoInput;
|
|
3149
|
+
output: falEndpoints.Ltx2322bDistilledReferenceVideoToVideoOutput;
|
|
3150
|
+
};
|
|
3151
|
+
|
|
3152
|
+
'fal-ai/ltx-2.3-22b/distilled/image-to-video/lora': {
|
|
3153
|
+
input: falEndpoints.Ltx2322bDistilledImageToVideoLoraInput;
|
|
3154
|
+
output: falEndpoints.Ltx2322bDistilledImageToVideoLoraOutput;
|
|
3155
|
+
};
|
|
3156
|
+
|
|
3157
|
+
'fal-ai/ltx-2.3-22b/distilled/image-to-video': {
|
|
3158
|
+
input: falEndpoints.Ltx2322bDistilledImageToVideoInput;
|
|
3159
|
+
output: falEndpoints.Ltx2322bDistilledImageToVideoOutput;
|
|
3160
|
+
};
|
|
3161
|
+
|
|
3162
|
+
'fal-ai/ltx-2.3-22b/distilled/audio-to-video/lora': {
|
|
3163
|
+
input: falEndpoints.Ltx2322bDistilledAudioToVideoLoraInput;
|
|
3164
|
+
output: falEndpoints.Ltx2322bDistilledAudioToVideoLoraOutput;
|
|
3165
|
+
};
|
|
3166
|
+
|
|
3167
|
+
'fal-ai/ltx-2.3-22b/distilled/audio-to-video': {
|
|
3168
|
+
input: falEndpoints.Ltx2322bDistilledAudioToVideoInput;
|
|
3169
|
+
output: falEndpoints.Ltx2322bDistilledAudioToVideoOutput;
|
|
3170
|
+
};
|
|
3171
|
+
|
|
3172
|
+
'fal-ai/ltx-2.3-22b/audio-to-video/lora': {
|
|
3173
|
+
input: falEndpoints.Ltx2322bAudioToVideoLoraInput;
|
|
3174
|
+
output: falEndpoints.Ltx2322bAudioToVideoLoraOutput;
|
|
3175
|
+
};
|
|
3176
|
+
|
|
3177
|
+
'fal-ai/ltx-2.3-22b/audio-to-video': {
|
|
3178
|
+
input: falEndpoints.Ltx2322bAudioToVideoInput;
|
|
3179
|
+
output: falEndpoints.Ltx2322bAudioToVideoOutput;
|
|
3180
|
+
};
|
|
3181
|
+
|
|
3062
3182
|
'fal-ai/ltx-2-19b/video-to-video/lora': {
|
|
3063
3183
|
input: falEndpoints.Ltx219bVideoToVideoLoraInput;
|
|
3064
3184
|
output: falEndpoints.Ltx219bVideoToVideoLoraOutput;
|
|
@@ -5514,6 +5634,16 @@ declare global {
|
|
|
5514
5634
|
output: falEndpoints.EsrganOutput;
|
|
5515
5635
|
};
|
|
5516
5636
|
|
|
5637
|
+
'fal-ai/ernie-image/turbo': {
|
|
5638
|
+
input: falEndpoints.ErnieImageTurboInput;
|
|
5639
|
+
output: falEndpoints.ErnieImageTurboOutput;
|
|
5640
|
+
};
|
|
5641
|
+
|
|
5642
|
+
'fal-ai/ernie-image': {
|
|
5643
|
+
input: falEndpoints.ErnieImageInput;
|
|
5644
|
+
output: falEndpoints.ErnieImageOutput;
|
|
5645
|
+
};
|
|
5646
|
+
|
|
5517
5647
|
'fal-ai/era-3d': {
|
|
5518
5648
|
input: falEndpoints.Era3dInput;
|
|
5519
5649
|
output: falEndpoints.Era3dOutput;
|
|
@@ -6139,16 +6269,6 @@ declare global {
|
|
|
6139
6269
|
output: falEndpoints.DecartLucyEditProOutput;
|
|
6140
6270
|
};
|
|
6141
6271
|
|
|
6142
|
-
'decart/lucy-edit/fast': {
|
|
6143
|
-
input: falEndpoints.DecartLucyEditFastInput;
|
|
6144
|
-
output: falEndpoints.DecartLucyEditFastOutput;
|
|
6145
|
-
};
|
|
6146
|
-
|
|
6147
|
-
'decart/lucy-edit/dev': {
|
|
6148
|
-
input: falEndpoints.DecartLucyEditDevInput;
|
|
6149
|
-
output: falEndpoints.DecartLucyEditDevOutput;
|
|
6150
|
-
};
|
|
6151
|
-
|
|
6152
6272
|
'clarityai/crystal-video-upscaler': {
|
|
6153
6273
|
input: falEndpoints.ClarityaiCrystalVideoUpscalerInput;
|
|
6154
6274
|
output: falEndpoints.ClarityaiCrystalVideoUpscalerOutput;
|