getaiapi 0.3.0 → 0.3.2

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/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
7
7
  [![TypeScript](https://img.shields.io/badge/TypeScript-strict-blue.svg)](https://www.typescriptlang.org/)
8
8
 
9
- A unified TypeScript library that wraps 1,929 AI models across 3 providers into a single `generate()` function. One input shape. One output shape. Any model.
9
+ A unified TypeScript library that wraps 1,930 AI models across 3 providers into a single `generate()` function. One input shape. One output shape. Any model.
10
10
 
11
11
  ## Install
12
12
 
@@ -48,6 +48,20 @@ const edited = await generate({
48
48
  })
49
49
  ```
50
50
 
51
+ **Multi-image references** (e.g., character + location consistency)
52
+
53
+ ```typescript
54
+ const scene = await generate({
55
+ model: 'google-nano-banana-pro-edit',
56
+ prompt: 'cinematic shot of the character in the location',
57
+ image: 'https://example.com/character.jpg',
58
+ images: [
59
+ 'https://example.com/character.jpg',
60
+ 'https://example.com/location.jpg',
61
+ ],
62
+ })
63
+ ```
64
+
51
65
  **Text-to-speech**
52
66
 
53
67
  ```typescript
@@ -83,13 +97,13 @@ const cutout = await generate({
83
97
  Set API keys as environment variables. You only need keys for the providers you plan to call.
84
98
 
85
99
  ```bash
86
- # fal-ai (1,199 models)
100
+ # fal-ai (1,201 models)
87
101
  export FAL_KEY="your-fal-key"
88
102
 
89
103
  # Replicate (687 models)
90
104
  export REPLICATE_API_TOKEN="your-replicate-token"
91
105
 
92
- # WaveSpeed (43 models)
106
+ # WaveSpeed (66 models)
93
107
  export WAVESPEED_API_KEY="your-wavespeed-key"
94
108
  ```
95
109
 
@@ -167,12 +181,12 @@ const model = getModel('flux-schnell')
167
181
 
168
182
  | Category | Input | Output | Models |
169
183
  |---|---|---|---|
170
- | `text-to-image` | text | image | 828 |
171
- | `text-to-video` | text | video | 308 |
172
- | `image-edit` | image + text | image | 213 |
173
- | `image-to-video` | image + text | video | 178 |
174
- | `text-to-audio` | text | audio | 76 |
175
- | `upscale-image` | image | image | 59 |
184
+ | `text-to-image` | text | image | 820 |
185
+ | `text-to-video` | text | video | 318 |
186
+ | `image-edit` | image + text | image | 210 |
187
+ | `image-to-video` | image + text | video | 155 |
188
+ | `text-to-audio` | text | audio | 82 |
189
+ | `upscale-image` | image | image | 57 |
176
190
  | `training` | images | model | 50 |
177
191
  | `image-to-image` | image + text | image | 43 |
178
192
  | `segmentation` | image/video | segmentation | 34 |
@@ -180,17 +194,21 @@ const model = getModel('flux-schnell')
180
194
  | `audio-to-text` | audio | text | 25 |
181
195
  | `remove-background` | image/video | image/video | 24 |
182
196
  | `text-to-3d` | text | 3d | 19 |
183
- | `video-to-audio` | video | audio | 18 |
197
+ | `video-to-audio` | video | audio | 17 |
184
198
  | `upscale-video` | video | video | 15 |
199
+ | `video-to-video` | video | video | 15 |
185
200
  | `moderation` | text/image/video | text | 8 |
201
+ | `audio-to-video` | audio | video | 4 |
202
+ | `audio-edit` | audio | audio | 2 |
203
+ | `voice-clone` | audio | text | 1 |
186
204
 
187
205
  ## Providers
188
206
 
189
207
  | Provider | Models | Auth Env Var | Protocol |
190
208
  |---|---|---|---|
191
- | fal-ai | 1,199 | `FAL_KEY` | Native fetch |
209
+ | fal-ai | 1,201 | `FAL_KEY` | Native fetch |
192
210
  | Replicate | 687 | `REPLICATE_API_TOKEN` | Native fetch |
193
- | WaveSpeed | 43 | `WAVESPEED_API_KEY` | Native fetch |
211
+ | WaveSpeed | 66 | `WAVESPEED_API_KEY` | Native fetch |
194
212
 
195
213
  Zero external dependencies -- all provider communication uses native `fetch`.
196
214
 
@@ -207,6 +225,7 @@ interface GenerateRequest {
207
225
  model: string // required - model name
208
226
  prompt?: string // text prompt
209
227
  image?: string | File // input image (URL or File)
228
+ images?: (string | File)[] // multiple reference images
210
229
  audio?: string | File // input audio
211
230
  video?: string | File // input video
212
231
  negative_prompt?: string // what to avoid
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "getaiapi",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "type": "module",
5
5
  "description": "Unified AI API Gateway - one function to call any AI model",
6
6
  "main": "./dist/index.js",
@@ -14,6 +14,8 @@
14
14
  "fal-ai-elevenlabs-tts-eleven-v3",
15
15
  "fal-ai-elevenlabs-tts-multilingual-v2",
16
16
  "fal-ai-elevenlabs-tts-turbo-v2.5",
17
+ "fal-elevenlabs-sfx-v2",
18
+ "fal-elevenlabs-text-to-dialogue",
17
19
  "fal-ai-f5-tts",
18
20
  "fal-ai-index-tts-2-text-to-speech",
19
21
  "fal-ai-kling-video-v1-tts",
@@ -59,7 +61,11 @@
59
61
  "replicate-andreasjansson-musicgen-looper",
60
62
  "replicate-awerks-neon-tts",
61
63
  "replicate-cjwbw-parler-tts",
64
+ "replicate-elevenlabs-flash-v2.5",
62
65
  "replicate-elevenlabs-music",
66
+ "replicate-elevenlabs-turbo-v2.5",
67
+ "replicate-elevenlabs-v2-multilingual",
68
+ "replicate-elevenlabs-v3",
63
69
  "replicate-fermatresearch-spanish-f5-tts",
64
70
  "replicate-lucataco-mvsep-mdx23-music-separation",
65
71
  "replicate-meta-musicgen",
@@ -204,11 +210,8 @@
204
210
  "fal-ai-luma-dream-machine-ray-2-reframe",
205
211
  "fal-ai-luma-photon-flash-modify",
206
212
  "fal-ai-luma-photon-modify",
207
- "fal-ai-nano-banana",
208
- "fal-ai-nano-banana-2",
209
213
  "fal-ai-nano-banana-2-edit",
210
214
  "fal-ai-nano-banana-edit",
211
- "fal-ai-nano-banana-pro",
212
215
  "fal-ai-nano-banana-pro-edit",
213
216
  "fal-ai-nextstep-1",
214
217
  "fal-ai-omnigen-v1",
@@ -342,8 +345,6 @@
342
345
  "fal-ai-dreamo",
343
346
  "fal-ai-dreamshaper",
344
347
  "fal-ai-dwpose",
345
- "fal-ai-elevenlabs-audio-isolation",
346
- "fal-ai-elevenlabs-voice-changer",
347
348
  "fal-ai-emu-3.5-image-text-to-image",
348
349
  "fal-ai-f-lite-standard",
349
350
  "fal-ai-f-lite-texture",
@@ -435,9 +436,11 @@
435
436
  "fal-ai-ideogram-character-remix",
436
437
  "fal-ai-ideogram-v2",
437
438
  "fal-ai-ideogram-v2-remix",
439
+ "fal-ai-ideogram-v2-turbo",
438
440
  "fal-ai-ideogram-v2-turbo-remix",
439
441
  "fal-ai-ideogram-v2a",
440
442
  "fal-ai-ideogram-v2a-remix",
443
+ "fal-ai-ideogram-v2a-turbo",
441
444
  "fal-ai-ideogram-v2a-turbo-remix",
442
445
  "fal-ai-ideogram-v3",
443
446
  "fal-ai-ideogram-v3-reframe",
@@ -517,6 +520,9 @@
517
520
  "fal-ai-moondream3-preview-detect",
518
521
  "fal-ai-moondream3-preview-point",
519
522
  "fal-ai-moondream3-preview-query",
523
+ "fal-ai-nano-banana",
524
+ "fal-ai-nano-banana-2",
525
+ "fal-ai-nano-banana-pro",
520
526
  "fal-ai-object-removal",
521
527
  "fal-ai-object-removal-bbox",
522
528
  "fal-ai-object-removal-mask",
@@ -596,8 +602,6 @@
596
602
  "fal-ai-thera",
597
603
  "fal-ai-uno",
598
604
  "fal-ai-uso",
599
- "fal-ai-veo3-fast",
600
- "fal-ai-veo3.1-fast",
601
605
  "fal-ai-vidu-q2-reference-to-image",
602
606
  "fal-ai-vidu-q2-text-to-image",
603
607
  "fal-ai-vidu-reference-to-image",
@@ -758,10 +762,6 @@
758
762
  "replicate-deepseek-ai-deepseek-v3",
759
763
  "replicate-deepseek-ai-deepseek-v3.1",
760
764
  "replicate-deforum-deforum_stable_diffusion",
761
- "replicate-elevenlabs-flash-v2.5",
762
- "replicate-elevenlabs-turbo-v2.5",
763
- "replicate-elevenlabs-v2-multilingual",
764
- "replicate-elevenlabs-v3",
765
765
  "replicate-fermatresearch-dpo-sdxl-controlnet-lora",
766
766
  "replicate-fermatresearch-high-resolution-controlnet-tile",
767
767
  "replicate-fermatresearch-magic-image-refiner",
@@ -813,11 +813,6 @@
813
813
  "replicate-google-nano-banana-2",
814
814
  "replicate-google-nano-banana-pro",
815
815
  "replicate-google-research-maxim",
816
- "replicate-google-veo-2",
817
- "replicate-google-veo-3",
818
- "replicate-google-veo-3-fast",
819
- "replicate-google-veo-3.1",
820
- "replicate-google-veo-3.1-fast",
821
816
  "replicate-grandlineai-instant-id-artistic",
822
817
  "replicate-grandlineai-instant-id-photorealistic",
823
818
  "replicate-hassamdevsy-mask2former",
@@ -1145,8 +1140,6 @@
1145
1140
  "fal-ai-ai-avatar-multi",
1146
1141
  "fal-ai-ai-avatar-multi-text",
1147
1142
  "fal-ai-ai-avatar-single-text",
1148
- "fal-ai-argil-avatars-audio-to-video",
1149
- "fal-ai-argil-avatars-text-to-video",
1150
1143
  "fal-ai-bytedance-seedance-v1-lite-image-to-video",
1151
1144
  "fal-ai-bytedance-seedance-v1-pro-fast-image-to-video",
1152
1145
  "fal-ai-bytedance-seedance-v1-pro-image-to-video",
@@ -1156,7 +1149,6 @@
1156
1149
  "fal-ai-creatify-aurora",
1157
1150
  "fal-ai-decart-lucy-5b-image-to-video",
1158
1151
  "fal-ai-decart-lucy-i2v",
1159
- "fal-ai-dubbing",
1160
1152
  "fal-ai-echomimic-v3",
1161
1153
  "fal-ai-framepack",
1162
1154
  "fal-ai-framepack-f1",
@@ -1170,13 +1162,10 @@
1170
1162
  "fal-ai-hunyuan-video-v1.5-image-to-video",
1171
1163
  "fal-ai-infinitalk",
1172
1164
  "fal-ai-infinitalk-single-text",
1173
- "fal-ai-infinitalk-video-to-video",
1174
1165
  "fal-ai-kandinsky5-pro-image-to-video",
1175
1166
  "fal-kling-video",
1176
1167
  "fal-ai-kling-video-ai-avatar-v2-pro",
1177
1168
  "fal-ai-kling-video-ai-avatar-v2-standard",
1178
- "fal-ai-kling-video-lipsync-audio-to-video",
1179
- "fal-ai-kling-video-lipsync-text-to-video",
1180
1169
  "fal-ai-kling-video-o1-image-to-video",
1181
1170
  "fal-ai-kling-video-o1-reference-to-video",
1182
1171
  "fal-ai-kling-video-o1-standard-image-to-video",
@@ -1199,7 +1188,6 @@
1199
1188
  "fal-ai-latentsync",
1200
1189
  "fal-ai-live-avatar",
1201
1190
  "fal-ai-longcat-multi-avatar-image-audio-to-video",
1202
- "fal-ai-longcat-single-avatar-audio-to-video",
1203
1191
  "fal-ai-longcat-single-avatar-image-audio-to-video",
1204
1192
  "fal-ai-longcat-video-distilled-image-to-video-480p",
1205
1193
  "fal-ai-longcat-video-distilled-image-to-video-720p",
@@ -1211,20 +1199,15 @@
1211
1199
  "fal-ai-ltx-2-19b-image-to-video-lora",
1212
1200
  "fal-ai-ltx-2-image-to-video",
1213
1201
  "fal-ai-ltx-2-image-to-video-fast",
1214
- "fal-ai-ltx-2.3-audio-to-video",
1215
1202
  "fal-ai-ltx-2.3-extend-video",
1216
1203
  "fal-ai-ltx-2.3-image-to-video",
1217
1204
  "fal-ai-ltx-2.3-image-to-video-fast",
1218
1205
  "fal-ai-ltx-2.3-retake-video",
1219
- "fal-ai-ltx-2.3-text-to-video",
1220
- "fal-ai-ltx-2.3-text-to-video-fast",
1221
1206
  "fal-ai-ltx-video-13b-dev-image-to-video",
1222
1207
  "fal-ai-ltx-video-13b-distilled-image-to-video",
1223
1208
  "fal-ai-ltx-video-image-to-video",
1224
1209
  "fal-ai-ltx-video-lora-image-to-video",
1225
1210
  "fal-ai-ltxv-13b-098-distilled-image-to-video",
1226
- "fal-ai-luma-dream-machine-ray-2-flash-image-to-video",
1227
- "fal-ai-luma-dream-machine-ray-2-image-to-video",
1228
1211
  "fal-ai-magi-distilled-image-to-video",
1229
1212
  "fal-ai-magi-image-to-video",
1230
1213
  "fal-ai-minimax-hailuo-02-fast-image-to-video",
@@ -1244,7 +1227,6 @@
1244
1227
  "fal-ai-pika-v2.1-image-to-video",
1245
1228
  "fal-ai-pika-v2.2-image-to-video",
1246
1229
  "fal-ai-pika-v2.2-pikaframes",
1247
- "fal-ai-pixverse-lipsync",
1248
1230
  "fal-ai-pixverse-v3.5-image-to-video",
1249
1231
  "fal-ai-pixverse-v3.5-image-to-video-fast",
1250
1232
  "fal-ai-pixverse-v4-image-to-video",
@@ -1259,15 +1241,8 @@
1259
1241
  "fal-ai-sora-2-image-to-video",
1260
1242
  "fal-ai-sora-2-image-to-video-pro",
1261
1243
  "fal-ai-stable-avatar",
1262
- "fal-ai-sync-lipsync",
1263
- "fal-ai-sync-lipsync-react-1",
1264
- "fal-ai-sync-lipsync-v2",
1265
- "fal-ai-sync-lipsync-v2-pro",
1266
- "fal-ai-veed-avatars-audio-to-video",
1267
- "fal-ai-veed-avatars-text-to-video",
1268
1244
  "fal-ai-veed-fabric-1.0",
1269
1245
  "fal-ai-veed-fabric-1.0-fast",
1270
- "fal-ai-veed-lipsync",
1271
1246
  "fal-ai-veo2-image-to-video",
1272
1247
  "fal-ai-veo3-fast-image-to-video",
1273
1248
  "fal-ai-veo3-image-to-video",
@@ -1292,15 +1267,11 @@
1292
1267
  "fal-ai-wan-v2.6-image-to-video-flash",
1293
1268
  "fal-ai-xai-grok-imagine-video-image-to-video",
1294
1269
  "replicate-character-ai-ovi-i2v",
1295
- "replicate-chenxwh-video-retalking",
1296
1270
  "replicate-easel-ai-avatars",
1297
1271
  "replicate-heygen-avatar-iv",
1298
1272
  "replicate-kwaivgi-kling-avatar-v2",
1299
1273
  "replicate-kwaivgi-kling-lip-sync",
1300
1274
  "replicate-pixverse-lipsync",
1301
- "replicate-sync-lipsync-2",
1302
- "replicate-sync-lipsync-2-pro",
1303
- "replicate-tmappdev-lipsync",
1304
1275
  "replicate-wan-video-wan-2.2-i2v-a14b",
1305
1276
  "replicate-wan-video-wan-2.2-i2v-fast",
1306
1277
  "replicate-wan-video-wan-2.5-i2v",
@@ -1323,6 +1294,7 @@
1323
1294
  ],
1324
1295
  "text-to-video": [
1325
1296
  "fal-ai-amt-interpolation",
1297
+ "fal-ai-argil-avatars-text-to-video",
1326
1298
  "fal-ai-auto-caption",
1327
1299
  "fal-ai-bria-bria_video_eraser-erase-keypoints",
1328
1300
  "fal-ai-bria-bria_video_eraser-erase-mask",
@@ -1349,7 +1321,6 @@
1349
1321
  "fal-ai-decart-lucy-restyle",
1350
1322
  "fal-ai-depth-anything-video",
1351
1323
  "fal-ai-dwpose-video",
1352
- "fal-ai-elevenlabs-dubbing",
1353
1324
  "fal-ai-fast-animatediff-text-to-video",
1354
1325
  "fal-ai-fast-animatediff-turbo-text-to-video",
1355
1326
  "fal-ai-fast-animatediff-turbo-video-to-video",
@@ -1434,6 +1405,8 @@
1434
1405
  "fal-ai-ltx-2-retake-video",
1435
1406
  "fal-ai-ltx-2-text-to-video",
1436
1407
  "fal-ai-ltx-2-text-to-video-fast",
1408
+ "fal-ai-ltx-2.3-text-to-video",
1409
+ "fal-ai-ltx-2.3-text-to-video-fast",
1437
1410
  "fal-ai-ltx-video",
1438
1411
  "fal-ai-ltx-video-13b-dev",
1439
1412
  "fal-ai-ltx-video-13b-dev-extend",
@@ -1450,7 +1423,9 @@
1450
1423
  "fal-ai-ltxv-13b-098-distilled-multiconditioning",
1451
1424
  "fal-ai-luma-dream-machine-ray-2",
1452
1425
  "fal-ai-luma-dream-machine-ray-2-flash",
1426
+ "fal-ai-luma-dream-machine-ray-2-flash-image-to-video",
1453
1427
  "fal-ai-luma-dream-machine-ray-2-flash-modify",
1428
+ "fal-ai-luma-dream-machine-ray-2-image-to-video",
1454
1429
  "fal-ai-luma-dream-machine-ray-2-modify",
1455
1430
  "fal-ai-magi",
1456
1431
  "fal-ai-magi-distilled",
@@ -1508,11 +1483,14 @@
1508
1483
  "fal-ai-thinksound",
1509
1484
  "fal-ai-thinksound-audio",
1510
1485
  "fal-ai-transpixar",
1486
+ "fal-ai-veed-avatars-text-to-video",
1511
1487
  "fal-ai-veed-fabric-1.0-text",
1512
1488
  "fal-ai-veo2",
1513
1489
  "fal-ai-veo3",
1490
+ "fal-ai-veo3-fast",
1514
1491
  "fal-ai-veo3.1",
1515
1492
  "fal-ai-veo3.1-extend-video",
1493
+ "fal-ai-veo3.1-fast",
1516
1494
  "fal-ai-veo3.1-fast-extend-video",
1517
1495
  "fal-ai-veo3.1-fast-first-last-frame-to-video",
1518
1496
  "fal-ai-veo3.1-first-last-frame-to-video",
@@ -1585,6 +1563,11 @@
1585
1563
  "replicate-fofr-video-morpher",
1586
1564
  "replicate-fofr-video-to-frames",
1587
1565
  "replicate-gauravk95-sadtalker-video",
1566
+ "replicate-google-veo-2",
1567
+ "replicate-google-veo-3",
1568
+ "replicate-google-veo-3-fast",
1569
+ "replicate-google-veo-3.1",
1570
+ "replicate-google-veo-3.1-fast",
1588
1571
  "replicate-heygen-video-agent",
1589
1572
  "replicate-heygen-video-translate",
1590
1573
  "replicate-kwaivgi-kling-v3-omni-video",
@@ -1632,11 +1615,38 @@
1632
1615
  "wavespeed-alibaba-wan-2.5-video-extend",
1633
1616
  "wavespeed-alibaba-wan-2.5-video-extend-fast",
1634
1617
  "wavespeed-bytedance-dreamactor-v2",
1635
- "wavespeed-elevenlabs-dubbing",
1636
1618
  "wavespeed-kwaivgi-kling-v3.0-std-motion-control",
1637
1619
  "wavespeed-wavespeed-ai-ltx-2-19b-control",
1638
1620
  "wavespeed-wavespeed-ai-wan-2.2-animate"
1639
1621
  ],
1622
+ "video-to-video": [
1623
+ "fal-ai-dubbing",
1624
+ "fal-ai-elevenlabs-dubbing",
1625
+ "fal-ai-infinitalk-video-to-video",
1626
+ "fal-ai-kling-video-lipsync-audio-to-video",
1627
+ "fal-ai-kling-video-lipsync-text-to-video",
1628
+ "fal-ai-pixverse-lipsync",
1629
+ "fal-ai-sync-lipsync",
1630
+ "fal-ai-sync-lipsync-react-1",
1631
+ "fal-ai-sync-lipsync-v2",
1632
+ "fal-ai-sync-lipsync-v2-pro",
1633
+ "fal-ai-veed-lipsync",
1634
+ "replicate-chenxwh-video-retalking",
1635
+ "replicate-sync-lipsync-2",
1636
+ "replicate-sync-lipsync-2-pro",
1637
+ "replicate-tmappdev-lipsync",
1638
+ "wavespeed-elevenlabs-dubbing"
1639
+ ],
1640
+ "audio-to-video": [
1641
+ "fal-ai-argil-avatars-audio-to-video",
1642
+ "fal-ai-longcat-single-avatar-audio-to-video",
1643
+ "fal-ai-ltx-2.3-audio-to-video",
1644
+ "fal-ai-veed-avatars-audio-to-video"
1645
+ ],
1646
+ "audio-edit": [
1647
+ "fal-ai-elevenlabs-audio-isolation",
1648
+ "fal-ai-elevenlabs-voice-changer"
1649
+ ],
1640
1650
  "upscale-image": [
1641
1651
  "fal-ai-aura-sr",
1642
1652
  "fal-ai-bria-upscale-creative",
@@ -1654,8 +1664,6 @@
1654
1664
  "fal-ai-flux-vision-upscaler",
1655
1665
  "fal-ai-fooocus-upscale-or-vary",
1656
1666
  "fal-ai-ideogram-upscale",
1657
- "fal-ai-ideogram-v2-turbo",
1658
- "fal-ai-ideogram-v2a-turbo",
1659
1667
  "fal-ai-image-apps-v2-portrait-enhance",
1660
1668
  "fal-ai-image-apps-v2-relighting",
1661
1669
  "fal-ai-image-preprocessors-teed",
@@ -1702,8 +1710,6 @@
1702
1710
  "fal-ai-beatoven-sound-effect-generation",
1703
1711
  "fal-ai-cassetteai-sound-effects-generator",
1704
1712
  "fal-ai-cassetteai-video-sound-effects-generator",
1705
- "fal-elevenlabs-sfx-v2",
1706
- "fal-elevenlabs-text-to-dialogue",
1707
1713
  "fal-ai-hunyuan-video-foley",
1708
1714
  "fal-ai-kling-video-video-to-audio",
1709
1715
  "fal-ai-mirelo-ai-sfx-v1-video-to-audio",
@@ -4106,4 +4112,4 @@
4106
4112
  }
4107
4113
  ],
4108
4114
  "total": 1952
4109
- }
4115
+ }
@@ -1,14 +1,17 @@
1
1
  {
2
2
  "remove-background": 24,
3
- "text-to-image": 828,
4
- "text-to-audio": 76,
5
- "image-edit": 213,
3
+ "text-to-image": 820,
4
+ "text-to-audio": 83,
5
+ "image-edit": 210,
6
+ "audio-edit": 2,
6
7
  "audio-to-text": 25,
7
8
  "text-to-3d": 19,
8
- "image-to-video": 178,
9
- "upscale-image": 59,
10
- "text-to-video": 308,
11
- "video-to-audio": 18,
9
+ "image-to-video": 154,
10
+ "video-to-video": 16,
11
+ "audio-to-video": 4,
12
+ "upscale-image": 57,
13
+ "text-to-video": 320,
14
+ "video-to-audio": 16,
12
15
  "upscale-video": 15,
13
16
  "image-to-3d": 31,
14
17
  "segmentation": 34,
@@ -1651,11 +1651,10 @@
1651
1651
  "aliases": [
1652
1652
  "argil-avatars-audio-to-video"
1653
1653
  ],
1654
- "category": "image-to-video",
1654
+ "category": "audio-to-video",
1655
1655
  "modality": {
1656
1656
  "inputs": [
1657
- "image",
1658
- "text"
1657
+ "audio"
1659
1658
  ],
1660
1659
  "outputs": [
1661
1660
  "video"
@@ -1682,10 +1681,9 @@
1682
1681
  "argil-avatars-text-to-video",
1683
1682
  "argil-avatars"
1684
1683
  ],
1685
- "category": "image-to-video",
1684
+ "category": "text-to-video",
1686
1685
  "modality": {
1687
1686
  "inputs": [
1688
- "image",
1689
1687
  "text"
1690
1688
  ],
1691
1689
  "outputs": [
@@ -6830,11 +6828,11 @@
6830
6828
  "aliases": [
6831
6829
  "chenxwh-video-retalking"
6832
6830
  ],
6833
- "category": "image-to-video",
6831
+ "category": "video-to-video",
6834
6832
  "modality": {
6835
6833
  "inputs": [
6836
- "image",
6837
- "text"
6834
+ "video",
6835
+ "audio"
6838
6836
  ],
6839
6837
  "outputs": [
6840
6838
  "video"
@@ -9634,11 +9632,10 @@
9634
9632
  "aliases": [
9635
9633
  "dubbing"
9636
9634
  ],
9637
- "category": "image-to-video",
9635
+ "category": "video-to-video",
9638
9636
  "modality": {
9639
9637
  "inputs": [
9640
- "image",
9641
- "text"
9638
+ "video"
9642
9639
  ],
9643
9640
  "outputs": [
9644
9641
  "video"
@@ -9812,13 +9809,13 @@
9812
9809
  "aliases": [
9813
9810
  "elevenlabs-audio-isolation"
9814
9811
  ],
9815
- "category": "text-to-image",
9812
+ "category": "audio-edit",
9816
9813
  "modality": {
9817
9814
  "inputs": [
9818
- "text"
9815
+ "audio"
9819
9816
  ],
9820
9817
  "outputs": [
9821
- "image"
9818
+ "audio"
9822
9819
  ]
9823
9820
  },
9824
9821
  "providers": [
@@ -9829,9 +9826,9 @@
9829
9826
  "auth_env": "FAL_KEY",
9830
9827
  "param_map": {},
9831
9828
  "output_map": {
9832
- "type": "image",
9833
- "extract_path": "images[].url",
9834
- "content_type": "image/png"
9829
+ "type": "audio",
9830
+ "extract_path": "audio.url",
9831
+ "content_type": "audio/mpeg"
9835
9832
  }
9836
9833
  }
9837
9834
  ]
@@ -9841,10 +9838,10 @@
9841
9838
  "aliases": [
9842
9839
  "elevenlabs-dubbing"
9843
9840
  ],
9844
- "category": "text-to-video",
9841
+ "category": "video-to-video",
9845
9842
  "modality": {
9846
9843
  "inputs": [
9847
- "text"
9844
+ "video"
9848
9845
  ],
9849
9846
  "outputs": [
9850
9847
  "video"
@@ -9883,13 +9880,13 @@
9883
9880
  "elevenlabs-flash-v2.5",
9884
9881
  "elevenlabs-flash-2.5"
9885
9882
  ],
9886
- "category": "text-to-image",
9883
+ "category": "text-to-audio",
9887
9884
  "modality": {
9888
9885
  "inputs": [
9889
9886
  "text"
9890
9887
  ],
9891
9888
  "outputs": [
9892
- "image"
9889
+ "audio"
9893
9890
  ]
9894
9891
  },
9895
9892
  "providers": [
@@ -9900,9 +9897,9 @@
9900
9897
  "auth_env": "REPLICATE_API_TOKEN",
9901
9898
  "param_map": {},
9902
9899
  "output_map": {
9903
- "type": "image",
9900
+ "type": "audio",
9904
9901
  "extract_path": "output[]",
9905
- "content_type": "image/png"
9902
+ "content_type": "audio/mpeg"
9906
9903
  }
9907
9904
  }
9908
9905
  ]
@@ -9965,10 +9962,10 @@
9965
9962
  "aliases": [
9966
9963
  "elevenlabs-sfx-v2"
9967
9964
  ],
9968
- "category": "video-to-audio",
9965
+ "category": "text-to-audio",
9969
9966
  "modality": {
9970
9967
  "inputs": [
9971
- "video"
9968
+ "text"
9972
9969
  ],
9973
9970
  "outputs": [
9974
9971
  "audio"
@@ -10172,13 +10169,13 @@
10172
10169
  "elevenlabs-turbo-v2.5",
10173
10170
  "elevenlabs-turbo-2.5"
10174
10171
  ],
10175
- "category": "text-to-image",
10172
+ "category": "text-to-audio",
10176
10173
  "modality": {
10177
10174
  "inputs": [
10178
10175
  "text"
10179
10176
  ],
10180
10177
  "outputs": [
10181
- "image"
10178
+ "audio"
10182
10179
  ]
10183
10180
  },
10184
10181
  "providers": [
@@ -10189,9 +10186,9 @@
10189
10186
  "auth_env": "REPLICATE_API_TOKEN",
10190
10187
  "param_map": {},
10191
10188
  "output_map": {
10192
- "type": "image",
10189
+ "type": "audio",
10193
10190
  "extract_path": "output[]",
10194
- "content_type": "image/png"
10191
+ "content_type": "audio/mpeg"
10195
10192
  }
10196
10193
  }
10197
10194
  ]
@@ -10201,13 +10198,13 @@
10201
10198
  "aliases": [
10202
10199
  "elevenlabs-v2-multilingual"
10203
10200
  ],
10204
- "category": "text-to-image",
10201
+ "category": "text-to-audio",
10205
10202
  "modality": {
10206
10203
  "inputs": [
10207
10204
  "text"
10208
10205
  ],
10209
10206
  "outputs": [
10210
- "image"
10207
+ "audio"
10211
10208
  ]
10212
10209
  },
10213
10210
  "providers": [
@@ -10218,9 +10215,9 @@
10218
10215
  "auth_env": "REPLICATE_API_TOKEN",
10219
10216
  "param_map": {},
10220
10217
  "output_map": {
10221
- "type": "image",
10218
+ "type": "audio",
10222
10219
  "extract_path": "output[]",
10223
- "content_type": "image/png"
10220
+ "content_type": "audio/mpeg"
10224
10221
  }
10225
10222
  }
10226
10223
  ]
@@ -10230,13 +10227,13 @@
10230
10227
  "aliases": [
10231
10228
  "elevenlabs-v3"
10232
10229
  ],
10233
- "category": "text-to-image",
10230
+ "category": "text-to-audio",
10234
10231
  "modality": {
10235
10232
  "inputs": [
10236
10233
  "text"
10237
10234
  ],
10238
10235
  "outputs": [
10239
- "image"
10236
+ "audio"
10240
10237
  ]
10241
10238
  },
10242
10239
  "providers": [
@@ -10247,9 +10244,9 @@
10247
10244
  "auth_env": "REPLICATE_API_TOKEN",
10248
10245
  "param_map": {},
10249
10246
  "output_map": {
10250
- "type": "image",
10247
+ "type": "audio",
10251
10248
  "extract_path": "output[]",
10252
- "content_type": "image/png"
10249
+ "content_type": "audio/mpeg"
10253
10250
  }
10254
10251
  }
10255
10252
  ]
@@ -10259,13 +10256,13 @@
10259
10256
  "aliases": [
10260
10257
  "elevenlabs-voice-changer"
10261
10258
  ],
10262
- "category": "text-to-image",
10259
+ "category": "audio-edit",
10263
10260
  "modality": {
10264
10261
  "inputs": [
10265
- "text"
10262
+ "audio"
10266
10263
  ],
10267
10264
  "outputs": [
10268
- "image"
10265
+ "audio"
10269
10266
  ]
10270
10267
  },
10271
10268
  "providers": [
@@ -10276,9 +10273,9 @@
10276
10273
  "auth_env": "FAL_KEY",
10277
10274
  "param_map": {},
10278
10275
  "output_map": {
10279
- "type": "image",
10280
- "extract_path": "images[].url",
10281
- "content_type": "image/png"
10276
+ "type": "audio",
10277
+ "extract_path": "audio.url",
10278
+ "content_type": "audio/mpeg"
10282
10279
  }
10283
10280
  }
10284
10281
  ]
@@ -18142,13 +18139,13 @@
18142
18139
  "google-veo-2",
18143
18140
  "veo-2"
18144
18141
  ],
18145
- "category": "text-to-image",
18142
+ "category": "text-to-video",
18146
18143
  "modality": {
18147
18144
  "inputs": [
18148
18145
  "text"
18149
18146
  ],
18150
18147
  "outputs": [
18151
- "image"
18148
+ "video"
18152
18149
  ]
18153
18150
  },
18154
18151
  "providers": [
@@ -18159,9 +18156,9 @@
18159
18156
  "auth_env": "REPLICATE_API_TOKEN",
18160
18157
  "param_map": {},
18161
18158
  "output_map": {
18162
- "type": "image",
18159
+ "type": "video",
18163
18160
  "extract_path": "output[]",
18164
- "content_type": "image/png"
18161
+ "content_type": "video/mp4"
18165
18162
  }
18166
18163
  }
18167
18164
  ]
@@ -18172,13 +18169,13 @@
18172
18169
  "google-veo-3",
18173
18170
  "veo-3"
18174
18171
  ],
18175
- "category": "text-to-image",
18172
+ "category": "text-to-video",
18176
18173
  "modality": {
18177
18174
  "inputs": [
18178
18175
  "text"
18179
18176
  ],
18180
18177
  "outputs": [
18181
- "image"
18178
+ "video"
18182
18179
  ]
18183
18180
  },
18184
18181
  "providers": [
@@ -18189,9 +18186,9 @@
18189
18186
  "auth_env": "REPLICATE_API_TOKEN",
18190
18187
  "param_map": {},
18191
18188
  "output_map": {
18192
- "type": "image",
18189
+ "type": "video",
18193
18190
  "extract_path": "output[]",
18194
- "content_type": "image/png"
18191
+ "content_type": "video/mp4"
18195
18192
  }
18196
18193
  }
18197
18194
  ]
@@ -18202,13 +18199,13 @@
18202
18199
  "google-veo-3-fast",
18203
18200
  "veo-3-fast"
18204
18201
  ],
