@genfeedai/types 0.2.2 → 0.3.0
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/dist/{chunk-KXAKQO3U.js → chunk-74STGUJY.js} +2 -0
- package/dist/chunk-74STGUJY.js.map +1 -0
- package/dist/{chunk-WT2F5CAF.mjs → chunk-CVFAILC4.mjs} +2 -0
- package/dist/chunk-CVFAILC4.mjs.map +1 -0
- package/dist/chunk-DVR3GE4F.js +4 -0
- package/dist/chunk-DVR3GE4F.js.map +1 -0
- package/dist/chunk-G2BD5ZTF.mjs +3 -0
- package/dist/chunk-G2BD5ZTF.mjs.map +1 -0
- package/dist/{chunk-P4XY3T5T.js → chunk-MRTGK3CK.js} +601 -578
- package/dist/chunk-MRTGK3CK.js.map +1 -0
- package/dist/{chunk-QNWQE2LJ.mjs → chunk-ZMENGANG.mjs} +601 -578
- package/dist/chunk-ZMENGANG.mjs.map +1 -0
- package/dist/comfyui.d.mts +44 -44
- package/dist/comfyui.d.ts +44 -44
- package/dist/comfyui.js +3 -1
- package/dist/comfyui.js.map +1 -0
- package/dist/comfyui.mjs +3 -1
- package/dist/comfyui.mjs.map +1 -0
- package/dist/index.d.mts +341 -3
- package/dist/index.d.ts +341 -3
- package/dist/index.js +28 -26
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +11 -9
- package/dist/index.mjs.map +1 -0
- package/dist/nodes.d.mts +2 -2
- package/dist/nodes.d.ts +2 -2
- package/dist/nodes.js +15 -13
- package/dist/nodes.js.map +1 -0
- package/dist/nodes.mjs +3 -1
- package/dist/nodes.mjs.map +1 -0
- package/dist/replicate.js +2 -0
- package/dist/replicate.js.map +1 -0
- package/dist/replicate.mjs +2 -0
- package/dist/replicate.mjs.map +1 -0
- package/dist/{union-BVaWc1Cx.d.mts → union-D5EesBEB.d.mts} +142 -142
- package/dist/{union-BVaWc1Cx.d.ts → union-D5EesBEB.d.ts} +142 -142
- package/dist/{workflow-B_Q38s-U.d.ts → workflow-Cd_F9hZk.d.ts} +1 -1
- package/dist/{workflow-BbAp7VSK.d.mts → workflow-D9M1Yoiy.d.mts} +1 -1
- package/dist/workflow.d.mts +2 -2
- package/dist/workflow.d.ts +2 -2
- package/dist/workflow.js +4 -2
- package/dist/workflow.js.map +1 -0
- package/dist/workflow.mjs +3 -1
- package/dist/workflow.mjs.map +1 -0
- package/package.json +37 -37
- package/src/replicate/schemas.json +319 -319
- package/dist/chunk-7NJUD2WZ.mjs +0 -1
- package/dist/chunk-RNGYPX4W.js +0 -2
|
@@ -2,6 +2,24 @@
|
|
|
2
2
|
{
|
|
3
3
|
"category": "image",
|
|
4
4
|
"componentSchemas": {
|
|
5
|
+
"aspect_ratio": {
|
|
6
|
+
"description": "An enumeration.",
|
|
7
|
+
"enum": [
|
|
8
|
+
"match_input_image",
|
|
9
|
+
"1:1",
|
|
10
|
+
"2:3",
|
|
11
|
+
"3:2",
|
|
12
|
+
"3:4",
|
|
13
|
+
"4:3",
|
|
14
|
+
"4:5",
|
|
15
|
+
"5:4",
|
|
16
|
+
"9:16",
|
|
17
|
+
"16:9",
|
|
18
|
+
"21:9"
|
|
19
|
+
],
|
|
20
|
+
"title": "aspect_ratio",
|
|
21
|
+
"type": "string"
|
|
22
|
+
},
|
|
5
23
|
"HTTPValidationError": {
|
|
6
24
|
"properties": {
|
|
7
25
|
"detail": {
|
|
@@ -15,6 +33,12 @@
|
|
|
15
33
|
"title": "HTTPValidationError",
|
|
16
34
|
"type": "object"
|
|
17
35
|
},
|
|
36
|
+
"output_format": {
|
|
37
|
+
"description": "An enumeration.",
|
|
38
|
+
"enum": ["jpg", "png"],
|
|
39
|
+
"title": "output_format",
|
|
40
|
+
"type": "string"
|
|
41
|
+
},
|
|
18
42
|
"PredictionRequest": {
|
|
19
43
|
"properties": {
|
|
20
44
|
"context": {
|
|
@@ -166,30 +190,6 @@
|
|
|
166
190
|
"enum": ["start", "output", "logs", "completed"],
|
|
167
191
|
"title": "WebhookEvent",
|
|
168
192
|
"type": "string"
|
|
169
|
-
},
|
|
170
|
-
"aspect_ratio": {
|
|
171
|
-
"description": "An enumeration.",
|
|
172
|
-
"enum": [
|
|
173
|
-
"match_input_image",
|
|
174
|
-
"1:1",
|
|
175
|
-
"2:3",
|
|
176
|
-
"3:2",
|
|
177
|
-
"3:4",
|
|
178
|
-
"4:3",
|
|
179
|
-
"4:5",
|
|
180
|
-
"5:4",
|
|
181
|
-
"9:16",
|
|
182
|
-
"16:9",
|
|
183
|
-
"21:9"
|
|
184
|
-
],
|
|
185
|
-
"title": "aspect_ratio",
|
|
186
|
-
"type": "string"
|
|
187
|
-
},
|
|
188
|
-
"output_format": {
|
|
189
|
-
"description": "An enumeration.",
|
|
190
|
-
"enum": ["jpg", "png"],
|
|
191
|
-
"title": "output_format",
|
|
192
|
-
"type": "string"
|
|
193
193
|
}
|
|
194
194
|
},
|
|
195
195
|
"coverImageUrl": "https://tjzk.replicate.delivery/models_models_featured_image/ed879e99-71b5-4689-bed3-e7305e35a28a/this.png",
|
|
@@ -250,6 +250,28 @@
|
|
|
250
250
|
{
|
|
251
251
|
"category": "image",
|
|
252
252
|
"componentSchemas": {
|
|
253
|
+
"aspect_ratio": {
|
|
254
|
+
"description": "An enumeration.",
|
|
255
|
+
"enum": [
|
|
256
|
+
"match_input_image",
|
|
257
|
+
"1:1",
|
|
258
|
+
"1:4",
|
|
259
|
+
"1:8",
|
|
260
|
+
"2:3",
|
|
261
|
+
"3:2",
|
|
262
|
+
"3:4",
|
|
263
|
+
"4:1",
|
|
264
|
+
"4:3",
|
|
265
|
+
"4:5",
|
|
266
|
+
"5:4",
|
|
267
|
+
"8:1",
|
|
268
|
+
"9:16",
|
|
269
|
+
"16:9",
|
|
270
|
+
"21:9"
|
|
271
|
+
],
|
|
272
|
+
"title": "aspect_ratio",
|
|
273
|
+
"type": "string"
|
|
274
|
+
},
|
|
253
275
|
"HTTPValidationError": {
|
|
254
276
|
"properties": {
|
|
255
277
|
"detail": {
|
|
@@ -263,6 +285,12 @@
|
|
|
263
285
|
"title": "HTTPValidationError",
|
|
264
286
|
"type": "object"
|
|
265
287
|
},
|
|
288
|
+
"output_format": {
|
|
289
|
+
"description": "An enumeration.",
|
|
290
|
+
"enum": ["jpg", "png"],
|
|
291
|
+
"title": "output_format",
|
|
292
|
+
"type": "string"
|
|
293
|
+
},
|
|
266
294
|
"PredictionRequest": {
|
|
267
295
|
"properties": {
|
|
268
296
|
"context": {
|
|
@@ -374,6 +402,12 @@
|
|
|
374
402
|
"title": "PredictionResponse",
|
|
375
403
|
"type": "object"
|
|
376
404
|
},
|
|
405
|
+
"resolution": {
|
|
406
|
+
"description": "An enumeration.",
|
|
407
|
+
"enum": ["1K", "2K", "4K"],
|
|
408
|
+
"title": "resolution",
|
|
409
|
+
"type": "string"
|
|
410
|
+
},
|
|
377
411
|
"Status": {
|
|
378
412
|
"description": "An enumeration.",
|
|
379
413
|
"enum": ["starting", "processing", "succeeded", "canceled", "failed"],
|
|
@@ -414,40 +448,6 @@
|
|
|
414
448
|
"enum": ["start", "output", "logs", "completed"],
|
|
415
449
|
"title": "WebhookEvent",
|
|
416
450
|
"type": "string"
|
|
417
|
-
},
|
|
418
|
-
"aspect_ratio": {
|
|
419
|
-
"description": "An enumeration.",
|
|
420
|
-
"enum": [
|
|
421
|
-
"match_input_image",
|
|
422
|
-
"1:1",
|
|
423
|
-
"1:4",
|
|
424
|
-
"1:8",
|
|
425
|
-
"2:3",
|
|
426
|
-
"3:2",
|
|
427
|
-
"3:4",
|
|
428
|
-
"4:1",
|
|
429
|
-
"4:3",
|
|
430
|
-
"4:5",
|
|
431
|
-
"5:4",
|
|
432
|
-
"8:1",
|
|
433
|
-
"9:16",
|
|
434
|
-
"16:9",
|
|
435
|
-
"21:9"
|
|
436
|
-
],
|
|
437
|
-
"title": "aspect_ratio",
|
|
438
|
-
"type": "string"
|
|
439
|
-
},
|
|
440
|
-
"output_format": {
|
|
441
|
-
"description": "An enumeration.",
|
|
442
|
-
"enum": ["jpg", "png"],
|
|
443
|
-
"title": "output_format",
|
|
444
|
-
"type": "string"
|
|
445
|
-
},
|
|
446
|
-
"resolution": {
|
|
447
|
-
"description": "An enumeration.",
|
|
448
|
-
"enum": ["1K", "2K", "4K"],
|
|
449
|
-
"title": "resolution",
|
|
450
|
-
"type": "string"
|
|
451
451
|
}
|
|
452
452
|
},
|
|
453
453
|
"coverImageUrl": "https://tjzk.replicate.delivery/models_models_featured_image/80e7a89d-6163-4a92-927c-79ec74379079/nano-banana-2.png",
|
|
@@ -532,6 +532,24 @@
|
|
|
532
532
|
{
|
|
533
533
|
"category": "image",
|
|
534
534
|
"componentSchemas": {
|
|
535
|
+
"aspect_ratio": {
|
|
536
|
+
"description": "An enumeration.",
|
|
537
|
+
"enum": [
|
|
538
|
+
"match_input_image",
|
|
539
|
+
"1:1",
|
|
540
|
+
"2:3",
|
|
541
|
+
"3:2",
|
|
542
|
+
"3:4",
|
|
543
|
+
"4:3",
|
|
544
|
+
"4:5",
|
|
545
|
+
"5:4",
|
|
546
|
+
"9:16",
|
|
547
|
+
"16:9",
|
|
548
|
+
"21:9"
|
|
549
|
+
],
|
|
550
|
+
"title": "aspect_ratio",
|
|
551
|
+
"type": "string"
|
|
552
|
+
},
|
|
535
553
|
"HTTPValidationError": {
|
|
536
554
|
"properties": {
|
|
537
555
|
"detail": {
|
|
@@ -545,6 +563,12 @@
|
|
|
545
563
|
"title": "HTTPValidationError",
|
|
546
564
|
"type": "object"
|
|
547
565
|
},
|
|
566
|
+
"output_format": {
|
|
567
|
+
"description": "An enumeration.",
|
|
568
|
+
"enum": ["jpg", "png"],
|
|
569
|
+
"title": "output_format",
|
|
570
|
+
"type": "string"
|
|
571
|
+
},
|
|
548
572
|
"PredictionRequest": {
|
|
549
573
|
"properties": {
|
|
550
574
|
"context": {
|
|
@@ -656,12 +680,28 @@
|
|
|
656
680
|
"title": "PredictionResponse",
|
|
657
681
|
"type": "object"
|
|
658
682
|
},
|
|
683
|
+
"resolution": {
|
|
684
|
+
"description": "An enumeration.",
|
|
685
|
+
"enum": ["1K", "2K", "4K"],
|
|
686
|
+
"title": "resolution",
|
|
687
|
+
"type": "string"
|
|
688
|
+
},
|
|
659
689
|
"Status": {
|
|
660
690
|
"description": "An enumeration.",
|
|
661
691
|
"enum": ["starting", "processing", "succeeded", "canceled", "failed"],
|
|
662
692
|
"title": "Status",
|
|
663
693
|
"type": "string"
|
|
664
694
|
},
|
|
695
|
+
"safety_filter_level": {
|
|
696
|
+
"description": "An enumeration.",
|
|
697
|
+
"enum": [
|
|
698
|
+
"block_low_and_above",
|
|
699
|
+
"block_medium_and_above",
|
|
700
|
+
"block_only_high"
|
|
701
|
+
],
|
|
702
|
+
"title": "safety_filter_level",
|
|
703
|
+
"type": "string"
|
|
704
|
+
},
|
|
665
705
|
"ValidationError": {
|
|
666
706
|
"properties": {
|
|
667
707
|
"loc": {
|
|
@@ -696,46 +736,6 @@
|
|
|
696
736
|
"enum": ["start", "output", "logs", "completed"],
|
|
697
737
|
"title": "WebhookEvent",
|
|
698
738
|
"type": "string"
|
|
699
|
-
},
|
|
700
|
-
"aspect_ratio": {
|
|
701
|
-
"description": "An enumeration.",
|
|
702
|
-
"enum": [
|
|
703
|
-
"match_input_image",
|
|
704
|
-
"1:1",
|
|
705
|
-
"2:3",
|
|
706
|
-
"3:2",
|
|
707
|
-
"3:4",
|
|
708
|
-
"4:3",
|
|
709
|
-
"4:5",
|
|
710
|
-
"5:4",
|
|
711
|
-
"9:16",
|
|
712
|
-
"16:9",
|
|
713
|
-
"21:9"
|
|
714
|
-
],
|
|
715
|
-
"title": "aspect_ratio",
|
|
716
|
-
"type": "string"
|
|
717
|
-
},
|
|
718
|
-
"output_format": {
|
|
719
|
-
"description": "An enumeration.",
|
|
720
|
-
"enum": ["jpg", "png"],
|
|
721
|
-
"title": "output_format",
|
|
722
|
-
"type": "string"
|
|
723
|
-
},
|
|
724
|
-
"resolution": {
|
|
725
|
-
"description": "An enumeration.",
|
|
726
|
-
"enum": ["1K", "2K", "4K"],
|
|
727
|
-
"title": "resolution",
|
|
728
|
-
"type": "string"
|
|
729
|
-
},
|
|
730
|
-
"safety_filter_level": {
|
|
731
|
-
"description": "An enumeration.",
|
|
732
|
-
"enum": [
|
|
733
|
-
"block_low_and_above",
|
|
734
|
-
"block_medium_and_above",
|
|
735
|
-
"block_only_high"
|
|
736
|
-
],
|
|
737
|
-
"title": "safety_filter_level",
|
|
738
|
-
"type": "string"
|
|
739
739
|
}
|
|
740
740
|
},
|
|
741
741
|
"coverImageUrl": "https://tjzk.replicate.delivery/models_models_featured_image/5ee636db-8712-442f-9644-63980f6786f4/banana2.png",
|
|
@@ -836,6 +836,12 @@
|
|
|
836
836
|
"title": "HTTPValidationError",
|
|
837
837
|
"type": "object"
|
|
838
838
|
},
|
|
839
|
+
"output_format": {
|
|
840
|
+
"description": "An enumeration.",
|
|
841
|
+
"enum": ["png", "jpg", "webp"],
|
|
842
|
+
"title": "output_format",
|
|
843
|
+
"type": "string"
|
|
844
|
+
},
|
|
839
845
|
"PredictionRequest": {
|
|
840
846
|
"properties": {
|
|
841
847
|
"context": {
|
|
@@ -987,12 +993,6 @@
|
|
|
987
993
|
"enum": ["start", "output", "logs", "completed"],
|
|
988
994
|
"title": "WebhookEvent",
|
|
989
995
|
"type": "string"
|
|
990
|
-
},
|
|
991
|
-
"output_format": {
|
|
992
|
-
"description": "An enumeration.",
|
|
993
|
-
"enum": ["png", "jpg", "webp"],
|
|
994
|
-
"title": "output_format",
|
|
995
|
-
"type": "string"
|
|
996
996
|
}
|
|
997
997
|
},
|
|
998
998
|
"coverImageUrl": "https://tjzk.replicate.delivery/models_models_featured_image/3fb764f9-6196-4cb7-b4f3-4b7b265cd822/z-img-sm.jpg",
|
|
@@ -1091,6 +1091,24 @@
|
|
|
1091
1091
|
{
|
|
1092
1092
|
"category": "image",
|
|
1093
1093
|
"componentSchemas": {
|
|
1094
|
+
"aspect_ratio": {
|
|
1095
|
+
"description": "An enumeration.",
|
|
1096
|
+
"enum": [
|
|
1097
|
+
"1:1",
|
|
1098
|
+
"16:9",
|
|
1099
|
+
"21:9",
|
|
1100
|
+
"3:2",
|
|
1101
|
+
"2:3",
|
|
1102
|
+
"4:5",
|
|
1103
|
+
"5:4",
|
|
1104
|
+
"3:4",
|
|
1105
|
+
"4:3",
|
|
1106
|
+
"9:16",
|
|
1107
|
+
"9:21"
|
|
1108
|
+
],
|
|
1109
|
+
"title": "aspect_ratio",
|
|
1110
|
+
"type": "string"
|
|
1111
|
+
},
|
|
1094
1112
|
"HTTPValidationError": {
|
|
1095
1113
|
"properties": {
|
|
1096
1114
|
"detail": {
|
|
@@ -1104,6 +1122,18 @@
|
|
|
1104
1122
|
"title": "HTTPValidationError",
|
|
1105
1123
|
"type": "object"
|
|
1106
1124
|
},
|
|
1125
|
+
"megapixels": {
|
|
1126
|
+
"description": "An enumeration.",
|
|
1127
|
+
"enum": ["1", "0.25"],
|
|
1128
|
+
"title": "megapixels",
|
|
1129
|
+
"type": "string"
|
|
1130
|
+
},
|
|
1131
|
+
"output_format": {
|
|
1132
|
+
"description": "An enumeration.",
|
|
1133
|
+
"enum": ["webp", "jpg", "png"],
|
|
1134
|
+
"title": "output_format",
|
|
1135
|
+
"type": "string"
|
|
1136
|
+
},
|
|
1107
1137
|
"PredictionRequest": {
|
|
1108
1138
|
"properties": {
|
|
1109
1139
|
"context": {
|
|
@@ -1255,36 +1285,6 @@
|
|
|
1255
1285
|
"enum": ["start", "output", "logs", "completed"],
|
|
1256
1286
|
"title": "WebhookEvent",
|
|
1257
1287
|
"type": "string"
|
|
1258
|
-
},
|
|
1259
|
-
"aspect_ratio": {
|
|
1260
|
-
"description": "An enumeration.",
|
|
1261
|
-
"enum": [
|
|
1262
|
-
"1:1",
|
|
1263
|
-
"16:9",
|
|
1264
|
-
"21:9",
|
|
1265
|
-
"3:2",
|
|
1266
|
-
"2:3",
|
|
1267
|
-
"4:5",
|
|
1268
|
-
"5:4",
|
|
1269
|
-
"3:4",
|
|
1270
|
-
"4:3",
|
|
1271
|
-
"9:16",
|
|
1272
|
-
"9:21"
|
|
1273
|
-
],
|
|
1274
|
-
"title": "aspect_ratio",
|
|
1275
|
-
"type": "string"
|
|
1276
|
-
},
|
|
1277
|
-
"megapixels": {
|
|
1278
|
-
"description": "An enumeration.",
|
|
1279
|
-
"enum": ["1", "0.25"],
|
|
1280
|
-
"title": "megapixels",
|
|
1281
|
-
"type": "string"
|
|
1282
|
-
},
|
|
1283
|
-
"output_format": {
|
|
1284
|
-
"description": "An enumeration.",
|
|
1285
|
-
"enum": ["webp", "jpg", "png"],
|
|
1286
|
-
"title": "output_format",
|
|
1287
|
-
"type": "string"
|
|
1288
1288
|
}
|
|
1289
1289
|
},
|
|
1290
1290
|
"coverImageUrl": "https://tjzk.replicate.delivery/models_models_featured_image/67c990ba-bb67-4355-822f-2bd8c42b2f0d/flux-schnell.webp",
|
|
@@ -1394,6 +1394,24 @@
|
|
|
1394
1394
|
{
|
|
1395
1395
|
"category": "image",
|
|
1396
1396
|
"componentSchemas": {
|
|
1397
|
+
"aspect_ratio": {
|
|
1398
|
+
"description": "An enumeration.",
|
|
1399
|
+
"enum": [
|
|
1400
|
+
"1:1",
|
|
1401
|
+
"16:9",
|
|
1402
|
+
"21:9",
|
|
1403
|
+
"3:2",
|
|
1404
|
+
"2:3",
|
|
1405
|
+
"4:5",
|
|
1406
|
+
"5:4",
|
|
1407
|
+
"3:4",
|
|
1408
|
+
"4:3",
|
|
1409
|
+
"9:16",
|
|
1410
|
+
"9:21"
|
|
1411
|
+
],
|
|
1412
|
+
"title": "aspect_ratio",
|
|
1413
|
+
"type": "string"
|
|
1414
|
+
},
|
|
1397
1415
|
"HTTPValidationError": {
|
|
1398
1416
|
"properties": {
|
|
1399
1417
|
"detail": {
|
|
@@ -1407,6 +1425,18 @@
|
|
|
1407
1425
|
"title": "HTTPValidationError",
|
|
1408
1426
|
"type": "object"
|
|
1409
1427
|
},
|
|
1428
|
+
"megapixels": {
|
|
1429
|
+
"description": "An enumeration.",
|
|
1430
|
+
"enum": ["1", "0.25"],
|
|
1431
|
+
"title": "megapixels",
|
|
1432
|
+
"type": "string"
|
|
1433
|
+
},
|
|
1434
|
+
"output_format": {
|
|
1435
|
+
"description": "An enumeration.",
|
|
1436
|
+
"enum": ["webp", "jpg", "png"],
|
|
1437
|
+
"title": "output_format",
|
|
1438
|
+
"type": "string"
|
|
1439
|
+
},
|
|
1410
1440
|
"PredictionRequest": {
|
|
1411
1441
|
"properties": {
|
|
1412
1442
|
"context": {
|
|
@@ -1558,36 +1588,6 @@
|
|
|
1558
1588
|
"enum": ["start", "output", "logs", "completed"],
|
|
1559
1589
|
"title": "WebhookEvent",
|
|
1560
1590
|
"type": "string"
|
|
1561
|
-
},
|
|
1562
|
-
"aspect_ratio": {
|
|
1563
|
-
"description": "An enumeration.",
|
|
1564
|
-
"enum": [
|
|
1565
|
-
"1:1",
|
|
1566
|
-
"16:9",
|
|
1567
|
-
"21:9",
|
|
1568
|
-
"3:2",
|
|
1569
|
-
"2:3",
|
|
1570
|
-
"4:5",
|
|
1571
|
-
"5:4",
|
|
1572
|
-
"3:4",
|
|
1573
|
-
"4:3",
|
|
1574
|
-
"9:16",
|
|
1575
|
-
"9:21"
|
|
1576
|
-
],
|
|
1577
|
-
"title": "aspect_ratio",
|
|
1578
|
-
"type": "string"
|
|
1579
|
-
},
|
|
1580
|
-
"megapixels": {
|
|
1581
|
-
"description": "An enumeration.",
|
|
1582
|
-
"enum": ["1", "0.25"],
|
|
1583
|
-
"title": "megapixels",
|
|
1584
|
-
"type": "string"
|
|
1585
|
-
},
|
|
1586
|
-
"output_format": {
|
|
1587
|
-
"description": "An enumeration.",
|
|
1588
|
-
"enum": ["webp", "jpg", "png"],
|
|
1589
|
-
"title": "output_format",
|
|
1590
|
-
"type": "string"
|
|
1591
1591
|
}
|
|
1592
1592
|
},
|
|
1593
1593
|
"coverImageUrl": "https://tjzk.replicate.delivery/models_models_featured_image/cb4203e5-9ece-42e7-b326-98ff3fa35c3a/Replicate_Prediction_15.webp",
|
|
@@ -1722,6 +1722,23 @@
|
|
|
1722
1722
|
{
|
|
1723
1723
|
"category": "image",
|
|
1724
1724
|
"componentSchemas": {
|
|
1725
|
+
"aspect_ratio": {
|
|
1726
|
+
"description": "An enumeration.",
|
|
1727
|
+
"enum": [
|
|
1728
|
+
"custom",
|
|
1729
|
+
"1:1",
|
|
1730
|
+
"16:9",
|
|
1731
|
+
"3:2",
|
|
1732
|
+
"2:3",
|
|
1733
|
+
"4:5",
|
|
1734
|
+
"5:4",
|
|
1735
|
+
"9:16",
|
|
1736
|
+
"3:4",
|
|
1737
|
+
"4:3"
|
|
1738
|
+
],
|
|
1739
|
+
"title": "aspect_ratio",
|
|
1740
|
+
"type": "string"
|
|
1741
|
+
},
|
|
1725
1742
|
"HTTPValidationError": {
|
|
1726
1743
|
"properties": {
|
|
1727
1744
|
"detail": {
|
|
@@ -1735,6 +1752,12 @@
|
|
|
1735
1752
|
"title": "HTTPValidationError",
|
|
1736
1753
|
"type": "object"
|
|
1737
1754
|
},
|
|
1755
|
+
"output_format": {
|
|
1756
|
+
"description": "An enumeration.",
|
|
1757
|
+
"enum": ["webp", "jpg", "png"],
|
|
1758
|
+
"title": "output_format",
|
|
1759
|
+
"type": "string"
|
|
1760
|
+
},
|
|
1738
1761
|
"PredictionRequest": {
|
|
1739
1762
|
"properties": {
|
|
1740
1763
|
"context": {
|
|
@@ -1872,42 +1895,19 @@
|
|
|
1872
1895
|
"title": "Message",
|
|
1873
1896
|
"type": "string"
|
|
1874
1897
|
},
|
|
1875
|
-
"type": {
|
|
1876
|
-
"title": "Error Type",
|
|
1877
|
-
"type": "string"
|
|
1878
|
-
}
|
|
1879
|
-
},
|
|
1880
|
-
"required": ["loc", "msg", "type"],
|
|
1881
|
-
"title": "ValidationError",
|
|
1882
|
-
"type": "object"
|
|
1883
|
-
},
|
|
1884
|
-
"WebhookEvent": {
|
|
1885
|
-
"description": "An enumeration.",
|
|
1886
|
-
"enum": ["start", "output", "logs", "completed"],
|
|
1887
|
-
"title": "WebhookEvent",
|
|
1888
|
-
"type": "string"
|
|
1889
|
-
},
|
|
1890
|
-
"aspect_ratio": {
|
|
1891
|
-
"description": "An enumeration.",
|
|
1892
|
-
"enum": [
|
|
1893
|
-
"custom",
|
|
1894
|
-
"1:1",
|
|
1895
|
-
"16:9",
|
|
1896
|
-
"3:2",
|
|
1897
|
-
"2:3",
|
|
1898
|
-
"4:5",
|
|
1899
|
-
"5:4",
|
|
1900
|
-
"9:16",
|
|
1901
|
-
"3:4",
|
|
1902
|
-
"4:3"
|
|
1903
|
-
],
|
|
1904
|
-
"title": "aspect_ratio",
|
|
1905
|
-
"type": "string"
|
|
1898
|
+
"type": {
|
|
1899
|
+
"title": "Error Type",
|
|
1900
|
+
"type": "string"
|
|
1901
|
+
}
|
|
1902
|
+
},
|
|
1903
|
+
"required": ["loc", "msg", "type"],
|
|
1904
|
+
"title": "ValidationError",
|
|
1905
|
+
"type": "object"
|
|
1906
1906
|
},
|
|
1907
|
-
"
|
|
1907
|
+
"WebhookEvent": {
|
|
1908
1908
|
"description": "An enumeration.",
|
|
1909
|
-
"enum": ["
|
|
1910
|
-
"title": "
|
|
1909
|
+
"enum": ["start", "output", "logs", "completed"],
|
|
1910
|
+
"title": "WebhookEvent",
|
|
1911
1911
|
"type": "string"
|
|
1912
1912
|
}
|
|
1913
1913
|
},
|
|
@@ -2004,6 +2004,25 @@
|
|
|
2004
2004
|
{
|
|
2005
2005
|
"category": "image",
|
|
2006
2006
|
"componentSchemas": {
|
|
2007
|
+
"aspect_ratio": {
|
|
2008
|
+
"description": "An enumeration.",
|
|
2009
|
+
"enum": [
|
|
2010
|
+
"1:1",
|
|
2011
|
+
"16:9",
|
|
2012
|
+
"21:9",
|
|
2013
|
+
"3:2",
|
|
2014
|
+
"2:3",
|
|
2015
|
+
"4:5",
|
|
2016
|
+
"5:4",
|
|
2017
|
+
"3:4",
|
|
2018
|
+
"4:3",
|
|
2019
|
+
"9:16",
|
|
2020
|
+
"9:21",
|
|
2021
|
+
"match_input_image"
|
|
2022
|
+
],
|
|
2023
|
+
"title": "aspect_ratio",
|
|
2024
|
+
"type": "string"
|
|
2025
|
+
},
|
|
2007
2026
|
"HTTPValidationError": {
|
|
2008
2027
|
"properties": {
|
|
2009
2028
|
"detail": {
|
|
@@ -2017,6 +2036,12 @@
|
|
|
2017
2036
|
"title": "HTTPValidationError",
|
|
2018
2037
|
"type": "object"
|
|
2019
2038
|
},
|
|
2039
|
+
"output_format": {
|
|
2040
|
+
"description": "An enumeration.",
|
|
2041
|
+
"enum": ["webp", "jpg", "png"],
|
|
2042
|
+
"title": "output_format",
|
|
2043
|
+
"type": "string"
|
|
2044
|
+
},
|
|
2020
2045
|
"PredictionRequest": {
|
|
2021
2046
|
"properties": {
|
|
2022
2047
|
"context": {
|
|
@@ -2168,31 +2193,6 @@
|
|
|
2168
2193
|
"enum": ["start", "output", "logs", "completed"],
|
|
2169
2194
|
"title": "WebhookEvent",
|
|
2170
2195
|
"type": "string"
|
|
2171
|
-
},
|
|
2172
|
-
"aspect_ratio": {
|
|
2173
|
-
"description": "An enumeration.",
|
|
2174
|
-
"enum": [
|
|
2175
|
-
"1:1",
|
|
2176
|
-
"16:9",
|
|
2177
|
-
"21:9",
|
|
2178
|
-
"3:2",
|
|
2179
|
-
"2:3",
|
|
2180
|
-
"4:5",
|
|
2181
|
-
"5:4",
|
|
2182
|
-
"3:4",
|
|
2183
|
-
"4:3",
|
|
2184
|
-
"9:16",
|
|
2185
|
-
"9:21",
|
|
2186
|
-
"match_input_image"
|
|
2187
|
-
],
|
|
2188
|
-
"title": "aspect_ratio",
|
|
2189
|
-
"type": "string"
|
|
2190
|
-
},
|
|
2191
|
-
"output_format": {
|
|
2192
|
-
"description": "An enumeration.",
|
|
2193
|
-
"enum": ["webp", "jpg", "png"],
|
|
2194
|
-
"title": "output_format",
|
|
2195
|
-
"type": "string"
|
|
2196
2196
|
}
|
|
2197
2197
|
},
|
|
2198
2198
|
"coverImageUrl": "https://tjzk.replicate.delivery/models_models_featured_image/0bbd6c48-2660-403b-86de-6ab9a87ffd64/v8tvckcb6hrm80cqnk798w47g0.webp",
|
|
@@ -2289,6 +2289,18 @@
|
|
|
2289
2289
|
{
|
|
2290
2290
|
"category": "video",
|
|
2291
2291
|
"componentSchemas": {
|
|
2292
|
+
"aspect_ratio": {
|
|
2293
|
+
"description": "An enumeration.",
|
|
2294
|
+
"enum": ["16:9", "9:16"],
|
|
2295
|
+
"title": "aspect_ratio",
|
|
2296
|
+
"type": "string"
|
|
2297
|
+
},
|
|
2298
|
+
"duration": {
|
|
2299
|
+
"description": "An enumeration.",
|
|
2300
|
+
"enum": [4, 6, 8],
|
|
2301
|
+
"title": "duration",
|
|
2302
|
+
"type": "integer"
|
|
2303
|
+
},
|
|
2292
2304
|
"HTTPValidationError": {
|
|
2293
2305
|
"properties": {
|
|
2294
2306
|
"detail": {
|
|
@@ -2413,6 +2425,12 @@
|
|
|
2413
2425
|
"title": "PredictionResponse",
|
|
2414
2426
|
"type": "object"
|
|
2415
2427
|
},
|
|
2428
|
+
"resolution": {
|
|
2429
|
+
"description": "An enumeration.",
|
|
2430
|
+
"enum": ["720p", "1080p"],
|
|
2431
|
+
"title": "resolution",
|
|
2432
|
+
"type": "string"
|
|
2433
|
+
},
|
|
2416
2434
|
"Status": {
|
|
2417
2435
|
"description": "An enumeration.",
|
|
2418
2436
|
"enum": ["starting", "processing", "succeeded", "canceled", "failed"],
|
|
@@ -2453,24 +2471,6 @@
|
|
|
2453
2471
|
"enum": ["start", "output", "logs", "completed"],
|
|
2454
2472
|
"title": "WebhookEvent",
|
|
2455
2473
|
"type": "string"
|
|
2456
|
-
},
|
|
2457
|
-
"aspect_ratio": {
|
|
2458
|
-
"description": "An enumeration.",
|
|
2459
|
-
"enum": ["16:9", "9:16"],
|
|
2460
|
-
"title": "aspect_ratio",
|
|
2461
|
-
"type": "string"
|
|
2462
|
-
},
|
|
2463
|
-
"duration": {
|
|
2464
|
-
"description": "An enumeration.",
|
|
2465
|
-
"enum": [4, 6, 8],
|
|
2466
|
-
"title": "duration",
|
|
2467
|
-
"type": "integer"
|
|
2468
|
-
},
|
|
2469
|
-
"resolution": {
|
|
2470
|
-
"description": "An enumeration.",
|
|
2471
|
-
"enum": ["720p", "1080p"],
|
|
2472
|
-
"title": "resolution",
|
|
2473
|
-
"type": "string"
|
|
2474
2474
|
}
|
|
2475
2475
|
},
|
|
2476
2476
|
"coverImageUrl": "https://tjzk.replicate.delivery/models_models_featured_image/8a4d195c-cdd7-4544-9ee4-d9f67bb9017d/replicate-prediction-9y7jqn5by.mp4",
|
|
@@ -2567,6 +2567,18 @@
|
|
|
2567
2567
|
{
|
|
2568
2568
|
"category": "video",
|
|
2569
2569
|
"componentSchemas": {
|
|
2570
|
+
"aspect_ratio": {
|
|
2571
|
+
"description": "An enumeration.",
|
|
2572
|
+
"enum": ["16:9", "9:16"],
|
|
2573
|
+
"title": "aspect_ratio",
|
|
2574
|
+
"type": "string"
|
|
2575
|
+
},
|
|
2576
|
+
"duration": {
|
|
2577
|
+
"description": "An enumeration.",
|
|
2578
|
+
"enum": [4, 6, 8],
|
|
2579
|
+
"title": "duration",
|
|
2580
|
+
"type": "integer"
|
|
2581
|
+
},
|
|
2570
2582
|
"HTTPValidationError": {
|
|
2571
2583
|
"properties": {
|
|
2572
2584
|
"detail": {
|
|
@@ -2691,6 +2703,12 @@
|
|
|
2691
2703
|
"title": "PredictionResponse",
|
|
2692
2704
|
"type": "object"
|
|
2693
2705
|
},
|
|
2706
|
+
"resolution": {
|
|
2707
|
+
"description": "An enumeration.",
|
|
2708
|
+
"enum": ["720p", "1080p"],
|
|
2709
|
+
"title": "resolution",
|
|
2710
|
+
"type": "string"
|
|
2711
|
+
},
|
|
2694
2712
|
"Status": {
|
|
2695
2713
|
"description": "An enumeration.",
|
|
2696
2714
|
"enum": ["starting", "processing", "succeeded", "canceled", "failed"],
|
|
@@ -2731,24 +2749,6 @@
|
|
|
2731
2749
|
"enum": ["start", "output", "logs", "completed"],
|
|
2732
2750
|
"title": "WebhookEvent",
|
|
2733
2751
|
"type": "string"
|
|
2734
|
-
},
|
|
2735
|
-
"aspect_ratio": {
|
|
2736
|
-
"description": "An enumeration.",
|
|
2737
|
-
"enum": ["16:9", "9:16"],
|
|
2738
|
-
"title": "aspect_ratio",
|
|
2739
|
-
"type": "string"
|
|
2740
|
-
},
|
|
2741
|
-
"duration": {
|
|
2742
|
-
"description": "An enumeration.",
|
|
2743
|
-
"enum": [4, 6, 8],
|
|
2744
|
-
"title": "duration",
|
|
2745
|
-
"type": "integer"
|
|
2746
|
-
},
|
|
2747
|
-
"resolution": {
|
|
2748
|
-
"description": "An enumeration.",
|
|
2749
|
-
"enum": ["720p", "1080p"],
|
|
2750
|
-
"title": "resolution",
|
|
2751
|
-
"type": "string"
|
|
2752
2752
|
}
|
|
2753
2753
|
},
|
|
2754
2754
|
"coverImageUrl": "https://tjzk.replicate.delivery/models_models_featured_image/7600d853-2847-4c46-afc9-faef04fea2c5/veo3.1-sm.mp4",
|
|
@@ -2856,6 +2856,18 @@
|
|
|
2856
2856
|
{
|
|
2857
2857
|
"category": "video",
|
|
2858
2858
|
"componentSchemas": {
|
|
2859
|
+
"aspect_ratio": {
|
|
2860
|
+
"description": "An enumeration.",
|
|
2861
|
+
"enum": ["16:9", "9:16", "1:1"],
|
|
2862
|
+
"title": "aspect_ratio",
|
|
2863
|
+
"type": "string"
|
|
2864
|
+
},
|
|
2865
|
+
"duration": {
|
|
2866
|
+
"description": "An enumeration.",
|
|
2867
|
+
"enum": [5, 10],
|
|
2868
|
+
"title": "duration",
|
|
2869
|
+
"type": "integer"
|
|
2870
|
+
},
|
|
2859
2871
|
"HTTPValidationError": {
|
|
2860
2872
|
"properties": {
|
|
2861
2873
|
"detail": {
|
|
@@ -3020,18 +3032,6 @@
|
|
|
3020
3032
|
"enum": ["start", "output", "logs", "completed"],
|
|
3021
3033
|
"title": "WebhookEvent",
|
|
3022
3034
|
"type": "string"
|
|
3023
|
-
},
|
|
3024
|
-
"aspect_ratio": {
|
|
3025
|
-
"description": "An enumeration.",
|
|
3026
|
-
"enum": ["16:9", "9:16", "1:1"],
|
|
3027
|
-
"title": "aspect_ratio",
|
|
3028
|
-
"type": "string"
|
|
3029
|
-
},
|
|
3030
|
-
"duration": {
|
|
3031
|
-
"description": "An enumeration.",
|
|
3032
|
-
"enum": [5, 10],
|
|
3033
|
-
"title": "duration",
|
|
3034
|
-
"type": "integer"
|
|
3035
3035
|
}
|
|
3036
3036
|
},
|
|
3037
3037
|
"coverImageUrl": "https://replicate.delivery/xezq/17c3JG1SzH6NCduMiKp1Cxyqvpad0GXRf507Pqq5GOqNsZsKA/tmpg4w3kyjz.mp4",
|
|
@@ -3111,6 +3111,12 @@
|
|
|
3111
3111
|
{
|
|
3112
3112
|
"category": "video",
|
|
3113
3113
|
"componentSchemas": {
|
|
3114
|
+
"character_orientation": {
|
|
3115
|
+
"description": "An enumeration.",
|
|
3116
|
+
"enum": ["image", "video"],
|
|
3117
|
+
"title": "character_orientation",
|
|
3118
|
+
"type": "string"
|
|
3119
|
+
},
|
|
3114
3120
|
"HTTPValidationError": {
|
|
3115
3121
|
"properties": {
|
|
3116
3122
|
"detail": {
|
|
@@ -3124,6 +3130,12 @@
|
|
|
3124
3130
|
"title": "HTTPValidationError",
|
|
3125
3131
|
"type": "object"
|
|
3126
3132
|
},
|
|
3133
|
+
"mode": {
|
|
3134
|
+
"description": "An enumeration.",
|
|
3135
|
+
"enum": ["std", "pro"],
|
|
3136
|
+
"title": "mode",
|
|
3137
|
+
"type": "string"
|
|
3138
|
+
},
|
|
3127
3139
|
"PredictionRequest": {
|
|
3128
3140
|
"properties": {
|
|
3129
3141
|
"context": {
|
|
@@ -3275,18 +3287,6 @@
|
|
|
3275
3287
|
"enum": ["start", "output", "logs", "completed"],
|
|
3276
3288
|
"title": "WebhookEvent",
|
|
3277
3289
|
"type": "string"
|
|
3278
|
-
},
|
|
3279
|
-
"character_orientation": {
|
|
3280
|
-
"description": "An enumeration.",
|
|
3281
|
-
"enum": ["image", "video"],
|
|
3282
|
-
"title": "character_orientation",
|
|
3283
|
-
"type": "string"
|
|
3284
|
-
},
|
|
3285
|
-
"mode": {
|
|
3286
|
-
"description": "An enumeration.",
|
|
3287
|
-
"enum": ["std", "pro"],
|
|
3288
|
-
"title": "mode",
|
|
3289
|
-
"type": "string"
|
|
3290
3290
|
}
|
|
3291
3291
|
},
|
|
3292
3292
|
"coverImageUrl": "https://replicate.delivery/xezq/xNPHY8OYsDbvDpAI22C9pa0FgDJcdV3ZzX2HBUj8nkAygcdF/tmp2jsjo2ed.mp4",
|
|
@@ -3568,6 +3568,12 @@
|
|
|
3568
3568
|
{
|
|
3569
3569
|
"category": "video",
|
|
3570
3570
|
"componentSchemas": {
|
|
3571
|
+
"aspect_ratio": {
|
|
3572
|
+
"description": "An enumeration.",
|
|
3573
|
+
"enum": ["1:1", "3:4", "4:3", "9:16", "16:9", "9:21", "21:9"],
|
|
3574
|
+
"title": "aspect_ratio",
|
|
3575
|
+
"type": "string"
|
|
3576
|
+
},
|
|
3571
3577
|
"HTTPValidationError": {
|
|
3572
3578
|
"properties": {
|
|
3573
3579
|
"detail": {
|
|
@@ -3732,12 +3738,6 @@
|
|
|
3732
3738
|
"enum": ["start", "output", "logs", "completed"],
|
|
3733
3739
|
"title": "WebhookEvent",
|
|
3734
3740
|
"type": "string"
|
|
3735
|
-
},
|
|
3736
|
-
"aspect_ratio": {
|
|
3737
|
-
"description": "An enumeration.",
|
|
3738
|
-
"enum": ["1:1", "3:4", "4:3", "9:16", "16:9", "9:21", "21:9"],
|
|
3739
|
-
"title": "aspect_ratio",
|
|
3740
|
-
"type": "string"
|
|
3741
3741
|
}
|
|
3742
3742
|
},
|
|
3743
3743
|
"coverImageUrl": "https://tjzk.replicate.delivery/models_models_featured_image/496f8ab2-3a87-4fe7-9867-5572460c2b5e/ray-cover.webp",
|
|
@@ -4083,6 +4083,12 @@
|
|
|
4083
4083
|
{
|
|
4084
4084
|
"category": "reframe",
|
|
4085
4085
|
"componentSchemas": {
|
|
4086
|
+
"aspect_ratio": {
|
|
4087
|
+
"description": "An enumeration.",
|
|
4088
|
+
"enum": ["1:1", "3:4", "4:3", "9:16", "16:9", "9:21", "21:9"],
|
|
4089
|
+
"title": "aspect_ratio",
|
|
4090
|
+
"type": "string"
|
|
4091
|
+
},
|
|
4086
4092
|
"HTTPValidationError": {
|
|
4087
4093
|
"properties": {
|
|
4088
4094
|
"detail": {
|
|
@@ -4096,6 +4102,12 @@
|
|
|
4096
4102
|
"title": "HTTPValidationError",
|
|
4097
4103
|
"type": "object"
|
|
4098
4104
|
},
|
|
4105
|
+
"model": {
|
|
4106
|
+
"description": "An enumeration.",
|
|
4107
|
+
"enum": ["photon-flash-1", "photon-1"],
|
|
4108
|
+
"title": "model",
|
|
4109
|
+
"type": "string"
|
|
4110
|
+
},
|
|
4099
4111
|
"PredictionRequest": {
|
|
4100
4112
|
"properties": {
|
|
4101
4113
|
"context": {
|
|
@@ -4247,18 +4259,6 @@
|
|
|
4247
4259
|
"enum": ["start", "output", "logs", "completed"],
|
|
4248
4260
|
"title": "WebhookEvent",
|
|
4249
4261
|
"type": "string"
|
|
4250
|
-
},
|
|
4251
|
-
"aspect_ratio": {
|
|
4252
|
-
"description": "An enumeration.",
|
|
4253
|
-
"enum": ["1:1", "3:4", "4:3", "9:16", "16:9", "9:21", "21:9"],
|
|
4254
|
-
"title": "aspect_ratio",
|
|
4255
|
-
"type": "string"
|
|
4256
|
-
},
|
|
4257
|
-
"model": {
|
|
4258
|
-
"description": "An enumeration.",
|
|
4259
|
-
"enum": ["photon-flash-1", "photon-1"],
|
|
4260
|
-
"title": "model",
|
|
4261
|
-
"type": "string"
|
|
4262
4262
|
}
|
|
4263
4263
|
},
|
|
4264
4264
|
"coverImageUrl": "https://tjzk.replicate.delivery/models_models_cover_image/6718c188-d6a3-4572-953c-bd5455c359ca/tmp5_8g7kz2.png",
|
|
@@ -4348,6 +4348,12 @@
|
|
|
4348
4348
|
{
|
|
4349
4349
|
"category": "reframe",
|
|
4350
4350
|
"componentSchemas": {
|
|
4351
|
+
"aspect_ratio": {
|
|
4352
|
+
"description": "An enumeration.",
|
|
4353
|
+
"enum": ["1:1", "3:4", "4:3", "9:16", "16:9", "9:21", "21:9"],
|
|
4354
|
+
"title": "aspect_ratio",
|
|
4355
|
+
"type": "string"
|
|
4356
|
+
},
|
|
4351
4357
|
"HTTPValidationError": {
|
|
4352
4358
|
"properties": {
|
|
4353
4359
|
"detail": {
|
|
@@ -4512,12 +4518,6 @@
|
|
|
4512
4518
|
"enum": ["start", "output", "logs", "completed"],
|
|
4513
4519
|
"title": "WebhookEvent",
|
|
4514
4520
|
"type": "string"
|
|
4515
|
-
},
|
|
4516
|
-
"aspect_ratio": {
|
|
4517
|
-
"description": "An enumeration.",
|
|
4518
|
-
"enum": ["1:1", "3:4", "4:3", "9:16", "16:9", "9:21", "21:9"],
|
|
4519
|
-
"title": "aspect_ratio",
|
|
4520
|
-
"type": "string"
|
|
4521
4521
|
}
|
|
4522
4522
|
},
|
|
4523
4523
|
"coverImageUrl": "https://tjzk.replicate.delivery/models_models_featured_image/a3d9c60a-0a0b-4907-980d-275483b78a45/replicate-prediction-j6fp3jym.webp",
|
|
@@ -4727,6 +4727,12 @@
|
|
|
4727
4727
|
"title": "Status",
|
|
4728
4728
|
"type": "string"
|
|
4729
4729
|
},
|
|
4730
|
+
"sync_mode": {
|
|
4731
|
+
"description": "An enumeration.",
|
|
4732
|
+
"enum": ["loop", "bounce", "cut_off", "silence", "remap"],
|
|
4733
|
+
"title": "sync_mode",
|
|
4734
|
+
"type": "string"
|
|
4735
|
+
},
|
|
4730
4736
|
"ValidationError": {
|
|
4731
4737
|
"properties": {
|
|
4732
4738
|
"loc": {
|
|
@@ -4761,12 +4767,6 @@
|
|
|
4761
4767
|
"enum": ["start", "output", "logs", "completed"],
|
|
4762
4768
|
"title": "WebhookEvent",
|
|
4763
4769
|
"type": "string"
|
|
4764
|
-
},
|
|
4765
|
-
"sync_mode": {
|
|
4766
|
-
"description": "An enumeration.",
|
|
4767
|
-
"enum": ["loop", "bounce", "cut_off", "silence", "remap"],
|
|
4768
|
-
"title": "sync_mode",
|
|
4769
|
-
"type": "string"
|
|
4770
4770
|
}
|
|
4771
4771
|
},
|
|
4772
4772
|
"coverImageUrl": "https://replicate.delivery/xezq/wJSCHDW1zvqcBtInTLFK9rW6N52db0y5FImHrJlyjYi12gQF/tmpr6cxkcvr.mp4",
|
|
@@ -4956,6 +4956,12 @@
|
|
|
4956
4956
|
"title": "Status",
|
|
4957
4957
|
"type": "string"
|
|
4958
4958
|
},
|
|
4959
|
+
"sync_mode": {
|
|
4960
|
+
"description": "An enumeration.",
|
|
4961
|
+
"enum": ["loop", "bounce", "cut_off", "silence", "remap"],
|
|
4962
|
+
"title": "sync_mode",
|
|
4963
|
+
"type": "string"
|
|
4964
|
+
},
|
|
4959
4965
|
"ValidationError": {
|
|
4960
4966
|
"properties": {
|
|
4961
4967
|
"loc": {
|
|
@@ -4990,12 +4996,6 @@
|
|
|
4990
4996
|
"enum": ["start", "output", "logs", "completed"],
|
|
4991
4997
|
"title": "WebhookEvent",
|
|
4992
4998
|
"type": "string"
|
|
4993
|
-
},
|
|
4994
|
-
"sync_mode": {
|
|
4995
|
-
"description": "An enumeration.",
|
|
4996
|
-
"enum": ["loop", "bounce", "cut_off", "silence", "remap"],
|
|
4997
|
-
"title": "sync_mode",
|
|
4998
|
-
"type": "string"
|
|
4999
4999
|
}
|
|
5000
5000
|
},
|
|
5001
5001
|
"coverImageUrl": "https://replicate.delivery/xezq/boKOqiuyz9omClm432RN1vzB3wejNr36em4lmJ2SC6If6KnqA/tmp47bgpsi_.mp4",
|