mulmocast 0.1.0 → 0.1.1
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 +10 -0
- package/assets/templates/ghibli_shorts.json +1 -1
- package/lib/actions/images.js +2 -18
- package/lib/actions/movie.js +80 -91
- package/lib/agents/add_bgm_agent.js +15 -2
- package/lib/agents/combine_audio_files_agent.js +3 -3
- package/lib/types/schema.d.ts +94 -74
- package/lib/types/schema.js +21 -7
- package/lib/types/type.d.ts +3 -1
- package/lib/utils/context.d.ts +2 -2
- package/lib/utils/file.js +8 -0
- package/lib/utils/preprocess.d.ts +1 -1
- package/lib/utils/utils.d.ts +1 -0
- package/lib/utils/utils.js +14 -0
- package/package.json +12 -12
- package/scripts/templates/voice_over.json +60 -0
package/lib/types/schema.d.ts
CHANGED
|
@@ -48,7 +48,7 @@ export declare const speechOptionsSchema: z.ZodObject<{
|
|
|
48
48
|
speed?: number | undefined;
|
|
49
49
|
instruction?: string | undefined;
|
|
50
50
|
}>;
|
|
51
|
-
export declare const text2SpeechProviderSchema: z.ZodDefault<z.
|
|
51
|
+
export declare const text2SpeechProviderSchema: z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>;
|
|
52
52
|
export declare const speakerDataSchema: z.ZodObject<{
|
|
53
53
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
54
54
|
voiceId: z.ZodString;
|
|
@@ -62,7 +62,7 @@ export declare const speakerDataSchema: z.ZodObject<{
|
|
|
62
62
|
speed?: number | undefined;
|
|
63
63
|
instruction?: string | undefined;
|
|
64
64
|
}>>;
|
|
65
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
65
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>>;
|
|
66
66
|
}, "strict", z.ZodTypeAny, {
|
|
67
67
|
voiceId: string;
|
|
68
68
|
displayName?: Record<string, string> | undefined;
|
|
@@ -93,7 +93,7 @@ export declare const speakerDictionarySchema: z.ZodRecord<z.ZodString, z.ZodObje
|
|
|
93
93
|
speed?: number | undefined;
|
|
94
94
|
instruction?: string | undefined;
|
|
95
95
|
}>>;
|
|
96
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
96
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>>;
|
|
97
97
|
}, "strict", z.ZodTypeAny, {
|
|
98
98
|
voiceId: string;
|
|
99
99
|
displayName?: Record<string, string> | undefined;
|
|
@@ -985,10 +985,10 @@ export declare const mulmoFillOptionSchema: z.ZodObject<{
|
|
|
985
985
|
}, {
|
|
986
986
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
987
987
|
}>;
|
|
988
|
-
export declare const text2ImageProviderSchema: z.ZodDefault<z.
|
|
988
|
+
export declare const text2ImageProviderSchema: z.ZodDefault<z.ZodEnum<["openai", "google"]>>;
|
|
989
989
|
export declare const mulmoOpenAIImageModelSchema: z.ZodObject<{
|
|
990
990
|
provider: z.ZodLiteral<"openai">;
|
|
991
|
-
model: z.ZodOptional<z.
|
|
991
|
+
model: z.ZodOptional<z.ZodEnum<["dall-e-3", "gpt-image-1"]>>;
|
|
992
992
|
}, "strict", z.ZodTypeAny, {
|
|
993
993
|
provider: "openai";
|
|
994
994
|
model?: "dall-e-3" | "gpt-image-1" | undefined;
|
|
@@ -998,7 +998,7 @@ export declare const mulmoOpenAIImageModelSchema: z.ZodObject<{
|
|
|
998
998
|
}>;
|
|
999
999
|
export declare const mulmoGoogleImageModelSchema: z.ZodObject<{
|
|
1000
1000
|
provider: z.ZodLiteral<"google">;
|
|
1001
|
-
model: z.ZodOptional<z.
|
|
1001
|
+
model: z.ZodOptional<z.ZodEnum<["imagen-3.0-fast-generate-001", "imagen-3.0-generate-002", "imagen-3.0-capability-001"]>>;
|
|
1002
1002
|
}, "strict", z.ZodTypeAny, {
|
|
1003
1003
|
provider: "google";
|
|
1004
1004
|
model?: "imagen-3.0-fast-generate-001" | "imagen-3.0-generate-002" | "imagen-3.0-capability-001" | undefined;
|
|
@@ -1007,7 +1007,7 @@ export declare const mulmoGoogleImageModelSchema: z.ZodObject<{
|
|
|
1007
1007
|
model?: "imagen-3.0-fast-generate-001" | "imagen-3.0-generate-002" | "imagen-3.0-capability-001" | undefined;
|
|
1008
1008
|
}>;
|
|
1009
1009
|
export declare const mulmoImageParamsSchema: z.ZodObject<{
|
|
1010
|
-
provider: z.ZodDefault<z.
|
|
1010
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "google"]>>;
|
|
1011
1011
|
model: z.ZodOptional<z.ZodString>;
|
|
1012
1012
|
style: z.ZodOptional<z.ZodString>;
|
|
1013
1013
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -1777,7 +1777,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1777
1777
|
}>]>>;
|
|
1778
1778
|
duration: z.ZodOptional<z.ZodNumber>;
|
|
1779
1779
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
1780
|
-
provider: z.ZodDefault<z.
|
|
1780
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "google"]>>;
|
|
1781
1781
|
model: z.ZodOptional<z.ZodString>;
|
|
1782
1782
|
style: z.ZodOptional<z.ZodString>;
|
|
1783
1783
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -2364,7 +2364,7 @@ export declare const mulmoCastCreditSchema: z.ZodObject<{
|
|
|
2364
2364
|
credit?: "closing" | undefined;
|
|
2365
2365
|
}>;
|
|
2366
2366
|
export declare const mulmoSpeechParamsSchema: z.ZodObject<{
|
|
2367
|
-
provider: z.ZodDefault<z.
|
|
2367
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>;
|
|
2368
2368
|
speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2369
2369
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2370
2370
|
voiceId: z.ZodString;
|
|
@@ -2378,7 +2378,7 @@ export declare const mulmoSpeechParamsSchema: z.ZodObject<{
|
|
|
2378
2378
|
speed?: number | undefined;
|
|
2379
2379
|
instruction?: string | undefined;
|
|
2380
2380
|
}>>;
|
|
2381
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
2381
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>>;
|
|
2382
2382
|
}, "strict", z.ZodTypeAny, {
|
|
2383
2383
|
voiceId: string;
|
|
2384
2384
|
displayName?: Record<string, string> | undefined;
|
|
@@ -2419,8 +2419,28 @@ export declare const mulmoSpeechParamsSchema: z.ZodObject<{
|
|
|
2419
2419
|
}>;
|
|
2420
2420
|
provider?: "openai" | "nijivoice" | "google" | "elevenlabs" | undefined;
|
|
2421
2421
|
}>;
|
|
2422
|
-
export declare const text2HtmlImageProviderSchema: z.ZodDefault<z.
|
|
2423
|
-
export declare const text2MovieProviderSchema: z.ZodDefault<z.
|
|
2422
|
+
export declare const text2HtmlImageProviderSchema: z.ZodDefault<z.ZodEnum<["openai", "anthropic"]>>;
|
|
2423
|
+
export declare const text2MovieProviderSchema: z.ZodDefault<z.ZodEnum<["google", "replicate"]>>;
|
|
2424
|
+
export declare const mulmoGoogleMovieModelSchema: z.ZodObject<{
|
|
2425
|
+
provider: z.ZodLiteral<"google">;
|
|
2426
|
+
model: z.ZodOptional<z.ZodEnum<["veo-2.0-generate-001"]>>;
|
|
2427
|
+
}, "strict", z.ZodTypeAny, {
|
|
2428
|
+
provider: "google";
|
|
2429
|
+
model?: "veo-2.0-generate-001" | undefined;
|
|
2430
|
+
}, {
|
|
2431
|
+
provider: "google";
|
|
2432
|
+
model?: "veo-2.0-generate-001" | undefined;
|
|
2433
|
+
}>;
|
|
2434
|
+
export declare const mulmoReplicateMovieModelSchema: z.ZodObject<{
|
|
2435
|
+
provider: z.ZodLiteral<"replicate">;
|
|
2436
|
+
model: z.ZodOptional<z.ZodEnum<["bytedance/seedance-1-lite", "kwaivgi/kling-v2.1", "google/veo-3"]>>;
|
|
2437
|
+
}, "strict", z.ZodTypeAny, {
|
|
2438
|
+
provider: "replicate";
|
|
2439
|
+
model?: "bytedance/seedance-1-lite" | "kwaivgi/kling-v2.1" | "google/veo-3" | undefined;
|
|
2440
|
+
}, {
|
|
2441
|
+
provider: "replicate";
|
|
2442
|
+
model?: "bytedance/seedance-1-lite" | "kwaivgi/kling-v2.1" | "google/veo-3" | undefined;
|
|
2443
|
+
}>;
|
|
2424
2444
|
export declare const mulmoTransitionSchema: z.ZodObject<{
|
|
2425
2445
|
type: z.ZodEnum<["fade", "slideout_left"]>;
|
|
2426
2446
|
duration: z.ZodDefault<z.ZodNumber>;
|
|
@@ -2432,7 +2452,7 @@ export declare const mulmoTransitionSchema: z.ZodObject<{
|
|
|
2432
2452
|
duration?: number | undefined;
|
|
2433
2453
|
}>;
|
|
2434
2454
|
export declare const mulmoMovieParamsSchema: z.ZodObject<{
|
|
2435
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
2455
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["google", "replicate"]>>>;
|
|
2436
2456
|
model: z.ZodOptional<z.ZodString>;
|
|
2437
2457
|
transition: z.ZodOptional<z.ZodObject<{
|
|
2438
2458
|
type: z.ZodEnum<["fade", "slideout_left"]>;
|
|
@@ -2452,7 +2472,7 @@ export declare const mulmoMovieParamsSchema: z.ZodObject<{
|
|
|
2452
2472
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
2453
2473
|
}>>;
|
|
2454
2474
|
}, "strict", z.ZodTypeAny, {
|
|
2455
|
-
provider?: "
|
|
2475
|
+
provider?: "google" | "replicate" | undefined;
|
|
2456
2476
|
model?: string | undefined;
|
|
2457
2477
|
fillOption?: {
|
|
2458
2478
|
style: "aspectFit" | "aspectFill";
|
|
@@ -2462,7 +2482,7 @@ export declare const mulmoMovieParamsSchema: z.ZodObject<{
|
|
|
2462
2482
|
duration: number;
|
|
2463
2483
|
} | undefined;
|
|
2464
2484
|
}, {
|
|
2465
|
-
provider?: "
|
|
2485
|
+
provider?: "google" | "replicate" | undefined;
|
|
2466
2486
|
model?: string | undefined;
|
|
2467
2487
|
fillOption?: {
|
|
2468
2488
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -2494,7 +2514,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2494
2514
|
height: number;
|
|
2495
2515
|
}>>;
|
|
2496
2516
|
speechParams: z.ZodDefault<z.ZodObject<{
|
|
2497
|
-
provider: z.ZodDefault<z.
|
|
2517
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>;
|
|
2498
2518
|
speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2499
2519
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2500
2520
|
voiceId: z.ZodString;
|
|
@@ -2508,7 +2528,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2508
2528
|
speed?: number | undefined;
|
|
2509
2529
|
instruction?: string | undefined;
|
|
2510
2530
|
}>>;
|
|
2511
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
2531
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>>;
|
|
2512
2532
|
}, "strict", z.ZodTypeAny, {
|
|
2513
2533
|
voiceId: string;
|
|
2514
2534
|
displayName?: Record<string, string> | undefined;
|
|
@@ -2550,7 +2570,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2550
2570
|
provider?: "openai" | "nijivoice" | "google" | "elevenlabs" | undefined;
|
|
2551
2571
|
}>>;
|
|
2552
2572
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
2553
|
-
provider: z.ZodDefault<z.
|
|
2573
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "google"]>>;
|
|
2554
2574
|
model: z.ZodOptional<z.ZodString>;
|
|
2555
2575
|
style: z.ZodOptional<z.ZodString>;
|
|
2556
2576
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -2668,7 +2688,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2668
2688
|
}> | undefined;
|
|
2669
2689
|
}>>;
|
|
2670
2690
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
2671
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
2691
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["google", "replicate"]>>>;
|
|
2672
2692
|
model: z.ZodOptional<z.ZodString>;
|
|
2673
2693
|
transition: z.ZodOptional<z.ZodObject<{
|
|
2674
2694
|
type: z.ZodEnum<["fade", "slideout_left"]>;
|
|
@@ -2688,7 +2708,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2688
2708
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
2689
2709
|
}>>;
|
|
2690
2710
|
}, "strict", z.ZodTypeAny, {
|
|
2691
|
-
provider?: "
|
|
2711
|
+
provider?: "google" | "replicate" | undefined;
|
|
2692
2712
|
model?: string | undefined;
|
|
2693
2713
|
fillOption?: {
|
|
2694
2714
|
style: "aspectFit" | "aspectFill";
|
|
@@ -2698,7 +2718,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2698
2718
|
duration: number;
|
|
2699
2719
|
} | undefined;
|
|
2700
2720
|
}, {
|
|
2701
|
-
provider?: "
|
|
2721
|
+
provider?: "google" | "replicate" | undefined;
|
|
2702
2722
|
model?: string | undefined;
|
|
2703
2723
|
fillOption?: {
|
|
2704
2724
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -2711,7 +2731,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2711
2731
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
2712
2732
|
model: z.ZodOptional<z.ZodString>;
|
|
2713
2733
|
} & {
|
|
2714
|
-
provider: z.ZodDefault<z.
|
|
2734
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "anthropic"]>>;
|
|
2715
2735
|
}, "strict", z.ZodTypeAny, {
|
|
2716
2736
|
provider: "openai" | "anthropic";
|
|
2717
2737
|
model?: string | undefined;
|
|
@@ -2890,7 +2910,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2890
2910
|
}> | undefined;
|
|
2891
2911
|
} | undefined;
|
|
2892
2912
|
movieParams?: {
|
|
2893
|
-
provider?: "
|
|
2913
|
+
provider?: "google" | "replicate" | undefined;
|
|
2894
2914
|
model?: string | undefined;
|
|
2895
2915
|
fillOption?: {
|
|
2896
2916
|
style: "aspectFit" | "aspectFill";
|
|
@@ -2961,7 +2981,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2961
2981
|
suppressSpeech?: boolean | undefined;
|
|
2962
2982
|
} | undefined;
|
|
2963
2983
|
movieParams?: {
|
|
2964
|
-
provider?: "
|
|
2984
|
+
provider?: "google" | "replicate" | undefined;
|
|
2965
2985
|
model?: string | undefined;
|
|
2966
2986
|
fillOption?: {
|
|
2967
2987
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -3003,7 +3023,7 @@ export declare const mulmoReferenceSchema: z.ZodObject<{
|
|
|
3003
3023
|
url: z.ZodString;
|
|
3004
3024
|
title: z.ZodOptional<z.ZodString>;
|
|
3005
3025
|
description: z.ZodOptional<z.ZodString>;
|
|
3006
|
-
type: z.ZodDefault<z.
|
|
3026
|
+
type: z.ZodDefault<z.ZodEnum<["article", "paper", "image", "video", "audio"]>>;
|
|
3007
3027
|
}, "strip", z.ZodTypeAny, {
|
|
3008
3028
|
type: "image" | "audio" | "article" | "paper" | "video";
|
|
3009
3029
|
url: string;
|
|
@@ -3037,7 +3057,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3037
3057
|
height: number;
|
|
3038
3058
|
}>>;
|
|
3039
3059
|
speechParams: z.ZodDefault<z.ZodObject<{
|
|
3040
|
-
provider: z.ZodDefault<z.
|
|
3060
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>;
|
|
3041
3061
|
speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3042
3062
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3043
3063
|
voiceId: z.ZodString;
|
|
@@ -3051,7 +3071,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3051
3071
|
speed?: number | undefined;
|
|
3052
3072
|
instruction?: string | undefined;
|
|
3053
3073
|
}>>;
|
|
3054
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
3074
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>>;
|
|
3055
3075
|
}, "strict", z.ZodTypeAny, {
|
|
3056
3076
|
voiceId: string;
|
|
3057
3077
|
displayName?: Record<string, string> | undefined;
|
|
@@ -3093,7 +3113,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3093
3113
|
provider?: "openai" | "nijivoice" | "google" | "elevenlabs" | undefined;
|
|
3094
3114
|
}>>;
|
|
3095
3115
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
3096
|
-
provider: z.ZodDefault<z.
|
|
3116
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "google"]>>;
|
|
3097
3117
|
model: z.ZodOptional<z.ZodString>;
|
|
3098
3118
|
style: z.ZodOptional<z.ZodString>;
|
|
3099
3119
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -3211,7 +3231,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3211
3231
|
}> | undefined;
|
|
3212
3232
|
}>>;
|
|
3213
3233
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
3214
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
3234
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["google", "replicate"]>>>;
|
|
3215
3235
|
model: z.ZodOptional<z.ZodString>;
|
|
3216
3236
|
transition: z.ZodOptional<z.ZodObject<{
|
|
3217
3237
|
type: z.ZodEnum<["fade", "slideout_left"]>;
|
|
@@ -3231,7 +3251,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3231
3251
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
3232
3252
|
}>>;
|
|
3233
3253
|
}, "strict", z.ZodTypeAny, {
|
|
3234
|
-
provider?: "
|
|
3254
|
+
provider?: "google" | "replicate" | undefined;
|
|
3235
3255
|
model?: string | undefined;
|
|
3236
3256
|
fillOption?: {
|
|
3237
3257
|
style: "aspectFit" | "aspectFill";
|
|
@@ -3241,7 +3261,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3241
3261
|
duration: number;
|
|
3242
3262
|
} | undefined;
|
|
3243
3263
|
}, {
|
|
3244
|
-
provider?: "
|
|
3264
|
+
provider?: "google" | "replicate" | undefined;
|
|
3245
3265
|
model?: string | undefined;
|
|
3246
3266
|
fillOption?: {
|
|
3247
3267
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -3254,7 +3274,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3254
3274
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
3255
3275
|
model: z.ZodOptional<z.ZodString>;
|
|
3256
3276
|
} & {
|
|
3257
|
-
provider: z.ZodDefault<z.
|
|
3277
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "anthropic"]>>;
|
|
3258
3278
|
}, "strict", z.ZodTypeAny, {
|
|
3259
3279
|
provider: "openai" | "anthropic";
|
|
3260
3280
|
model?: string | undefined;
|
|
@@ -3374,7 +3394,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3374
3394
|
url: z.ZodString;
|
|
3375
3395
|
title: z.ZodOptional<z.ZodString>;
|
|
3376
3396
|
description: z.ZodOptional<z.ZodString>;
|
|
3377
|
-
type: z.ZodDefault<z.
|
|
3397
|
+
type: z.ZodDefault<z.ZodEnum<["article", "paper", "image", "video", "audio"]>>;
|
|
3378
3398
|
}, "strip", z.ZodTypeAny, {
|
|
3379
3399
|
type: "image" | "audio" | "article" | "paper" | "video";
|
|
3380
3400
|
url: string;
|
|
@@ -3915,7 +3935,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3915
3935
|
}>]>>;
|
|
3916
3936
|
duration: z.ZodOptional<z.ZodNumber>;
|
|
3917
3937
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
3918
|
-
provider: z.ZodDefault<z.
|
|
3938
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "google"]>>;
|
|
3919
3939
|
model: z.ZodOptional<z.ZodString>;
|
|
3920
3940
|
style: z.ZodOptional<z.ZodString>;
|
|
3921
3941
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -4737,7 +4757,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4737
4757
|
}> | undefined;
|
|
4738
4758
|
} | undefined;
|
|
4739
4759
|
movieParams?: {
|
|
4740
|
-
provider?: "
|
|
4760
|
+
provider?: "google" | "replicate" | undefined;
|
|
4741
4761
|
model?: string | undefined;
|
|
4742
4762
|
fillOption?: {
|
|
4743
4763
|
style: "aspectFit" | "aspectFill";
|
|
@@ -5004,7 +5024,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5004
5024
|
suppressSpeech?: boolean | undefined;
|
|
5005
5025
|
} | undefined;
|
|
5006
5026
|
movieParams?: {
|
|
5007
|
-
provider?: "
|
|
5027
|
+
provider?: "google" | "replicate" | undefined;
|
|
5008
5028
|
model?: string | undefined;
|
|
5009
5029
|
fillOption?: {
|
|
5010
5030
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -5256,7 +5276,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5256
5276
|
height: number;
|
|
5257
5277
|
}>>;
|
|
5258
5278
|
speechParams: z.ZodDefault<z.ZodObject<{
|
|
5259
|
-
provider: z.ZodDefault<z.
|
|
5279
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>;
|
|
5260
5280
|
speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5261
5281
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5262
5282
|
voiceId: z.ZodString;
|
|
@@ -5270,7 +5290,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5270
5290
|
speed?: number | undefined;
|
|
5271
5291
|
instruction?: string | undefined;
|
|
5272
5292
|
}>>;
|
|
5273
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
5293
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>>;
|
|
5274
5294
|
}, "strict", z.ZodTypeAny, {
|
|
5275
5295
|
voiceId: string;
|
|
5276
5296
|
displayName?: Record<string, string> | undefined;
|
|
@@ -5312,7 +5332,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5312
5332
|
provider?: "openai" | "nijivoice" | "google" | "elevenlabs" | undefined;
|
|
5313
5333
|
}>>;
|
|
5314
5334
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
5315
|
-
provider: z.ZodDefault<z.
|
|
5335
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "google"]>>;
|
|
5316
5336
|
model: z.ZodOptional<z.ZodString>;
|
|
5317
5337
|
style: z.ZodOptional<z.ZodString>;
|
|
5318
5338
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -5430,7 +5450,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5430
5450
|
}> | undefined;
|
|
5431
5451
|
}>>;
|
|
5432
5452
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
5433
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
5453
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["google", "replicate"]>>>;
|
|
5434
5454
|
model: z.ZodOptional<z.ZodString>;
|
|
5435
5455
|
transition: z.ZodOptional<z.ZodObject<{
|
|
5436
5456
|
type: z.ZodEnum<["fade", "slideout_left"]>;
|
|
@@ -5450,7 +5470,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5450
5470
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
5451
5471
|
}>>;
|
|
5452
5472
|
}, "strict", z.ZodTypeAny, {
|
|
5453
|
-
provider?: "
|
|
5473
|
+
provider?: "google" | "replicate" | undefined;
|
|
5454
5474
|
model?: string | undefined;
|
|
5455
5475
|
fillOption?: {
|
|
5456
5476
|
style: "aspectFit" | "aspectFill";
|
|
@@ -5460,7 +5480,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5460
5480
|
duration: number;
|
|
5461
5481
|
} | undefined;
|
|
5462
5482
|
}, {
|
|
5463
|
-
provider?: "
|
|
5483
|
+
provider?: "google" | "replicate" | undefined;
|
|
5464
5484
|
model?: string | undefined;
|
|
5465
5485
|
fillOption?: {
|
|
5466
5486
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -5473,7 +5493,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5473
5493
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
5474
5494
|
model: z.ZodOptional<z.ZodString>;
|
|
5475
5495
|
} & {
|
|
5476
|
-
provider: z.ZodDefault<z.
|
|
5496
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "anthropic"]>>;
|
|
5477
5497
|
}, "strict", z.ZodTypeAny, {
|
|
5478
5498
|
provider: "openai" | "anthropic";
|
|
5479
5499
|
model?: string | undefined;
|
|
@@ -5593,7 +5613,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5593
5613
|
url: z.ZodString;
|
|
5594
5614
|
title: z.ZodOptional<z.ZodString>;
|
|
5595
5615
|
description: z.ZodOptional<z.ZodString>;
|
|
5596
|
-
type: z.ZodDefault<z.
|
|
5616
|
+
type: z.ZodDefault<z.ZodEnum<["article", "paper", "image", "video", "audio"]>>;
|
|
5597
5617
|
}, "strip", z.ZodTypeAny, {
|
|
5598
5618
|
type: "image" | "audio" | "article" | "paper" | "video";
|
|
5599
5619
|
url: string;
|
|
@@ -6134,7 +6154,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6134
6154
|
}>]>>;
|
|
6135
6155
|
duration: z.ZodOptional<z.ZodNumber>;
|
|
6136
6156
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
6137
|
-
provider: z.ZodDefault<z.
|
|
6157
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "google"]>>;
|
|
6138
6158
|
model: z.ZodOptional<z.ZodString>;
|
|
6139
6159
|
style: z.ZodOptional<z.ZodString>;
|
|
6140
6160
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -6956,7 +6976,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6956
6976
|
}> | undefined;
|
|
6957
6977
|
} | undefined;
|
|
6958
6978
|
movieParams?: {
|
|
6959
|
-
provider?: "
|
|
6979
|
+
provider?: "google" | "replicate" | undefined;
|
|
6960
6980
|
model?: string | undefined;
|
|
6961
6981
|
fillOption?: {
|
|
6962
6982
|
style: "aspectFit" | "aspectFill";
|
|
@@ -7223,7 +7243,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7223
7243
|
suppressSpeech?: boolean | undefined;
|
|
7224
7244
|
} | undefined;
|
|
7225
7245
|
movieParams?: {
|
|
7226
|
-
provider?: "
|
|
7246
|
+
provider?: "google" | "replicate" | undefined;
|
|
7227
7247
|
model?: string | undefined;
|
|
7228
7248
|
fillOption?: {
|
|
7229
7249
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -7571,7 +7591,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7571
7591
|
}> | undefined;
|
|
7572
7592
|
} | undefined;
|
|
7573
7593
|
movieParams?: {
|
|
7574
|
-
provider?: "
|
|
7594
|
+
provider?: "google" | "replicate" | undefined;
|
|
7575
7595
|
model?: string | undefined;
|
|
7576
7596
|
fillOption?: {
|
|
7577
7597
|
style: "aspectFit" | "aspectFill";
|
|
@@ -7853,7 +7873,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7853
7873
|
suppressSpeech?: boolean | undefined;
|
|
7854
7874
|
} | undefined;
|
|
7855
7875
|
movieParams?: {
|
|
7856
|
-
provider?: "
|
|
7876
|
+
provider?: "google" | "replicate" | undefined;
|
|
7857
7877
|
model?: string | undefined;
|
|
7858
7878
|
fillOption?: {
|
|
7859
7879
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -7928,7 +7948,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
7928
7948
|
height: number;
|
|
7929
7949
|
}>>;
|
|
7930
7950
|
speechParams: z.ZodDefault<z.ZodObject<{
|
|
7931
|
-
provider: z.ZodDefault<z.
|
|
7951
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>;
|
|
7932
7952
|
speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7933
7953
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
7934
7954
|
voiceId: z.ZodString;
|
|
@@ -7942,7 +7962,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
7942
7962
|
speed?: number | undefined;
|
|
7943
7963
|
instruction?: string | undefined;
|
|
7944
7964
|
}>>;
|
|
7945
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
7965
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>>;
|
|
7946
7966
|
}, "strict", z.ZodTypeAny, {
|
|
7947
7967
|
voiceId: string;
|
|
7948
7968
|
displayName?: Record<string, string> | undefined;
|
|
@@ -7984,7 +8004,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
7984
8004
|
provider?: "openai" | "nijivoice" | "google" | "elevenlabs" | undefined;
|
|
7985
8005
|
}>>;
|
|
7986
8006
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
7987
|
-
provider: z.ZodDefault<z.
|
|
8007
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "google"]>>;
|
|
7988
8008
|
model: z.ZodOptional<z.ZodString>;
|
|
7989
8009
|
style: z.ZodOptional<z.ZodString>;
|
|
7990
8010
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -8102,7 +8122,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8102
8122
|
}> | undefined;
|
|
8103
8123
|
}>>;
|
|
8104
8124
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
8105
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
8125
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["google", "replicate"]>>>;
|
|
8106
8126
|
model: z.ZodOptional<z.ZodString>;
|
|
8107
8127
|
transition: z.ZodOptional<z.ZodObject<{
|
|
8108
8128
|
type: z.ZodEnum<["fade", "slideout_left"]>;
|
|
@@ -8122,7 +8142,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8122
8142
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
8123
8143
|
}>>;
|
|
8124
8144
|
}, "strict", z.ZodTypeAny, {
|
|
8125
|
-
provider?: "
|
|
8145
|
+
provider?: "google" | "replicate" | undefined;
|
|
8126
8146
|
model?: string | undefined;
|
|
8127
8147
|
fillOption?: {
|
|
8128
8148
|
style: "aspectFit" | "aspectFill";
|
|
@@ -8132,7 +8152,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8132
8152
|
duration: number;
|
|
8133
8153
|
} | undefined;
|
|
8134
8154
|
}, {
|
|
8135
|
-
provider?: "
|
|
8155
|
+
provider?: "google" | "replicate" | undefined;
|
|
8136
8156
|
model?: string | undefined;
|
|
8137
8157
|
fillOption?: {
|
|
8138
8158
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -8145,7 +8165,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8145
8165
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
8146
8166
|
model: z.ZodOptional<z.ZodString>;
|
|
8147
8167
|
} & {
|
|
8148
|
-
provider: z.ZodDefault<z.
|
|
8168
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "anthropic"]>>;
|
|
8149
8169
|
}, "strict", z.ZodTypeAny, {
|
|
8150
8170
|
provider: "openai" | "anthropic";
|
|
8151
8171
|
model?: string | undefined;
|
|
@@ -8324,7 +8344,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8324
8344
|
}> | undefined;
|
|
8325
8345
|
} | undefined;
|
|
8326
8346
|
movieParams?: {
|
|
8327
|
-
provider?: "
|
|
8347
|
+
provider?: "google" | "replicate" | undefined;
|
|
8328
8348
|
model?: string | undefined;
|
|
8329
8349
|
fillOption?: {
|
|
8330
8350
|
style: "aspectFit" | "aspectFill";
|
|
@@ -8395,7 +8415,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8395
8415
|
suppressSpeech?: boolean | undefined;
|
|
8396
8416
|
} | undefined;
|
|
8397
8417
|
movieParams?: {
|
|
8398
|
-
provider?: "
|
|
8418
|
+
provider?: "google" | "replicate" | undefined;
|
|
8399
8419
|
model?: string | undefined;
|
|
8400
8420
|
fillOption?: {
|
|
8401
8421
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -8504,7 +8524,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8504
8524
|
}> | undefined;
|
|
8505
8525
|
} | undefined;
|
|
8506
8526
|
movieParams?: {
|
|
8507
|
-
provider?: "
|
|
8527
|
+
provider?: "google" | "replicate" | undefined;
|
|
8508
8528
|
model?: string | undefined;
|
|
8509
8529
|
fillOption?: {
|
|
8510
8530
|
style: "aspectFit" | "aspectFill";
|
|
@@ -8581,7 +8601,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8581
8601
|
suppressSpeech?: boolean | undefined;
|
|
8582
8602
|
} | undefined;
|
|
8583
8603
|
movieParams?: {
|
|
8584
|
-
provider?: "
|
|
8604
|
+
provider?: "google" | "replicate" | undefined;
|
|
8585
8605
|
model?: string | undefined;
|
|
8586
8606
|
fillOption?: {
|
|
8587
8607
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -8647,7 +8667,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8647
8667
|
height: number;
|
|
8648
8668
|
}>>;
|
|
8649
8669
|
speechParams: z.ZodDefault<z.ZodObject<{
|
|
8650
|
-
provider: z.ZodDefault<z.
|
|
8670
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>;
|
|
8651
8671
|
speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8652
8672
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
8653
8673
|
voiceId: z.ZodString;
|
|
@@ -8661,7 +8681,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8661
8681
|
speed?: number | undefined;
|
|
8662
8682
|
instruction?: string | undefined;
|
|
8663
8683
|
}>>;
|
|
8664
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
8684
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>>;
|
|
8665
8685
|
}, "strict", z.ZodTypeAny, {
|
|
8666
8686
|
voiceId: string;
|
|
8667
8687
|
displayName?: Record<string, string> | undefined;
|
|
@@ -8703,7 +8723,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8703
8723
|
provider?: "openai" | "nijivoice" | "google" | "elevenlabs" | undefined;
|
|
8704
8724
|
}>>;
|
|
8705
8725
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
8706
|
-
provider: z.ZodDefault<z.
|
|
8726
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "google"]>>;
|
|
8707
8727
|
model: z.ZodOptional<z.ZodString>;
|
|
8708
8728
|
style: z.ZodOptional<z.ZodString>;
|
|
8709
8729
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -8821,7 +8841,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8821
8841
|
}> | undefined;
|
|
8822
8842
|
}>>;
|
|
8823
8843
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
8824
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
8844
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["google", "replicate"]>>>;
|
|
8825
8845
|
model: z.ZodOptional<z.ZodString>;
|
|
8826
8846
|
transition: z.ZodOptional<z.ZodObject<{
|
|
8827
8847
|
type: z.ZodEnum<["fade", "slideout_left"]>;
|
|
@@ -8841,7 +8861,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8841
8861
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
8842
8862
|
}>>;
|
|
8843
8863
|
}, "strict", z.ZodTypeAny, {
|
|
8844
|
-
provider?: "
|
|
8864
|
+
provider?: "google" | "replicate" | undefined;
|
|
8845
8865
|
model?: string | undefined;
|
|
8846
8866
|
fillOption?: {
|
|
8847
8867
|
style: "aspectFit" | "aspectFill";
|
|
@@ -8851,7 +8871,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8851
8871
|
duration: number;
|
|
8852
8872
|
} | undefined;
|
|
8853
8873
|
}, {
|
|
8854
|
-
provider?: "
|
|
8874
|
+
provider?: "google" | "replicate" | undefined;
|
|
8855
8875
|
model?: string | undefined;
|
|
8856
8876
|
fillOption?: {
|
|
8857
8877
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -8864,7 +8884,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8864
8884
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
8865
8885
|
model: z.ZodOptional<z.ZodString>;
|
|
8866
8886
|
} & {
|
|
8867
|
-
provider: z.ZodDefault<z.
|
|
8887
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "anthropic"]>>;
|
|
8868
8888
|
}, "strict", z.ZodTypeAny, {
|
|
8869
8889
|
provider: "openai" | "anthropic";
|
|
8870
8890
|
model?: string | undefined;
|
|
@@ -9043,7 +9063,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9043
9063
|
}> | undefined;
|
|
9044
9064
|
} | undefined;
|
|
9045
9065
|
movieParams?: {
|
|
9046
|
-
provider?: "
|
|
9066
|
+
provider?: "google" | "replicate" | undefined;
|
|
9047
9067
|
model?: string | undefined;
|
|
9048
9068
|
fillOption?: {
|
|
9049
9069
|
style: "aspectFit" | "aspectFill";
|
|
@@ -9114,7 +9134,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9114
9134
|
suppressSpeech?: boolean | undefined;
|
|
9115
9135
|
} | undefined;
|
|
9116
9136
|
movieParams?: {
|
|
9117
|
-
provider?: "
|
|
9137
|
+
provider?: "google" | "replicate" | undefined;
|
|
9118
9138
|
model?: string | undefined;
|
|
9119
9139
|
fillOption?: {
|
|
9120
9140
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -9226,7 +9246,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9226
9246
|
}> | undefined;
|
|
9227
9247
|
} | undefined;
|
|
9228
9248
|
movieParams?: {
|
|
9229
|
-
provider?: "
|
|
9249
|
+
provider?: "google" | "replicate" | undefined;
|
|
9230
9250
|
model?: string | undefined;
|
|
9231
9251
|
fillOption?: {
|
|
9232
9252
|
style: "aspectFit" | "aspectFill";
|
|
@@ -9304,7 +9324,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9304
9324
|
suppressSpeech?: boolean | undefined;
|
|
9305
9325
|
} | undefined;
|
|
9306
9326
|
movieParams?: {
|
|
9307
|
-
provider?: "
|
|
9327
|
+
provider?: "google" | "replicate" | undefined;
|
|
9308
9328
|
model?: string | undefined;
|
|
9309
9329
|
fillOption?: {
|
|
9310
9330
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -9349,7 +9369,7 @@ export declare const mulmoStoryboardSceneSchema: z.ZodObject<{
|
|
|
9349
9369
|
url: z.ZodString;
|
|
9350
9370
|
title: z.ZodOptional<z.ZodString>;
|
|
9351
9371
|
description: z.ZodOptional<z.ZodString>;
|
|
9352
|
-
type: z.ZodDefault<z.
|
|
9372
|
+
type: z.ZodDefault<z.ZodEnum<["article", "paper", "image", "video", "audio"]>>;
|
|
9353
9373
|
}, "strip", z.ZodTypeAny, {
|
|
9354
9374
|
type: "image" | "audio" | "article" | "paper" | "video";
|
|
9355
9375
|
url: string;
|
|
@@ -9384,7 +9404,7 @@ export declare const mulmoStoryboardSchema: z.ZodObject<{
|
|
|
9384
9404
|
url: z.ZodString;
|
|
9385
9405
|
title: z.ZodOptional<z.ZodString>;
|
|
9386
9406
|
description: z.ZodOptional<z.ZodString>;
|
|
9387
|
-
type: z.ZodDefault<z.
|
|
9407
|
+
type: z.ZodDefault<z.ZodEnum<["article", "paper", "image", "video", "audio"]>>;
|
|
9388
9408
|
}, "strip", z.ZodTypeAny, {
|
|
9389
9409
|
type: "image" | "audio" | "article" | "paper" | "video";
|
|
9390
9410
|
url: string;
|
|
@@ -9402,7 +9422,7 @@ export declare const mulmoStoryboardSchema: z.ZodObject<{
|
|
|
9402
9422
|
url: z.ZodString;
|
|
9403
9423
|
title: z.ZodOptional<z.ZodString>;
|
|
9404
9424
|
description: z.ZodOptional<z.ZodString>;
|
|
9405
|
-
type: z.ZodDefault<z.
|
|
9425
|
+
type: z.ZodDefault<z.ZodEnum<["article", "paper", "image", "video", "audio"]>>;
|
|
9406
9426
|
}, "strip", z.ZodTypeAny, {
|
|
9407
9427
|
type: "image" | "audio" | "article" | "paper" | "video";
|
|
9408
9428
|
url: string;
|