18205
- "category": "text-to-image",
18202
+ "category": "text-to-video",
18206
18203
  "modality": {
18207
18204
  "inputs": [
18208
18205
  "text"
18209
18206
  ],
18210
18207
  "outputs": [
18211
- "image"
18208
+ "video"
18212
18209
  ]
18213
18210
  },
18214
18211
  "providers": [
@@ -18219,9 +18216,9 @@
18219
18216
  "auth_env": "REPLICATE_API_TOKEN",
18220
18217
  "param_map": {},
18221
18218
  "output_map": {
18222
- "type": "image",
18219
+ "type": "video",
18223
18220
  "extract_path": "output[]",
18224
- "content_type": "image/png"
18221
+ "content_type": "video/mp4"
18225
18222
  }
18226
18223
  }
18227
18224
  ]
@@ -18232,13 +18229,13 @@
18232
18229
  "google-veo-3.1",
18233
18230
  "veo-3.1"
18234
18231
  ],
18235
- "category": "text-to-image",
18232
+ "category": "text-to-video",
18236
18233
  "modality": {
18237
18234
  "inputs": [
18238
18235
  "text"
18239
18236
  ],
18240
18237
  "outputs": [
18241
- "image"
18238
+ "video"
18242
18239
  ]
18243
18240
  },
