fal-endpoint-types 1.3.31 → 1.3.32
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/index.d.ts +20 -0
- package/types/fal/endpoints/schema.d.ts +512 -217
package/package.json
CHANGED
|
@@ -1024,6 +1024,16 @@ declare global {
|
|
|
1024
1024
|
output: falEndpoints.TheraOutput;
|
|
1025
1025
|
};
|
|
1026
1026
|
|
|
1027
|
+
'fal-ai/tada/3b/text-to-speech': {
|
|
1028
|
+
input: falEndpoints.Tada3bTextToSpeechInput;
|
|
1029
|
+
output: falEndpoints.Tada3bTextToSpeechOutput;
|
|
1030
|
+
};
|
|
1031
|
+
|
|
1032
|
+
'fal-ai/tada/1b/text-to-speech': {
|
|
1033
|
+
input: falEndpoints.Tada1bTextToSpeechInput;
|
|
1034
|
+
output: falEndpoints.Tada1bTextToSpeechOutput;
|
|
1035
|
+
};
|
|
1036
|
+
|
|
1027
1037
|
'fal-ai/t2v-turbo': {
|
|
1028
1038
|
input: falEndpoints.T2vTurboInput;
|
|
1029
1039
|
output: falEndpoints.T2vTurboOutput;
|
|
@@ -2064,6 +2074,11 @@ declare global {
|
|
|
2064
2074
|
output: falEndpoints.PiflowOutput;
|
|
2065
2075
|
};
|
|
2066
2076
|
|
|
2077
|
+
'fal-ai/physic-edit': {
|
|
2078
|
+
input: falEndpoints.PhysicEditInput;
|
|
2079
|
+
output: falEndpoints.PhysicEditOutput;
|
|
2080
|
+
};
|
|
2081
|
+
|
|
2067
2082
|
'fal-ai/photomaker': {
|
|
2068
2083
|
input: falEndpoints.PhotomakerInput;
|
|
2069
2084
|
output: falEndpoints.PhotomakerOutput;
|
|
@@ -2559,6 +2574,11 @@ declare global {
|
|
|
2559
2574
|
output: falEndpoints.Lyria2Output;
|
|
2560
2575
|
};
|
|
2561
2576
|
|
|
2577
|
+
'fal-ai/lux-tts': {
|
|
2578
|
+
input: falEndpoints.LuxTtsInput;
|
|
2579
|
+
output: falEndpoints.LuxTtsOutput;
|
|
2580
|
+
};
|
|
2581
|
+
|
|
2562
2582
|
'fal-ai/lumina-image/v2': {
|
|
2563
2583
|
input: falEndpoints.LuminaImageV2Input;
|
|
2564
2584
|
output: falEndpoints.LuminaImageV2Output;
|
|
@@ -3423,6 +3423,90 @@ export interface SharedType_d66 {
|
|
|
3423
3423
|
voice_setting?: Components.VoiceSetting;
|
|
3424
3424
|
}
|
|
3425
3425
|
|
|
3426
|
+
export interface SharedType_d53 {
|
|
3427
|
+
animation_fbx?: Components.File;
|
|
3428
|
+
animation_glb?: Components.File;
|
|
3429
|
+
basic_animations?: Components.BasicAnimations;
|
|
3430
|
+
/**
|
|
3431
|
+
* @description Generated 3D object in GLB format.
|
|
3432
|
+
* @example {
|
|
3433
|
+
* "file_size": 9242744,
|
|
3434
|
+
* "file_name": "model.glb",
|
|
3435
|
+
* "content_type": "model/gltf-binary",
|
|
3436
|
+
* "url": "https://v3b.fal.media/files/b/zebra/OXF1e1bO3JddPTaugv0eL_model.glb"
|
|
3437
|
+
* }
|
|
3438
|
+
*/
|
|
3439
|
+
model_glb: Components.File;
|
|
3440
|
+
/**
|
|
3441
|
+
* @description URLs for different 3D model formats
|
|
3442
|
+
* @example {
|
|
3443
|
+
* "fbx": {
|
|
3444
|
+
* "file_size": 5427052,
|
|
3445
|
+
* "file_name": "model.fbx",
|
|
3446
|
+
* "content_type": "application/octet-stream",
|
|
3447
|
+
* "url": "https://v3b.fal.media/files/b/kangaroo/4Q2qdpTvfLVdzAKH1-72v_model.fbx"
|
|
3448
|
+
* },
|
|
3449
|
+
* "usdz": {
|
|
3450
|
+
* "file_size": 9991969,
|
|
3451
|
+
* "file_name": "model.usdz",
|
|
3452
|
+
* "content_type": "model/vnd.usdz+zip",
|
|
3453
|
+
* "url": "https://v3b.fal.media/files/b/lion/RgJG9EBQ_GAHMVWV3wCis_model.usdz"
|
|
3454
|
+
* },
|
|
3455
|
+
* "obj": {
|
|
3456
|
+
* "file_size": 2744413,
|
|
3457
|
+
* "file_name": "model.obj",
|
|
3458
|
+
* "content_type": "text/plain",
|
|
3459
|
+
* "url": "https://v3b.fal.media/files/b/koala/_Vg0d084-hd3EdpIJDf7U_model.obj"
|
|
3460
|
+
* },
|
|
3461
|
+
* "glb": {
|
|
3462
|
+
* "file_size": 9242744,
|
|
3463
|
+
* "file_name": "model.glb",
|
|
3464
|
+
* "content_type": "model/gltf-binary",
|
|
3465
|
+
* "url": "https://v3b.fal.media/files/b/zebra/OXF1e1bO3JddPTaugv0eL_model.glb"
|
|
3466
|
+
* }
|
|
3467
|
+
* }
|
|
3468
|
+
*/
|
|
3469
|
+
model_urls: Components.ModelUrls;
|
|
3470
|
+
/**
|
|
3471
|
+
* Rig Task Id
|
|
3472
|
+
* @description Rigging task ID. Only present when enable_rigging is true.
|
|
3473
|
+
*/
|
|
3474
|
+
rig_task_id?: string;
|
|
3475
|
+
rigged_character_fbx?: Components.File;
|
|
3476
|
+
rigged_character_glb?: Components.File;
|
|
3477
|
+
/**
|
|
3478
|
+
* Seed
|
|
3479
|
+
* @description The seed used for generation (if available)
|
|
3480
|
+
* @example 2009275957
|
|
3481
|
+
*/
|
|
3482
|
+
seed?: number;
|
|
3483
|
+
/**
|
|
3484
|
+
* Texture Urls
|
|
3485
|
+
* @description Array of texture file objects, matching Meshy API structure
|
|
3486
|
+
* @example [
|
|
3487
|
+
* {
|
|
3488
|
+
* "base_color": {
|
|
3489
|
+
* "file_size": 4328755,
|
|
3490
|
+
* "file_name": "texture_0.png",
|
|
3491
|
+
* "content_type": "image/png",
|
|
3492
|
+
* "url": "https://v3b.fal.media/files/b/tiger/NkgxcEom_42V4_8UUXiRR_texture_0.png"
|
|
3493
|
+
* }
|
|
3494
|
+
* }
|
|
3495
|
+
* ]
|
|
3496
|
+
*/
|
|
3497
|
+
texture_urls?: Components.TextureFiles[];
|
|
3498
|
+
/**
|
|
3499
|
+
* @description Preview thumbnail of the generated model
|
|
3500
|
+
* @example {
|
|
3501
|
+
* "file_size": 54279,
|
|
3502
|
+
* "file_name": "preview.png",
|
|
3503
|
+
* "content_type": "image/png",
|
|
3504
|
+
* "url": "https://v3b.fal.media/files/b/penguin/rfnS6ClmeEWgDXp_oD5tN_preview.png"
|
|
3505
|
+
* }
|
|
3506
|
+
*/
|
|
3507
|
+
thumbnail?: Components.File;
|
|
3508
|
+
}
|
|
3509
|
+
|
|
3426
3510
|
export interface SharedType_d35 {
|
|
3427
3511
|
/**
|
|
3428
3512
|
* Audio Url
|
|
@@ -4613,101 +4697,6 @@ export interface SharedType_ba2 {
|
|
|
4613
4697
|
sync_mode?: boolean;
|
|
4614
4698
|
}
|
|
4615
4699
|
|
|
4616
|
-
export interface SharedType_ba1 {
|
|
4617
|
-
/**
|
|
4618
|
-
* Actual Prompt
|
|
4619
|
-
* @description The actual prompt used if prompt expansion was enabled
|
|
4620
|
-
*/
|
|
4621
|
-
actual_prompt?: string;
|
|
4622
|
-
animation_fbx?: Components.File;
|
|
4623
|
-
animation_glb?: Components.File;
|
|
4624
|
-
basic_animations?: Components.BasicAnimations;
|
|
4625
|
-
/**
|
|
4626
|
-
* @description Generated 3D object in GLB format.
|
|
4627
|
-
* @example {
|
|
4628
|
-
* "file_size": 9314028,
|
|
4629
|
-
* "file_name": "model.glb",
|
|
4630
|
-
* "content_type": "model/gltf-binary",
|
|
4631
|
-
* "url": "https://v3b.fal.media/files/b/penguin/DId89qXLu6BXu09RFAwAV_model.glb"
|
|
4632
|
-
* }
|
|
4633
|
-
*/
|
|
4634
|
-
model_glb: Components.File;
|
|
4635
|
-
/**
|
|
4636
|
-
* @description URLs for different 3D model formats
|
|
4637
|
-
* @example {
|
|
4638
|
-
* "fbx": {
|
|
4639
|
-
* "file_size": 5444380,
|
|
4640
|
-
* "file_name": "model.fbx",
|
|
4641
|
-
* "content_type": "application/octet-stream",
|
|
4642
|
-
* "url": "https://v3b.fal.media/files/b/kangaroo/7nUUw5dHN9a0DKlOpAKbP_model.fbx"
|
|
4643
|
-
* },
|
|
4644
|
-
* "usdz": {
|
|
4645
|
-
* "file_size": 9834246,
|
|
4646
|
-
* "file_name": "model.usdz",
|
|
4647
|
-
* "content_type": "model/vnd.usdz+zip",
|
|
4648
|
-
* "url": "https://v3b.fal.media/files/b/panda/XcC-mIJywUvH7coyrzENU_model.usdz"
|
|
4649
|
-
* },
|
|
4650
|
-
* "glb": {
|
|
4651
|
-
* "file_size": 9314028,
|
|
4652
|
-
* "file_name": "model.glb",
|
|
4653
|
-
* "content_type": "model/gltf-binary",
|
|
4654
|
-
* "url": "https://v3b.fal.media/files/b/penguin/DId89qXLu6BXu09RFAwAV_model.glb"
|
|
4655
|
-
* },
|
|
4656
|
-
* "obj": {
|
|
4657
|
-
* "file_size": 2755145,
|
|
4658
|
-
* "file_name": "model.obj",
|
|
4659
|
-
* "content_type": "text/plain",
|
|
4660
|
-
* "url": "https://v3b.fal.media/files/b/monkey/cCNMHqUbKSNtDN1iGmiYm_model.obj"
|
|
4661
|
-
* }
|
|
4662
|
-
* }
|
|
4663
|
-
*/
|
|
4664
|
-
model_urls: Components.ModelUrls;
|
|
4665
|
-
/**
|
|
4666
|
-
* Prompt
|
|
4667
|
-
* @description The text prompt used for generation
|
|
4668
|
-
* @example A rustic, antique wooden treasure chest with a curved, domed lid, constructed from weathered, dark brown planks exhibiting prominent wood grain and subtle distress. It's heavily reinforced with broad, dark grey, oxidized metal bands secured by numerous circular rivets. Ornate, dark iron decorative elements featuring swirling foliate patterns and dragon motifs adorn the corners and lid. A prominent, circular, intricately carved metal lock plate with a central keyhole dominates the front, flanked by two large, dark metallic pull rings.
|
|
4669
|
-
*/
|
|
4670
|
-
prompt: string;
|
|
4671
|
-
/**
|
|
4672
|
-
* Rig Task Id
|
|
4673
|
-
* @description Rigging task ID. Only present when enable_rigging is true.
|
|
4674
|
-
*/
|
|
4675
|
-
rig_task_id?: string;
|
|
4676
|
-
rigged_character_fbx?: Components.File;
|
|
4677
|
-
rigged_character_glb?: Components.File;
|
|
4678
|
-
/**
|
|
4679
|
-
* Seed
|
|
4680
|
-
* @description The seed used for generation
|
|
4681
|
-
* @example 4002110719
|
|
4682
|
-
*/
|
|
4683
|
-
seed?: number;
|
|
4684
|
-
/**
|
|
4685
|
-
* Texture Urls
|
|
4686
|
-
* @description Array of texture file objects
|
|
4687
|
-
* @example [
|
|
4688
|
-
* {
|
|
4689
|
-
* "base_color": {
|
|
4690
|
-
* "file_size": 4254502,
|
|
4691
|
-
* "file_name": "texture_0.png",
|
|
4692
|
-
* "content_type": "image/png",
|
|
4693
|
-
* "url": "https://v3b.fal.media/files/b/panda/DoPKAuZY0tTjnr6C9ee-Q_texture_0.png"
|
|
4694
|
-
* }
|
|
4695
|
-
* }
|
|
4696
|
-
* ]
|
|
4697
|
-
*/
|
|
4698
|
-
texture_urls?: Components.TextureFiles[];
|
|
4699
|
-
/**
|
|
4700
|
-
* @description Preview thumbnail of the generated model
|
|
4701
|
-
* @example {
|
|
4702
|
-
* "file_size": 173792,
|
|
4703
|
-
* "file_name": "preview.png",
|
|
4704
|
-
* "content_type": "image/png",
|
|
4705
|
-
* "url": "https://v3b.fal.media/files/b/koala/6LJISu4ilkZXcdOETwl_d_preview.png"
|
|
4706
|
-
* }
|
|
4707
|
-
*/
|
|
4708
|
-
thumbnail?: Components.File;
|
|
4709
|
-
}
|
|
4710
|
-
|
|
4711
4700
|
export interface SharedType_b89 {
|
|
4712
4701
|
/**
|
|
4713
4702
|
* Description
|
|
@@ -7112,90 +7101,6 @@ export interface SharedType_82f {
|
|
|
7112
7101
|
video_url: string;
|
|
7113
7102
|
}
|
|
7114
7103
|
|
|
7115
|
-
export interface SharedType_82d {
|
|
7116
|
-
animation_fbx?: Components.File;
|
|
7117
|
-
animation_glb?: Components.File;
|
|
7118
|
-
basic_animations?: Components.BasicAnimations;
|
|
7119
|
-
/**
|
|
7120
|
-
* @description Generated 3D object in GLB format.
|
|
7121
|
-
* @example {
|
|
7122
|
-
* "file_size": 9242744,
|
|
7123
|
-
* "file_name": "model.glb",
|
|
7124
|
-
* "content_type": "model/gltf-binary",
|
|
7125
|
-
* "url": "https://v3b.fal.media/files/b/zebra/OXF1e1bO3JddPTaugv0eL_model.glb"
|
|
7126
|
-
* }
|
|
7127
|
-
*/
|
|
7128
|
-
model_glb: Components.File;
|
|
7129
|
-
/**
|
|
7130
|
-
* @description URLs for different 3D model formats
|
|
7131
|
-
* @example {
|
|
7132
|
-
* "fbx": {
|
|
7133
|
-
* "file_size": 5427052,
|
|
7134
|
-
* "file_name": "model.fbx",
|
|
7135
|
-
* "content_type": "application/octet-stream",
|
|
7136
|
-
* "url": "https://v3b.fal.media/files/b/kangaroo/4Q2qdpTvfLVdzAKH1-72v_model.fbx"
|
|
7137
|
-
* },
|
|
7138
|
-
* "usdz": {
|
|
7139
|
-
* "file_size": 9991969,
|
|
7140
|
-
* "file_name": "model.usdz",
|
|
7141
|
-
* "content_type": "model/vnd.usdz+zip",
|
|
7142
|
-
* "url": "https://v3b.fal.media/files/b/lion/RgJG9EBQ_GAHMVWV3wCis_model.usdz"
|
|
7143
|
-
* },
|
|
7144
|
-
* "glb": {
|
|
7145
|
-
* "file_size": 9242744,
|
|
7146
|
-
* "file_name": "model.glb",
|
|
7147
|
-
* "content_type": "model/gltf-binary",
|
|
7148
|
-
* "url": "https://v3b.fal.media/files/b/zebra/OXF1e1bO3JddPTaugv0eL_model.glb"
|
|
7149
|
-
* },
|
|
7150
|
-
* "obj": {
|
|
7151
|
-
* "file_size": 2744413,
|
|
7152
|
-
* "file_name": "model.obj",
|
|
7153
|
-
* "content_type": "text/plain",
|
|
7154
|
-
* "url": "https://v3b.fal.media/files/b/koala/_Vg0d084-hd3EdpIJDf7U_model.obj"
|
|
7155
|
-
* }
|
|
7156
|
-
* }
|
|
7157
|
-
*/
|
|
7158
|
-
model_urls: Components.ModelUrls;
|
|
7159
|
-
/**
|
|
7160
|
-
* Rig Task Id
|
|
7161
|
-
* @description Rigging task ID. Only present when enable_rigging is true.
|
|
7162
|
-
*/
|
|
7163
|
-
rig_task_id?: string;
|
|
7164
|
-
rigged_character_fbx?: Components.File;
|
|
7165
|
-
rigged_character_glb?: Components.File;
|
|
7166
|
-
/**
|
|
7167
|
-
* Seed
|
|
7168
|
-
* @description The seed used for generation (if available)
|
|
7169
|
-
* @example 2009275957
|
|
7170
|
-
*/
|
|
7171
|
-
seed?: number;
|
|
7172
|
-
/**
|
|
7173
|
-
* Texture Urls
|
|
7174
|
-
* @description Array of texture file objects, matching Meshy API structure
|
|
7175
|
-
* @example [
|
|
7176
|
-
* {
|
|
7177
|
-
* "base_color": {
|
|
7178
|
-
* "file_size": 4328755,
|
|
7179
|
-
* "file_name": "texture_0.png",
|
|
7180
|
-
* "content_type": "image/png",
|
|
7181
|
-
* "url": "https://v3b.fal.media/files/b/tiger/NkgxcEom_42V4_8UUXiRR_texture_0.png"
|
|
7182
|
-
* }
|
|
7183
|
-
* }
|
|
7184
|
-
* ]
|
|
7185
|
-
*/
|
|
7186
|
-
texture_urls?: Components.TextureFiles[];
|
|
7187
|
-
/**
|
|
7188
|
-
* @description Preview thumbnail of the generated model
|
|
7189
|
-
* @example {
|
|
7190
|
-
* "file_size": 54279,
|
|
7191
|
-
* "file_name": "preview.png",
|
|
7192
|
-
* "content_type": "image/png",
|
|
7193
|
-
* "url": "https://v3b.fal.media/files/b/penguin/rfnS6ClmeEWgDXp_oD5tN_preview.png"
|
|
7194
|
-
* }
|
|
7195
|
-
*/
|
|
7196
|
-
thumbnail?: Components.File;
|
|
7197
|
-
}
|
|
7198
|
-
|
|
7199
7104
|
export interface SharedType_82b {
|
|
7200
7105
|
/**
|
|
7201
7106
|
* @description The generated video
|
|
@@ -8017,6 +7922,101 @@ export interface SharedType_772 {
|
|
|
8017
7922
|
video_url: string;
|
|
8018
7923
|
}
|
|
8019
7924
|
|
|
7925
|
+
export interface SharedType_752 {
|
|
7926
|
+
/**
|
|
7927
|
+
* Actual Prompt
|
|
7928
|
+
* @description The actual prompt used if prompt expansion was enabled
|
|
7929
|
+
*/
|
|
7930
|
+
actual_prompt?: string;
|
|
7931
|
+
animation_fbx?: Components.File;
|
|
7932
|
+
animation_glb?: Components.File;
|
|
7933
|
+
basic_animations?: Components.BasicAnimations;
|
|
7934
|
+
/**
|
|
7935
|
+
* @description Generated 3D object in GLB format.
|
|
7936
|
+
* @example {
|
|
7937
|
+
* "file_size": 9314028,
|
|
7938
|
+
* "file_name": "model.glb",
|
|
7939
|
+
* "content_type": "model/gltf-binary",
|
|
7940
|
+
* "url": "https://v3b.fal.media/files/b/penguin/DId89qXLu6BXu09RFAwAV_model.glb"
|
|
7941
|
+
* }
|
|
7942
|
+
*/
|
|
7943
|
+
model_glb: Components.File;
|
|
7944
|
+
/**
|
|
7945
|
+
* @description URLs for different 3D model formats
|
|
7946
|
+
* @example {
|
|
7947
|
+
* "fbx": {
|
|
7948
|
+
* "file_size": 5444380,
|
|
7949
|
+
* "file_name": "model.fbx",
|
|
7950
|
+
* "content_type": "application/octet-stream",
|
|
7951
|
+
* "url": "https://v3b.fal.media/files/b/kangaroo/7nUUw5dHN9a0DKlOpAKbP_model.fbx"
|
|
7952
|
+
* },
|
|
7953
|
+
* "usdz": {
|
|
7954
|
+
* "file_size": 9834246,
|
|
7955
|
+
* "file_name": "model.usdz",
|
|
7956
|
+
* "content_type": "model/vnd.usdz+zip",
|
|
7957
|
+
* "url": "https://v3b.fal.media/files/b/panda/XcC-mIJywUvH7coyrzENU_model.usdz"
|
|
7958
|
+
* },
|
|
7959
|
+
* "obj": {
|
|
7960
|
+
* "file_size": 2755145,
|
|
7961
|
+
* "file_name": "model.obj",
|
|
7962
|
+
* "content_type": "text/plain",
|
|
7963
|
+
* "url": "https://v3b.fal.media/files/b/monkey/cCNMHqUbKSNtDN1iGmiYm_model.obj"
|
|
7964
|
+
* },
|
|
7965
|
+
* "glb": {
|
|
7966
|
+
* "file_size": 9314028,
|
|
7967
|
+
* "file_name": "model.glb",
|
|
7968
|
+
* "content_type": "model/gltf-binary",
|
|
7969
|
+
* "url": "https://v3b.fal.media/files/b/penguin/DId89qXLu6BXu09RFAwAV_model.glb"
|
|
7970
|
+
* }
|
|
7971
|
+
* }
|
|
7972
|
+
*/
|
|
7973
|
+
model_urls: Components.ModelUrls;
|
|
7974
|
+
/**
|
|
7975
|
+
* Prompt
|
|
7976
|
+
* @description The text prompt used for generation
|
|
7977
|
+
* @example A rustic, antique wooden treasure chest with a curved, domed lid, constructed from weathered, dark brown planks exhibiting prominent wood grain and subtle distress. It's heavily reinforced with broad, dark grey, oxidized metal bands secured by numerous circular rivets. Ornate, dark iron decorative elements featuring swirling foliate patterns and dragon motifs adorn the corners and lid. A prominent, circular, intricately carved metal lock plate with a central keyhole dominates the front, flanked by two large, dark metallic pull rings.
|
|
7978
|
+
*/
|
|
7979
|
+
prompt: string;
|
|
7980
|
+
/**
|
|
7981
|
+
* Rig Task Id
|
|
7982
|
+
* @description Rigging task ID. Only present when enable_rigging is true.
|
|
7983
|
+
*/
|
|
7984
|
+
rig_task_id?: string;
|
|
7985
|
+
rigged_character_fbx?: Components.File;
|
|
7986
|
+
rigged_character_glb?: Components.File;
|
|
7987
|
+
/**
|
|
7988
|
+
* Seed
|
|
7989
|
+
* @description The seed used for generation
|
|
7990
|
+
* @example 4002110719
|
|
7991
|
+
*/
|
|
7992
|
+
seed?: number;
|
|
7993
|
+
/**
|
|
7994
|
+
* Texture Urls
|
|
7995
|
+
* @description Array of texture file objects
|
|
7996
|
+
* @example [
|
|
7997
|
+
* {
|
|
7998
|
+
* "base_color": {
|
|
7999
|
+
* "file_size": 4254502,
|
|
8000
|
+
* "file_name": "texture_0.png",
|
|
8001
|
+
* "content_type": "image/png",
|
|
8002
|
+
* "url": "https://v3b.fal.media/files/b/panda/DoPKAuZY0tTjnr6C9ee-Q_texture_0.png"
|
|
8003
|
+
* }
|
|
8004
|
+
* }
|
|
8005
|
+
* ]
|
|
8006
|
+
*/
|
|
8007
|
+
texture_urls?: Components.TextureFiles[];
|
|
8008
|
+
/**
|
|
8009
|
+
* @description Preview thumbnail of the generated model
|
|
8010
|
+
* @example {
|
|
8011
|
+
* "file_size": 173792,
|
|
8012
|
+
* "file_name": "preview.png",
|
|
8013
|
+
* "content_type": "image/png",
|
|
8014
|
+
* "url": "https://v3b.fal.media/files/b/koala/6LJISu4ilkZXcdOETwl_d_preview.png"
|
|
8015
|
+
* }
|
|
8016
|
+
*/
|
|
8017
|
+
thumbnail?: Components.File;
|
|
8018
|
+
}
|
|
8019
|
+
|
|
8020
8020
|
export interface SharedType_751 {
|
|
8021
8021
|
video: Components.File;
|
|
8022
8022
|
}
|
|
@@ -9005,6 +9005,90 @@ export interface SharedType_5f1 {
|
|
|
9005
9005
|
};
|
|
9006
9006
|
}
|
|
9007
9007
|
|
|
9008
|
+
export interface SharedType_5ac {
|
|
9009
|
+
/**
|
|
9010
|
+
* Acoustic Cfg Scale
|
|
9011
|
+
* @description Classifier-free guidance scale for acoustic feature generation.
|
|
9012
|
+
* @default 1.6
|
|
9013
|
+
*/
|
|
9014
|
+
acoustic_cfg_scale?: number;
|
|
9015
|
+
/**
|
|
9016
|
+
* Audio Url
|
|
9017
|
+
* @description URL of the reference audio file for voice cloning. The model will replicate this speaker's voice characteristics.
|
|
9018
|
+
* @example https://storage.googleapis.com/falserverless/example_inputs/reference_audio.wav
|
|
9019
|
+
*/
|
|
9020
|
+
audio_url: string;
|
|
9021
|
+
/**
|
|
9022
|
+
* Language
|
|
9023
|
+
* @description Language for text alignment. Use the appropriate code for non-English synthesis.
|
|
9024
|
+
* @default en
|
|
9025
|
+
* @enum {string}
|
|
9026
|
+
*/
|
|
9027
|
+
language?: 'en' | 'ar' | 'ch' | 'de' | 'es' | 'fr' | 'it' | 'ja' | 'pl' | 'pt';
|
|
9028
|
+
/**
|
|
9029
|
+
* Noise Temperature
|
|
9030
|
+
* @description Temperature for noise in the flow matching diffusion process.
|
|
9031
|
+
* @default 0.9
|
|
9032
|
+
*/
|
|
9033
|
+
noise_temperature?: number;
|
|
9034
|
+
/**
|
|
9035
|
+
* Num Extra Steps
|
|
9036
|
+
* @description Number of extra autoregressive steps for speech continuation beyond the input text. Useful for generating trailing prosody or silence.
|
|
9037
|
+
* @default 0
|
|
9038
|
+
*/
|
|
9039
|
+
num_extra_steps?: number;
|
|
9040
|
+
/**
|
|
9041
|
+
* Num Inference Steps
|
|
9042
|
+
* @description Number of ODE solver steps for flow matching acoustic generation. More steps improve quality at the cost of speed.
|
|
9043
|
+
* @default 20
|
|
9044
|
+
*/
|
|
9045
|
+
num_inference_steps?: number;
|
|
9046
|
+
/**
|
|
9047
|
+
* Output Format
|
|
9048
|
+
* @description The format of the output audio file.
|
|
9049
|
+
* @default wav
|
|
9050
|
+
* @enum {string}
|
|
9051
|
+
*/
|
|
9052
|
+
output_format?: 'wav' | 'mp3';
|
|
9053
|
+
/**
|
|
9054
|
+
* Prompt
|
|
9055
|
+
* @description The text to synthesize into speech using the reference speaker's voice.
|
|
9056
|
+
* @example The autumn leaves danced gracefully through the crisp morning air, painting the cobblestone streets with shades of amber and gold.
|
|
9057
|
+
*/
|
|
9058
|
+
prompt: string;
|
|
9059
|
+
/**
|
|
9060
|
+
* Repetition Penalty
|
|
9061
|
+
* @description Penalty applied to repeated tokens during generation.
|
|
9062
|
+
* @default 1.1
|
|
9063
|
+
*/
|
|
9064
|
+
repetition_penalty?: number;
|
|
9065
|
+
/**
|
|
9066
|
+
* Speed Up Factor
|
|
9067
|
+
* @description Factor to speed up or slow down the generated speech. Values > 1.0 speed up, < 1.0 slow down.
|
|
9068
|
+
* @default 1
|
|
9069
|
+
*/
|
|
9070
|
+
speed_up_factor?: number;
|
|
9071
|
+
/**
|
|
9072
|
+
* Temperature
|
|
9073
|
+
* @description Sampling temperature for text token generation. Higher values produce more varied output.
|
|
9074
|
+
* @default 0.6
|
|
9075
|
+
*/
|
|
9076
|
+
temperature?: number;
|
|
9077
|
+
/**
|
|
9078
|
+
* Top P
|
|
9079
|
+
* @description Top-p (nucleus) sampling parameter for text generation.
|
|
9080
|
+
* @default 0.9
|
|
9081
|
+
*/
|
|
9082
|
+
top_p?: number;
|
|
9083
|
+
/**
|
|
9084
|
+
* Transcript
|
|
9085
|
+
* @description Transcript of the reference audio. For non-English audio, providing a transcript is required since the built-in ASR is English-only.
|
|
9086
|
+
* @default
|
|
9087
|
+
* @example Some call me nature, others call me mother nature.
|
|
9088
|
+
*/
|
|
9089
|
+
transcript?: string;
|
|
9090
|
+
}
|
|
9091
|
+
|
|
9008
9092
|
export interface SharedType_5a8 {
|
|
9009
9093
|
/**
|
|
9010
9094
|
* Acceleration
|
|
@@ -24014,6 +24098,30 @@ export interface TheraInput {
|
|
|
24014
24098
|
|
|
24015
24099
|
export interface TheraOutput extends SharedType_678 {}
|
|
24016
24100
|
|
|
24101
|
+
export interface Tada3bTextToSpeechInput extends SharedType_5ac {}
|
|
24102
|
+
|
|
24103
|
+
export interface Tada3bTextToSpeechOutput {
|
|
24104
|
+
/**
|
|
24105
|
+
* @description The generated speech audio file.
|
|
24106
|
+
* @example {
|
|
24107
|
+
* "url": "https://v3b.fal.media/files/b/0a91e54b/Ldhq_0EWjUdnUEwn-Tcrk_nfs9DTGI.wav"
|
|
24108
|
+
* }
|
|
24109
|
+
*/
|
|
24110
|
+
audio: Components.AudioFile;
|
|
24111
|
+
}
|
|
24112
|
+
|
|
24113
|
+
export interface Tada1bTextToSpeechInput extends SharedType_5ac {}
|
|
24114
|
+
|
|
24115
|
+
export interface Tada1bTextToSpeechOutput {
|
|
24116
|
+
/**
|
|
24117
|
+
* @description The generated speech audio file.
|
|
24118
|
+
* @example {
|
|
24119
|
+
* "url": "https://v3b.fal.media/files/b/0a91e55e/HUVJsjW6QoDUBfg6HdM5e_B2R8G4X4.wav"
|
|
24120
|
+
* }
|
|
24121
|
+
*/
|
|
24122
|
+
audio: Components.AudioFile;
|
|
24123
|
+
}
|
|
24124
|
+
|
|
24017
24125
|
export interface T2vTurboInput {
|
|
24018
24126
|
/**
|
|
24019
24127
|
* Export Fps
|
|
@@ -24177,11 +24285,11 @@ export interface SyncLipsyncReact1Output {
|
|
|
24177
24285
|
* "height": 1088,
|
|
24178
24286
|
* "duration": 7.041667,
|
|
24179
24287
|
* "url": "https://storage.googleapis.com/falserverless/example_outputs/react_1/output.mp4",
|
|
24180
|
-
* "width": 1920,
|
|
24181
24288
|
* "fps": 24,
|
|
24289
|
+
* "width": 1920,
|
|
24182
24290
|
* "file_name": "output.mp4",
|
|
24183
|
-
* "
|
|
24184
|
-
* "
|
|
24291
|
+
* "content_type": "video/mp4",
|
|
24292
|
+
* "num_frames": 169
|
|
24185
24293
|
* }
|
|
24186
24294
|
*/
|
|
24187
24295
|
video: Components.VideoFile;
|
|
@@ -25654,6 +25762,11 @@ export interface Sora2TextToVideoProInput {
|
|
|
25654
25762
|
* @enum {string}
|
|
25655
25763
|
*/
|
|
25656
25764
|
aspect_ratio?: '9:16' | '16:9';
|
|
25765
|
+
/**
|
|
25766
|
+
* Character IDs
|
|
25767
|
+
* @description Up to two character IDs (from create-character) to use in the video. Refer to characters by name in the prompt. When set, only the OpenAI provider is used.
|
|
25768
|
+
*/
|
|
25769
|
+
character_ids?: string[];
|
|
25657
25770
|
/**
|
|
25658
25771
|
* Delete Video
|
|
25659
25772
|
* @description Whether to delete the video after generation for privacy reasons. If True, the video cannot be used for remixing and will be permanently deleted.
|
|
@@ -25672,7 +25785,7 @@ export interface Sora2TextToVideoProInput {
|
|
|
25672
25785
|
* @default 4
|
|
25673
25786
|
* @enum {integer}
|
|
25674
25787
|
*/
|
|
25675
|
-
duration?: 4 | 8 | 12;
|
|
25788
|
+
duration?: 4 | 8 | 12 | 16 | 20;
|
|
25676
25789
|
/**
|
|
25677
25790
|
* Prompt
|
|
25678
25791
|
* @description The text prompt describing the video you want to generate
|
|
@@ -25685,7 +25798,7 @@ export interface Sora2TextToVideoProInput {
|
|
|
25685
25798
|
* @default 1080p
|
|
25686
25799
|
* @enum {string}
|
|
25687
25800
|
*/
|
|
25688
|
-
resolution?: '720p' | '1080p';
|
|
25801
|
+
resolution?: '720p' | '1080p' | 'true_1080p';
|
|
25689
25802
|
}
|
|
25690
25803
|
|
|
25691
25804
|
export interface Sora2TextToVideoProOutput {
|
|
@@ -25715,6 +25828,11 @@ export interface Sora2TextToVideoInput {
|
|
|
25715
25828
|
* @enum {string}
|
|
25716
25829
|
*/
|
|
25717
25830
|
aspect_ratio?: '9:16' | '16:9';
|
|
25831
|
+
/**
|
|
25832
|
+
* Character IDs
|
|
25833
|
+
* @description Up to two character IDs (from create-character) to use in the video. Refer to characters by name in the prompt. When set, only the OpenAI provider is used.
|
|
25834
|
+
*/
|
|
25835
|
+
character_ids?: string[];
|
|
25718
25836
|
/**
|
|
25719
25837
|
* Delete Video
|
|
25720
25838
|
* @description Whether to delete the video after generation for privacy reasons. If True, the video cannot be used for remixing and will be permanently deleted.
|
|
@@ -25733,7 +25851,7 @@ export interface Sora2TextToVideoInput {
|
|
|
25733
25851
|
* @default 4
|
|
25734
25852
|
* @enum {integer}
|
|
25735
25853
|
*/
|
|
25736
|
-
duration?: 4 | 8 | 12;
|
|
25854
|
+
duration?: 4 | 8 | 12 | 16 | 20;
|
|
25737
25855
|
/**
|
|
25738
25856
|
* Model
|
|
25739
25857
|
* @description The model to use for the generation. When the default model is selected, the latest snapshot of the model will be used - otherwise, select a specific snapshot of the model.
|
|
@@ -25783,6 +25901,11 @@ export interface Sora2ImageToVideoProInput {
|
|
|
25783
25901
|
* @enum {string}
|
|
25784
25902
|
*/
|
|
25785
25903
|
aspect_ratio?: 'auto' | '9:16' | '16:9';
|
|
25904
|
+
/**
|
|
25905
|
+
* Character IDs
|
|
25906
|
+
* @description Up to two character IDs (from create-character) to use in the video. Refer to characters by name in the prompt. When set, only the OpenAI provider is used.
|
|
25907
|
+
*/
|
|
25908
|
+
character_ids?: string[];
|
|
25786
25909
|
/**
|
|
25787
25910
|
* Delete Video
|
|
25788
25911
|
* @description Whether to delete the video after generation for privacy reasons. If True, the video cannot be used for remixing and will be permanently deleted.
|
|
@@ -25801,7 +25924,7 @@ export interface Sora2ImageToVideoProInput {
|
|
|
25801
25924
|
* @default 4
|
|
25802
25925
|
* @enum {integer}
|
|
25803
25926
|
*/
|
|
25804
|
-
duration?: 4 | 8 | 12;
|
|
25927
|
+
duration?: 4 | 8 | 12 | 16 | 20;
|
|
25805
25928
|
/**
|
|
25806
25929
|
* Image URL
|
|
25807
25930
|
* @description The URL of the image to use as the first frame
|
|
@@ -25820,7 +25943,7 @@ export interface Sora2ImageToVideoProInput {
|
|
|
25820
25943
|
* @default auto
|
|
25821
25944
|
* @enum {string}
|
|
25822
25945
|
*/
|
|
25823
|
-
resolution?: 'auto' | '720p' | '1080p';
|
|
25946
|
+
resolution?: 'auto' | '720p' | '1080p' | 'true_1080p';
|
|
25824
25947
|
}
|
|
25825
25948
|
|
|
25826
25949
|
export interface Sora2ImageToVideoProOutput {
|
|
@@ -25850,6 +25973,11 @@ export interface Sora2ImageToVideoInput {
|
|
|
25850
25973
|
* @enum {string}
|
|
25851
25974
|
*/
|
|
25852
25975
|
aspect_ratio?: 'auto' | '9:16' | '16:9';
|
|
25976
|
+
/**
|
|
25977
|
+
* Character IDs
|
|
25978
|
+
* @description Up to two character IDs (from create-character) to use in the video. Refer to characters by name in the prompt. When set, only the OpenAI provider is used.
|
|
25979
|
+
*/
|
|
25980
|
+
character_ids?: string[];
|
|
25853
25981
|
/**
|
|
25854
25982
|
* Delete Video
|
|
25855
25983
|
* @description Whether to delete the video after generation for privacy reasons. If True, the video cannot be used for remixing and will be permanently deleted.
|
|
@@ -25868,7 +25996,7 @@ export interface Sora2ImageToVideoInput {
|
|
|
25868
25996
|
* @default 4
|
|
25869
25997
|
* @enum {integer}
|
|
25870
25998
|
*/
|
|
25871
|
-
duration?: 4 | 8 | 12;
|
|
25999
|
+
duration?: 4 | 8 | 12 | 16 | 20;
|
|
25872
26000
|
/**
|
|
25873
26001
|
* Image URL
|
|
25874
26002
|
* @description The URL of the image to use as the first frame
|
|
@@ -35065,6 +35193,98 @@ export interface PiflowOutput {
|
|
|
35065
35193
|
seed: number;
|
|
35066
35194
|
}
|
|
35067
35195
|
|
|
35196
|
+
export interface PhysicEditInput {
|
|
35197
|
+
/**
|
|
35198
|
+
* Enable Safety Checker
|
|
35199
|
+
* @description Enable content safety checking on the output.
|
|
35200
|
+
* @default true
|
|
35201
|
+
*/
|
|
35202
|
+
enable_safety_checker?: boolean;
|
|
35203
|
+
/**
|
|
35204
|
+
* Guidance Scale
|
|
35205
|
+
* @description Classifier-free guidance scale. Higher values follow the prompt more closely.
|
|
35206
|
+
* @default 4
|
|
35207
|
+
*/
|
|
35208
|
+
guidance_scale?: number;
|
|
35209
|
+
/**
|
|
35210
|
+
* Image URL
|
|
35211
|
+
* @description URL of the image to edit with physics-aware transformations.
|
|
35212
|
+
* @example https://v3b.fal.media/files/b/0a91d47e/NG382xuDf06EcPCaS2eW3_Signature_Ice_Sculptures-03.jpg
|
|
35213
|
+
*/
|
|
35214
|
+
image_url: string;
|
|
35215
|
+
/**
|
|
35216
|
+
* Negative Prompt
|
|
35217
|
+
* @description Description of unwanted elements in the output.
|
|
35218
|
+
* @default
|
|
35219
|
+
*/
|
|
35220
|
+
negative_prompt?: string;
|
|
35221
|
+
/**
|
|
35222
|
+
* Num Inference Steps
|
|
35223
|
+
* @description Number of denoising steps. More steps generally produce higher quality but take longer.
|
|
35224
|
+
* @default 40
|
|
35225
|
+
*/
|
|
35226
|
+
num_inference_steps?: number;
|
|
35227
|
+
/**
|
|
35228
|
+
* Output Format
|
|
35229
|
+
* @description The format of the generated image.
|
|
35230
|
+
* @default jpeg
|
|
35231
|
+
* @enum {string}
|
|
35232
|
+
*/
|
|
35233
|
+
output_format?: 'jpeg' | 'png';
|
|
35234
|
+
/**
|
|
35235
|
+
* Prompt
|
|
35236
|
+
* @description The editing instruction describing the physical transformation to apply.
|
|
35237
|
+
* @example Make the ice sculpture melt gradually, with water pooling beneath and light refracting through the translucent surface
|
|
35238
|
+
*/
|
|
35239
|
+
prompt: string;
|
|
35240
|
+
/**
|
|
35241
|
+
* Seed
|
|
35242
|
+
* @description Random seed for reproducibility. Same seed and prompt produce identical output.
|
|
35243
|
+
*/
|
|
35244
|
+
seed?: number;
|
|
35245
|
+
/**
|
|
35246
|
+
* Sync Mode
|
|
35247
|
+
* @description If True, the image will be returned as a data URI.
|
|
35248
|
+
* @default false
|
|
35249
|
+
*/
|
|
35250
|
+
sync_mode?: boolean;
|
|
35251
|
+
}
|
|
35252
|
+
|
|
35253
|
+
export interface PhysicEditOutput {
|
|
35254
|
+
/**
|
|
35255
|
+
* Has Nsfw Concepts
|
|
35256
|
+
* @description Whether the generated images contain NSFW concepts.
|
|
35257
|
+
*/
|
|
35258
|
+
has_nsfw_concepts: boolean[];
|
|
35259
|
+
/**
|
|
35260
|
+
* Images
|
|
35261
|
+
* @description The edited images.
|
|
35262
|
+
* @example [
|
|
35263
|
+
* {
|
|
35264
|
+
* "height": 1152,
|
|
35265
|
+
* "content_type": "image/jpeg",
|
|
35266
|
+
* "url": "https://v3b.fal.media/files/b/0a91cf62/DdpKY15kkD6N6v66uJ0q1.jpg",
|
|
35267
|
+
* "width": 864
|
|
35268
|
+
* }
|
|
35269
|
+
* ]
|
|
35270
|
+
*/
|
|
35271
|
+
images: Components.Image[];
|
|
35272
|
+
/**
|
|
35273
|
+
* Prompt
|
|
35274
|
+
* @description The prompt used for generating the image.
|
|
35275
|
+
*/
|
|
35276
|
+
prompt: string;
|
|
35277
|
+
/**
|
|
35278
|
+
* Seed
|
|
35279
|
+
* @description Seed of the generated Image. It will be the same value of the one passed in the
|
|
35280
|
+
* input or the randomly generated that was used in case none was passed.
|
|
35281
|
+
*/
|
|
35282
|
+
seed: number;
|
|
35283
|
+
timings: {
|
|
35284
|
+
[key: string]: number;
|
|
35285
|
+
};
|
|
35286
|
+
}
|
|
35287
|
+
|
|
35068
35288
|
export interface PhotomakerInput {
|
|
35069
35289
|
/**
|
|
35070
35290
|
* Base Pipeline
|
|
@@ -36516,13 +36736,7 @@ export interface MusetalkInput {
|
|
|
36516
36736
|
source_video_url: string;
|
|
36517
36737
|
}
|
|
36518
36738
|
|
|
36519
|
-
export interface MusetalkOutput {
|
|
36520
|
-
/**
|
|
36521
|
-
* Video
|
|
36522
|
-
* @description The generated video file.
|
|
36523
|
-
*/
|
|
36524
|
-
video: Components.File_1;
|
|
36525
|
-
}
|
|
36739
|
+
export interface MusetalkOutput extends SharedType_751 {}
|
|
36526
36740
|
|
|
36527
36741
|
export interface MultishotMasterInput {
|
|
36528
36742
|
/**
|
|
@@ -38432,19 +38646,19 @@ export interface MinimaxMusicOutput {
|
|
|
38432
38646
|
|
|
38433
38647
|
export interface MeshyV6TextTo3dInput extends SharedType_477 {}
|
|
38434
38648
|
|
|
38435
|
-
export interface MeshyV6TextTo3dOutput extends
|
|
38649
|
+
export interface MeshyV6TextTo3dOutput extends SharedType_752 {}
|
|
38436
38650
|
|
|
38437
38651
|
export interface MeshyV6ImageTo3dInput extends SharedType_7ca {}
|
|
38438
38652
|
|
|
38439
|
-
export interface MeshyV6ImageTo3dOutput extends
|
|
38653
|
+
export interface MeshyV6ImageTo3dOutput extends SharedType_d53 {}
|
|
38440
38654
|
|
|
38441
38655
|
export interface MeshyV6PreviewTextTo3dInput extends SharedType_477 {}
|
|
38442
38656
|
|
|
38443
|
-
export interface MeshyV6PreviewTextTo3dOutput extends
|
|
38657
|
+
export interface MeshyV6PreviewTextTo3dOutput extends SharedType_752 {}
|
|
38444
38658
|
|
|
38445
38659
|
export interface MeshyV6PreviewImageTo3dInput extends SharedType_7ca {}
|
|
38446
38660
|
|
|
38447
|
-
export interface MeshyV6PreviewImageTo3dOutput extends
|
|
38661
|
+
export interface MeshyV6PreviewImageTo3dOutput extends SharedType_d53 {}
|
|
38448
38662
|
|
|
38449
38663
|
export interface MeshyV5RetextureInput {
|
|
38450
38664
|
/**
|
|
@@ -38515,17 +38729,17 @@ export interface MeshyV5RetextureOutput {
|
|
|
38515
38729
|
* "content_type": "model/vnd.usdz+zip",
|
|
38516
38730
|
* "url": "https://v3b.fal.media/files/b/panda/4ItUhLHiH4foEw30qcWZv_model.usdz"
|
|
38517
38731
|
* },
|
|
38518
|
-
* "glb": {
|
|
38519
|
-
* "file_size": 4097640,
|
|
38520
|
-
* "file_name": "model.glb",
|
|
38521
|
-
* "content_type": "model/gltf-binary",
|
|
38522
|
-
* "url": "https://v3b.fal.media/files/b/tiger/pU0TtsRTxXM6VnKEYTHSV_model.glb"
|
|
38523
|
-
* },
|
|
38524
38732
|
* "obj": {
|
|
38525
38733
|
* "file_size": 2964508,
|
|
38526
38734
|
* "file_name": "model.obj",
|
|
38527
38735
|
* "content_type": "text/plain",
|
|
38528
38736
|
* "url": "https://v3b.fal.media/files/b/zebra/M5aK_b6vKH7KeGCZoSLq7_model.obj"
|
|
38737
|
+
* },
|
|
38738
|
+
* "glb": {
|
|
38739
|
+
* "file_size": 4097640,
|
|
38740
|
+
* "file_name": "model.glb",
|
|
38741
|
+
* "content_type": "model/gltf-binary",
|
|
38742
|
+
* "url": "https://v3b.fal.media/files/b/tiger/pU0TtsRTxXM6VnKEYTHSV_model.glb"
|
|
38529
38743
|
* }
|
|
38530
38744
|
* }
|
|
38531
38745
|
*/
|
|
@@ -38776,17 +38990,17 @@ export interface MeshyV5MultiImageTo3dOutput {
|
|
|
38776
38990
|
* "content_type": "model/vnd.usdz+zip",
|
|
38777
38991
|
* "url": "https://v3b.fal.media/files/b/panda/fSGLGmtgzUjhepklN06Zw_model.usdz"
|
|
38778
38992
|
* },
|
|
38779
|
-
* "glb": {
|
|
38780
|
-
* "file_size": 7875308,
|
|
38781
|
-
* "file_name": "model.glb",
|
|
38782
|
-
* "content_type": "model/gltf-binary",
|
|
38783
|
-
* "url": "https://v3b.fal.media/files/b/tiger/62QMEQqZ3pjUds4DfuVtX_model.glb"
|
|
38784
|
-
* },
|
|
38785
38993
|
* "obj": {
|
|
38786
38994
|
* "file_size": 2761323,
|
|
38787
38995
|
* "file_name": "model.obj",
|
|
38788
38996
|
* "content_type": "text/plain",
|
|
38789
38997
|
* "url": "https://v3b.fal.media/files/b/koala/xmOnmSeePfuROe3pqHpf0_model.obj"
|
|
38998
|
+
* },
|
|
38999
|
+
* "glb": {
|
|
39000
|
+
* "file_size": 7875308,
|
|
39001
|
+
* "file_name": "model.glb",
|
|
39002
|
+
* "content_type": "model/gltf-binary",
|
|
39003
|
+
* "url": "https://v3b.fal.media/files/b/tiger/62QMEQqZ3pjUds4DfuVtX_model.glb"
|
|
38790
39004
|
* }
|
|
38791
39005
|
* }
|
|
38792
39006
|
*/
|
|
@@ -39514,6 +39728,52 @@ export interface Lyria2Output {
|
|
|
39514
39728
|
audio: Components.File;
|
|
39515
39729
|
}
|
|
39516
39730
|
|
|
39731
|
+
export interface LuxTtsInput {
|
|
39732
|
+
/**
|
|
39733
|
+
* Audio Url
|
|
39734
|
+
* @description URL of the reference audio file for voice cloning. The model will mimic the voice characteristics from this audio.
|
|
39735
|
+
* @example https://storage.googleapis.com/falserverless/example_inputs/reference_audio.wav
|
|
39736
|
+
*/
|
|
39737
|
+
audio_url: string;
|
|
39738
|
+
/**
|
|
39739
|
+
* Guidance Scale
|
|
39740
|
+
* @description Classifier-free guidance scale. Higher values increase adherence to the reference voice at the cost of diversity.
|
|
39741
|
+
* @default 3
|
|
39742
|
+
*/
|
|
39743
|
+
guidance_scale?: number;
|
|
39744
|
+
/**
|
|
39745
|
+
* Max Ref Length
|
|
39746
|
+
* @description Maximum length of the reference audio to use for voice encoding, in seconds. Longer durations capture more voice characteristics but increase processing time.
|
|
39747
|
+
* @default 5
|
|
39748
|
+
*/
|
|
39749
|
+
max_ref_length?: number;
|
|
39750
|
+
/**
|
|
39751
|
+
* Num Inference Steps
|
|
39752
|
+
* @description Number of flow-matching inference steps. 4 is recommended for best efficiency.
|
|
39753
|
+
* @default 4
|
|
39754
|
+
*/
|
|
39755
|
+
num_inference_steps?: number;
|
|
39756
|
+
/**
|
|
39757
|
+
* Prompt
|
|
39758
|
+
* @description The text to be converted to speech.
|
|
39759
|
+
* @example Hey, what's up? I'm feeling really great today! The sun is shining and there's a gentle breeze rustling through the trees.
|
|
39760
|
+
*/
|
|
39761
|
+
prompt: string;
|
|
39762
|
+
/**
|
|
39763
|
+
* Seed
|
|
39764
|
+
* @description Random seed for reproducibility.
|
|
39765
|
+
*/
|
|
39766
|
+
seed?: number;
|
|
39767
|
+
}
|
|
39768
|
+
|
|
39769
|
+
export interface LuxTtsOutput {
|
|
39770
|
+
audio: Components.File;
|
|
39771
|
+
seed: number;
|
|
39772
|
+
timings: {
|
|
39773
|
+
[key: string]: number;
|
|
39774
|
+
};
|
|
39775
|
+
}
|
|
39776
|
+
|
|
39517
39777
|
export interface LuminaImageV2Input {
|
|
39518
39778
|
/**
|
|
39519
39779
|
* Cfg Normalization
|
|
@@ -79228,6 +79488,11 @@ export interface BytedanceSeedanceV1ProTextToVideoInput {
|
|
|
79228
79488
|
* @example true
|
|
79229
79489
|
*/
|
|
79230
79490
|
enable_safety_checker?: boolean;
|
|
79491
|
+
/**
|
|
79492
|
+
* Num Frames
|
|
79493
|
+
* @description The number of frames to generate. If provided, will override duration.
|
|
79494
|
+
*/
|
|
79495
|
+
num_frames?: number;
|
|
79231
79496
|
/**
|
|
79232
79497
|
* Prompt
|
|
79233
79498
|
* @description The text prompt used to generate the video
|
|
@@ -79303,6 +79568,11 @@ export interface BytedanceSeedanceV1ProImageToVideoInput {
|
|
|
79303
79568
|
* @example https://storage.googleapis.com/falserverless/example_inputs/seedance_pro_i2v_img.jpg
|
|
79304
79569
|
*/
|
|
79305
79570
|
image_url: string;
|
|
79571
|
+
/**
|
|
79572
|
+
* Num Frames
|
|
79573
|
+
* @description The number of frames to generate. If provided, will override duration.
|
|
79574
|
+
*/
|
|
79575
|
+
num_frames?: number;
|
|
79306
79576
|
/**
|
|
79307
79577
|
* Prompt
|
|
79308
79578
|
* @description The text prompt used to generate the video
|
|
@@ -79367,6 +79637,11 @@ export interface BytedanceSeedanceV1ProFastTextToVideoInput {
|
|
|
79367
79637
|
* @example true
|
|
79368
79638
|
*/
|
|
79369
79639
|
enable_safety_checker?: boolean;
|
|
79640
|
+
/**
|
|
79641
|
+
* Num Frames
|
|
79642
|
+
* @description The number of frames to generate. If provided, will override duration.
|
|
79643
|
+
*/
|
|
79644
|
+
num_frames?: number;
|
|
79370
79645
|
/**
|
|
79371
79646
|
* Prompt
|
|
79372
79647
|
* @description The text prompt used to generate the video
|
|
@@ -79437,6 +79712,11 @@ export interface BytedanceSeedanceV1ProFastImageToVideoInput {
|
|
|
79437
79712
|
* @example https://storage.googleapis.com/falserverless/example_inputs/seedance_fast_i2v_input.png
|
|
79438
79713
|
*/
|
|
79439
79714
|
image_url: string;
|
|
79715
|
+
/**
|
|
79716
|
+
* Num Frames
|
|
79717
|
+
* @description The number of frames to generate. If provided, will override duration.
|
|
79718
|
+
*/
|
|
79719
|
+
num_frames?: number;
|
|
79440
79720
|
/**
|
|
79441
79721
|
* Prompt
|
|
79442
79722
|
* @description The text prompt used to generate the video
|
|
@@ -79501,6 +79781,11 @@ export interface BytedanceSeedanceV1LiteTextToVideoInput {
|
|
|
79501
79781
|
* @example true
|
|
79502
79782
|
*/
|
|
79503
79783
|
enable_safety_checker?: boolean;
|
|
79784
|
+
/**
|
|
79785
|
+
* Num Frames
|
|
79786
|
+
* @description The number of frames to generate. If provided, will override duration.
|
|
79787
|
+
*/
|
|
79788
|
+
num_frames?: number;
|
|
79504
79789
|
/**
|
|
79505
79790
|
* Prompt
|
|
79506
79791
|
* @description The text prompt used to generate the video
|
|
@@ -79551,6 +79836,11 @@ export interface BytedanceSeedanceV1LiteReferenceToVideoInput {
|
|
|
79551
79836
|
* @example true
|
|
79552
79837
|
*/
|
|
79553
79838
|
enable_safety_checker?: boolean;
|
|
79839
|
+
/**
|
|
79840
|
+
* Num Frames
|
|
79841
|
+
* @description The number of frames to generate. If provided, will override duration.
|
|
79842
|
+
*/
|
|
79843
|
+
num_frames?: number;
|
|
79554
79844
|
/**
|
|
79555
79845
|
* Prompt
|
|
79556
79846
|
* @description The text prompt used to generate the video
|
|
@@ -79635,6 +79925,11 @@ export interface BytedanceSeedanceV1LiteImageToVideoInput {
|
|
|
79635
79925
|
* @example https://fal.media/files/koala/f_xmiodPjhiKjdBkFmTu1.png
|
|
79636
79926
|
*/
|
|
79637
79927
|
image_url: string;
|
|
79928
|
+
/**
|
|
79929
|
+
* Num Frames
|
|
79930
|
+
* @description The number of frames to generate. If provided, will override duration.
|
|
79931
|
+
*/
|
|
79932
|
+
num_frames?: number;
|
|
79638
79933
|
/**
|
|
79639
79934
|
* Prompt
|
|
79640
79935
|
* @description The text prompt used to generate the video
|
|
@@ -83931,19 +84226,19 @@ export interface BriaEmbedProductInput {
|
|
|
83931
84226
|
* @example [
|
|
83932
84227
|
* {
|
|
83933
84228
|
* "coordinates": {
|
|
83934
|
-
* "height": 300,
|
|
83935
84229
|
* "y": 317,
|
|
83936
|
-
* "
|
|
83937
|
-
* "x": 300
|
|
84230
|
+
* "height": 300,
|
|
84231
|
+
* "x": 300,
|
|
84232
|
+
* "width": 100
|
|
83938
84233
|
* },
|
|
83939
84234
|
* "image_source": "https://bria-datasets.s3.us-east-1.amazonaws.com/embed-product/a_standing_lamp_over_white_background_0.png"
|
|
83940
84235
|
* },
|
|
83941
84236
|
* {
|
|
83942
84237
|
* "coordinates": {
|
|
83943
|
-
* "height": 156,
|
|
83944
84238
|
* "y": 287,
|
|
83945
|
-
* "
|
|
83946
|
-
* "x": 646
|
|
84239
|
+
* "height": 156,
|
|
84240
|
+
* "x": 646,
|
|
84241
|
+
* "width": 120
|
|
83947
84242
|
* },
|
|
83948
84243
|
* "image_source": "https://bria-datasets.s3.us-east-1.amazonaws.com/embed-product/a_wall_picture_on_white_background_0.png"
|
|
83949
84244
|
* }
|