18244
18241
  "providers": [
@@ -18249,9 +18246,9 @@
18249
18246
  "auth_env": "REPLICATE_API_TOKEN",
18250
18247
  "param_map": {},
18251
18248
  "output_map": {
18252
- "type": "image",
18249
+ "type": "video",
18253
18250
  "extract_path": "output[]",
18254
- "content_type": "image/png"
18251
+ "content_type": "video/mp4"
18255
18252
  }
18256
18253
  }
18257
18254
  ]
@@ -18262,13 +18259,13 @@
18262
18259
  "google-veo-3.1-fast",
18263
18260
  "veo-3.1-fast"
18264
18261
  ],
18265
- "category": "text-to-image",
18262
+ "category": "text-to-video",
18266
18263
  "modality": {
18267
18264
  "inputs": [
18268
18265
  "text"
18269
18266
  ],
18270
18267
  "outputs": [
18271
- "image"
18268
+ "video"
18272
18269
  ]
18273
18270
  },
18274
18271
  "providers": [
@@ -18279,9 +18276,9 @@
18279
18276
  "auth_env": "REPLICATE_API_TOKEN",
18280
18277
  "param_map": {},
18281
18278
  "output_map": {
18282
- "type": "image",
18279
+ "type": "video",
18283
18280
  "extract_path": "output[]",
18284
- "content_type": "image/png"
18281
+ "content_type": "video/mp4"
18285
18282
  }
18286
18283
  }
18287
18284
  ]
@@ -21088,10 +21085,10 @@
21088
21085
  "aliases": [
21089
21086
  "ideogram-v2-turbo"
21090
21087
  ],
21091
- "category": "upscale-image",
21088
+ "category": "text-to-image",
21092
21089
  "modality": {
21093
21090
  "inputs": [
21094
- "image"
21091
+ "text"
21095
21092
  ],
21096
21093
  "outputs": [
21097
21094
  "image"
@@ -21234,10 +21231,10 @@
21234
21231
  "aliases": [
21235
21232
  "ideogram-v2a-turbo"
21236
21233
  ],
21237
- "category": "upscale-image",
21234
+ "category": "text-to-image",
21238
21235
  "modality": {
21239
21236
  "inputs": [
21240
- "image"
21237
+ "text"
21241
21238
  ],
21242
21239
  "outputs": [
21243
21240
  "image"
@@ -23438,10 +23435,11 @@
23438
23435
  "aliases": [
23439
23436
  "infinitalk-video-to-video"
23440
23437
  ],
23441
- "category": "image-to-video",
23438
+ "category": "video-to-video",
23442
23439
  "modality": {
23443
23440
  "inputs": [
23444
- "image",
23441
+ "video",
23442
+ "audio",
23445
23443
  "text"
23446
23444
  ],
23447
23445
  "outputs": [
@@ -24554,11 +24552,11 @@
24554
24552
  "aliases": [
24555
24553
  "kling-video-lipsync-audio-to-video"
24556
24554
  ],
24557
- "category": "image-to-video",
24555
+ "category": "video-to-video",
24558
24556
  "modality": {
24559
24557
  "inputs": [
24560
- "image",
24561
- "text"
24558
+ "video",
24559
+ "audio"
24562
24560
  ],
24563
24561
  "outputs": [
24564
24562
  "video"
@@ -24585,10 +24583,10 @@
24585
24583
  "kling-video-lipsync-text-to-video",
24586
24584
  "kling-video-lipsync"
24587
24585
  ],
24588
- "category": "image-to-video",
24586
+ "category": "video-to-video",
24589
24587
  "modality": {
24590
24588
  "inputs": [
24591
- "image",
24589
+ "video",
24592
24590
  "text"
24593
24591
  ],
24594
24592
  "outputs": [
@@ -28095,11 +28093,10 @@
28095
28093
  "aliases": [
28096
28094
  "longcat-single-avatar-audio-to-video"
28097
28095
  ],
28098
- "category": "image-to-video",
28096
+ "category": "audio-to-video",
28099
28097
  "modality": {
28100
28098
  "inputs": [
28101
- "image",
28102
- "text"
28099
+ "audio"
28103
28100
  ],
28104
28101
  "outputs": [
28105
28102
  "video"
@@ -29272,11 +29269,10 @@
29272
29269
  "aliases": [
29273
29270
  "ltx-2.3-audio-to-video"
29274
29271
  ],
29275
- "category": "image-to-video",
29272
+ "category": "audio-to-video",
29276
29273
  "modality": {
29277
29274
  "inputs": [
29278
- "image",
29279
- "text"
29275
+ "audio"
29280
29276
  ],
29281
29277
  "outputs": [
29282
29278
  "video"
@@ -29423,10 +29419,9 @@
29423
29419
  "aliases": [
29424
29420
  "ltx-2.3-text-to-video"
29425
29421
  ],
29426
- "category": "image-to-video",
29422
+ "category": "text-to-video",
29427
29423
  "modality": {
29428
29424
  "inputs": [
29429
- "image",
29430
29425
  "text"
29431
29426
  ],
29432
29427
  "outputs": [
@@ -29453,10 +29448,9 @@
29453
29448
  "aliases": [
29454
29449
  "ltx-2.3-text-to-video-fast"
29455
29450
  ],
29456
- "category": "image-to-video",
29451
+ "category": "text-to-video",
29457
29452
  "modality": {
29458
29453
  "inputs": [
29459
- "image",
29460
29454
  "text"
29461
29455
  ],
29462
29456
  "outputs": [
@@ -31984,10 +31978,9 @@
31984
31978
  "aliases": [
31985
31979
  "luma-dream-machine-ray-2-flash-image-to-video"
31986
31980
  ],
31987
- "category": "image-to-video",
31981
+ "category": "text-to-video",
31988
31982
  "modality": {
31989
31983
  "inputs": [
31990
- "image",
31991
31984
  "text"
31992
31985
  ],
31993
31986
  "outputs": [
@@ -32073,10 +32066,9 @@
32073
32066
  "aliases": [
32074
32067
  "luma-dream-machine-ray-2-image-to-video"
32075
32068
  ],
32076
- "category": "image-to-video",
32069
+ "category": "text-to-video",
32077
32070
  "modality": {
32078
32071
  "inputs": [
32079
- "image",
32080
32072
  "text"
32081
32073
  ],
32082
32074
  "outputs": [
@@ -36494,10 +36486,9 @@
36494
36486
  "aliases": [
36495
36487
  "nano-banana"
36496
36488
  ],
36497
- "category": "image-edit",
36489
+ "category": "text-to-image",
36498
36490
  "modality": {
36499
36491
  "inputs": [
36500
- "image",
36501
36492
  "text"
36502
36493
  ],
36503
36494
  "outputs": [
@@ -36524,10 +36515,9 @@
36524
36515
  "aliases": [
36525
36516
  "nano-banana-2"
36526
36517
  ],
36527
- "category": "image-edit",
36518
+ "category": "text-to-image",
36528
36519
  "modality": {
36529
36520
  "inputs": [
36530
- "image",
36531
36521
  "text"
36532
36522
  ],
36533
36523
  "outputs": [
@@ -36614,10 +36604,9 @@
36614
36604
  "aliases": [
36615
36605
  "nano-banana-pro"
36616
36606
  ],
36617
- "category": "image-edit",
36607
+ "category": "text-to-image",
36618
36608
  "modality": {
36619
36609
  "inputs": [
36620
- "image",
36621
36610
  "text"
36622
36611
  ],
36623
36612
  "outputs": [
@@ -39410,11 +39399,10 @@
39410
39399
  "aliases": [
39411
39400
  "pixverse-lipsync"
39412
39401
  ],
39413
- "category": "image-to-video",
39402
+ "category": "video-to-video",
39414
39403
  "modality": {
39415
39404
  "inputs": [
39416
- "image",
39417
- "text"
39405
+ "video"
39418
39406
  ],
39419
39407
  "outputs": [
39420
39408
  "video"
@@ -48571,11 +48559,11 @@
48571
48559
  "aliases": [
48572
48560
  "sync-lipsync"
48573
48561
  ],
48574
- "category": "image-to-video",
48562
+ "category": "video-to-video",
48575
48563
  "modality": {
48576
48564
  "inputs": [
48577
- "image",
48578
- "text"
48565
+ "video",
48566
+ "audio"
48579
48567
  ],
48580
48568
  "outputs": [
48581
48569
  "video"
@@ -48601,11 +48589,11 @@
48601
48589
  "aliases": [
48602
48590
  "sync-lipsync-2"
48603
48591
  ],
48604
- "category": "image-to-video",
48592
+ "category": "video-to-video",
48605
48593
  "modality": {
48606
48594
  "inputs": [
48607
- "image",
48608
- "text"
48595
+ "video",
48596
+ "audio"
48609
48597
  ],
48610
48598
  "outputs": [
48611
48599
  "video"
@@ -48631,11 +48619,11 @@
48631
48619
  "aliases": [
48632
48620
  "sync-lipsync-2-pro"
48633
48621
  ],
48634
- "category": "image-to-video",
48622
+ "category": "video-to-video",
48635
48623
  "modality": {
48636
48624
  "inputs": [
48637
- "image",
48638
- "text"
48625
+ "video",
48626
+ "audio"
48639
48627
  ],
48640
48628
  "outputs": [
48641
48629
  "video"
@@ -48661,11 +48649,11 @@
48661
48649
  "aliases": [
48662
48650
  "sync-lipsync-react-1"
48663
48651
  ],
48664
- "category": "image-to-video",
48652
+ "category": "video-to-video",
48665
48653
  "modality": {
48666
48654
  "inputs": [
48667
- "image",
48668
- "text"
48655
+ "video",
48656
+ "audio"
48669
48657
  ],
48670
48658
  "outputs": [
48671
48659
  "video"
@@ -48691,11 +48679,11 @@
48691
48679
  "aliases": [
48692
48680
  "sync-lipsync-v2"
48693
48681
  ],
48694
- "category": "image-to-video",
48682
+ "category": "video-to-video",
48695
48683
  "modality": {
48696
48684
  "inputs": [
48697
- "image",
48698
- "text"
48685
+ "video",
48686
+ "audio"
48699
48687
  ],
48700
48688
  "outputs": [
48701
48689
  "video"
@@ -48721,11 +48709,11 @@
48721
48709
  "aliases": [
48722
48710
  "sync-lipsync-v2-pro"
48723
48711
  ],
48724
- "category": "image-to-video",
48712
+ "category": "video-to-video",
48725
48713
  "modality": {
48726
48714
  "inputs": [
48727
- "image",
48728
- "text"
48715
+ "video",
48716
+ "audio"
48729
48717
  ],
48730
48718
  "outputs": [
48731
48719
  "video"
@@ -49247,11 +49235,11 @@
49247
49235
  "aliases": [
49248
49236
  "tmappdev-lipsync"
49249
49237
  ],
49250
- "category": "image-to-video",
49238
+ "category": "video-to-video",
49251
49239
  "modality": {
49252
49240
  "inputs": [
49253
- "image",
49254
- "text"
49241
+ "video",
49242
+ "audio"
49255
49243
  ],
49256
49244
  "outputs": [
49257
49245
  "video"
@@ -49920,11 +49908,10 @@
49920
49908
  "aliases": [
49921
49909
  "veed-avatars-audio-to-video"
49922
49910
  ],
49923
- "category": "image-to-video",
49911
+ "category": "audio-to-video",
49924
49912
  "modality": {
49925
49913
  "inputs": [
49926
- "image",
49927
- "text"
49914
+ "audio"
49928
49915
  ],
49929
49916
  "outputs": [
49930
49917
  "video"
@@ -49951,10 +49938,9 @@
49951
49938
  "veed-avatars-text-to-video",
49952
49939
  "veed-avatars"
49953
49940
  ],
49954
- "category": "image-to-video",
49941
+ "category": "text-to-video",
49955
49942
  "modality": {
49956
49943
  "inputs": [
49957
- "image",
49958
49944
  "text"
49959
49945
  ],
49960
49946
  "outputs": [
@@ -50082,11 +50068,11 @@
50082
50068
  "aliases": [
50083
50069
  "veed-lipsync"
50084
50070
  ],
50085
- "category": "image-to-video",
50071
+ "category": "video-to-video",
50086
50072
  "modality": {
50087
50073
  "inputs": [
50088
- "image",
50089
- "text"
50074
+ "video",
50075
+ "audio"
50090
50076
  ],
50091
50077
  "outputs": [
50092
50078
  "video"
@@ -50287,13 +50273,13 @@
50287
50273
  "aliases": [
50288
50274
  "veo3-fast"
50289
50275
  ],
50290
- "category": "text-to-image",
50276
+ "category": "text-to-video",
50291
50277
  "modality": {
50292
50278
  "inputs": [
50293
50279
  "text"
50294
50280
  ],
50295
50281
  "outputs": [
50296
- "image"
50282
+ "video"
50297
50283
  ]
50298
50284
  },
50299
50285
  "providers": [
@@ -50304,9 +50290,9 @@
50304
50290
  "auth_env": "FAL_KEY",
50305
50291
  "param_map": {},
50306
50292
  "output_map": {
50307
- "type": "image",
50293
+ "type": "video",
50308
50294
  "extract_path": "images[].url",
50309
- "content_type": "image/png"
50295
+ "content_type": "video/mp4"
50310
50296
  }
50311
50297
  }
50312
50298
  ]
@@ -50434,13 +50420,13 @@
50434
50420
  "aliases": [
50435
50421
  "veo3.1-fast"
50436
50422
  ],
50437
- "category": "text-to-image",
50423
+ "category": "text-to-video",
50438
50424
  "modality": {
50439
50425
  "inputs": [
50440
50426
  "text"
50441
50427
  ],
50442
50428
  "outputs": [
50443
- "image"
50429
+ "video"
50444
50430
  ]
50445
50431
  },
50446
50432
  "providers": [
@@ -50451,9 +50437,9 @@
50451
50437
  "auth_env": "FAL_KEY",
50452
50438
  "param_map": {},
50453
50439
  "output_map": {
50454
- "type": "image",
50440
+ "type": "video",
50455
50441
  "extract_path": "images[].url",
50456
- "content_type": "image/png"
50442
+ "content_type": "video/mp4"
50457
50443
  }
50458
50444
  }
50459
50445
  ]
@@ -57286,4 +57272,4 @@
57286
57272
  }
57287
57273
  ]
57288
57274
  }
57289
- ]
57275
+ ]