mulmocast 0.1.0 → 0.1.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 +10 -0
- package/assets/templates/ghibli_shorts.json +1 -1
- package/lib/actions/images.d.ts +4 -0
- package/lib/actions/images.js +27 -26
- 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 +99 -74
- package/lib/types/schema.js +22 -7
- package/lib/types/type.d.ts +4 -2
- package/lib/utils/context.d.ts +3 -2
- package/lib/utils/context.js +1 -0
- package/lib/utils/file.js +8 -0
- package/lib/utils/filters.js +8 -3
- 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;
|
|
@@ -5187,15 +5207,18 @@ export declare const mulmoSessionStateSchema: z.ZodObject<{
|
|
|
5187
5207
|
movie: z.ZodRecord<z.ZodNumber, z.ZodBoolean>;
|
|
5188
5208
|
multiLingual: z.ZodRecord<z.ZodNumber, z.ZodBoolean>;
|
|
5189
5209
|
caption: z.ZodRecord<z.ZodNumber, z.ZodBoolean>;
|
|
5210
|
+
html: z.ZodRecord<z.ZodNumber, z.ZodBoolean>;
|
|
5190
5211
|
}, "strip", z.ZodTypeAny, {
|
|
5191
5212
|
image: Record<number, boolean>;
|
|
5192
5213
|
movie: Record<number, boolean>;
|
|
5214
|
+
html: Record<number, boolean>;
|
|
5193
5215
|
audio: Record<number, boolean>;
|
|
5194
5216
|
multiLingual: Record<number, boolean>;
|
|
5195
5217
|
caption: Record<number, boolean>;
|
|
5196
5218
|
}, {
|
|
5197
5219
|
image: Record<number, boolean>;
|
|
5198
5220
|
movie: Record<number, boolean>;
|
|
5221
|
+
html: Record<number, boolean>;
|
|
5199
5222
|
audio: Record<number, boolean>;
|
|
5200
5223
|
multiLingual: Record<number, boolean>;
|
|
5201
5224
|
caption: Record<number, boolean>;
|
|
@@ -5212,6 +5235,7 @@ export declare const mulmoSessionStateSchema: z.ZodObject<{
|
|
|
5212
5235
|
inBeatSession: {
|
|
5213
5236
|
image: Record<number, boolean>;
|
|
5214
5237
|
movie: Record<number, boolean>;
|
|
5238
|
+
html: Record<number, boolean>;
|
|
5215
5239
|
audio: Record<number, boolean>;
|
|
5216
5240
|
multiLingual: Record<number, boolean>;
|
|
5217
5241
|
caption: Record<number, boolean>;
|
|
@@ -5228,6 +5252,7 @@ export declare const mulmoSessionStateSchema: z.ZodObject<{
|
|
|
5228
5252
|
inBeatSession: {
|
|
5229
5253
|
image: Record<number, boolean>;
|
|
5230
5254
|
movie: Record<number, boolean>;
|
|
5255
|
+
html: Record<number, boolean>;
|
|
5231
5256
|
audio: Record<number, boolean>;
|
|
5232
5257
|
multiLingual: Record<number, boolean>;
|
|
5233
5258
|
caption: Record<number, boolean>;
|
|
@@ -5256,7 +5281,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5256
5281
|
height: number;
|
|
5257
5282
|
}>>;
|
|
5258
5283
|
speechParams: z.ZodDefault<z.ZodObject<{
|
|
5259
|
-
provider: z.ZodDefault<z.
|
|
5284
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>;
|
|
5260
5285
|
speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5261
5286
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5262
5287
|
voiceId: z.ZodString;
|
|
@@ -5270,7 +5295,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5270
5295
|
speed?: number | undefined;
|
|
5271
5296
|
instruction?: string | undefined;
|
|
5272
5297
|
}>>;
|
|
5273
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
5298
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>>;
|
|
5274
5299
|
}, "strict", z.ZodTypeAny, {
|
|
5275
5300
|
voiceId: string;
|
|
5276
5301
|
displayName?: Record<string, string> | undefined;
|
|
@@ -5312,7 +5337,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5312
5337
|
provider?: "openai" | "nijivoice" | "google" | "elevenlabs" | undefined;
|
|
5313
5338
|
}>>;
|
|
5314
5339
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
5315
|
-
provider: z.ZodDefault<z.
|
|
5340
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "google"]>>;
|
|
5316
5341
|
model: z.ZodOptional<z.ZodString>;
|
|
5317
5342
|
style: z.ZodOptional<z.ZodString>;
|
|
5318
5343
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -5430,7 +5455,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5430
5455
|
}> | undefined;
|
|
5431
5456
|
}>>;
|
|
5432
5457
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
5433
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
5458
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["google", "replicate"]>>>;
|
|
5434
5459
|
model: z.ZodOptional<z.ZodString>;
|
|
5435
5460
|
transition: z.ZodOptional<z.ZodObject<{
|
|
5436
5461
|
type: z.ZodEnum<["fade", "slideout_left"]>;
|
|
@@ -5450,7 +5475,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5450
5475
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
5451
5476
|
}>>;
|
|
5452
5477
|
}, "strict", z.ZodTypeAny, {
|
|
5453
|
-
provider?: "
|
|
5478
|
+
provider?: "google" | "replicate" | undefined;
|
|
5454
5479
|
model?: string | undefined;
|
|
5455
5480
|
fillOption?: {
|
|
5456
5481
|
style: "aspectFit" | "aspectFill";
|
|
@@ -5460,7 +5485,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5460
5485
|
duration: number;
|
|
5461
5486
|
} | undefined;
|
|
5462
5487
|
}, {
|
|
5463
|
-
provider?: "
|
|
5488
|
+
provider?: "google" | "replicate" | undefined;
|
|
5464
5489
|
model?: string | undefined;
|
|
5465
5490
|
fillOption?: {
|
|
5466
5491
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -5473,7 +5498,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5473
5498
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
5474
5499
|
model: z.ZodOptional<z.ZodString>;
|
|
5475
5500
|
} & {
|
|
5476
|
-
provider: z.ZodDefault<z.
|
|
5501
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "anthropic"]>>;
|
|
5477
5502
|
}, "strict", z.ZodTypeAny, {
|
|
5478
5503
|
provider: "openai" | "anthropic";
|
|
5479
5504
|
model?: string | undefined;
|
|
@@ -5593,7 +5618,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5593
5618
|
url: z.ZodString;
|
|
5594
5619
|
title: z.ZodOptional<z.ZodString>;
|
|
5595
5620
|
description: z.ZodOptional<z.ZodString>;
|
|
5596
|
-
type: z.ZodDefault<z.
|
|
5621
|
+
type: z.ZodDefault<z.ZodEnum<["article", "paper", "image", "video", "audio"]>>;
|
|
5597
5622
|
}, "strip", z.ZodTypeAny, {
|
|
5598
5623
|
type: "image" | "audio" | "article" | "paper" | "video";
|
|
5599
5624
|
url: string;
|
|
@@ -6134,7 +6159,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6134
6159
|
}>]>>;
|
|
6135
6160
|
duration: z.ZodOptional<z.ZodNumber>;
|
|
6136
6161
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
6137
|
-
provider: z.ZodDefault<z.
|
|
6162
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "google"]>>;
|
|
6138
6163
|
model: z.ZodOptional<z.ZodString>;
|
|
6139
6164
|
style: z.ZodOptional<z.ZodString>;
|
|
6140
6165
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -6956,7 +6981,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6956
6981
|
}> | undefined;
|
|
6957
6982
|
} | undefined;
|
|
6958
6983
|
movieParams?: {
|
|
6959
|
-
provider?: "
|
|
6984
|
+
provider?: "google" | "replicate" | undefined;
|
|
6960
6985
|
model?: string | undefined;
|
|
6961
6986
|
fillOption?: {
|
|
6962
6987
|
style: "aspectFit" | "aspectFill";
|
|
@@ -7223,7 +7248,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7223
7248
|
suppressSpeech?: boolean | undefined;
|
|
7224
7249
|
} | undefined;
|
|
7225
7250
|
movieParams?: {
|
|
7226
|
-
provider?: "
|
|
7251
|
+
provider?: "google" | "replicate" | undefined;
|
|
7227
7252
|
model?: string | undefined;
|
|
7228
7253
|
fillOption?: {
|
|
7229
7254
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -7571,7 +7596,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7571
7596
|
}> | undefined;
|
|
7572
7597
|
} | undefined;
|
|
7573
7598
|
movieParams?: {
|
|
7574
|
-
provider?: "
|
|
7599
|
+
provider?: "google" | "replicate" | undefined;
|
|
7575
7600
|
model?: string | undefined;
|
|
7576
7601
|
fillOption?: {
|
|
7577
7602
|
style: "aspectFit" | "aspectFill";
|
|
@@ -7853,7 +7878,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7853
7878
|
suppressSpeech?: boolean | undefined;
|
|
7854
7879
|
} | undefined;
|
|
7855
7880
|
movieParams?: {
|
|
7856
|
-
provider?: "
|
|
7881
|
+
provider?: "google" | "replicate" | undefined;
|
|
7857
7882
|
model?: string | undefined;
|
|
7858
7883
|
fillOption?: {
|
|
7859
7884
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -7928,7 +7953,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
7928
7953
|
height: number;
|
|
7929
7954
|
}>>;
|
|
7930
7955
|
speechParams: z.ZodDefault<z.ZodObject<{
|
|
7931
|
-
provider: z.ZodDefault<z.
|
|
7956
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>;
|
|
7932
7957
|
speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7933
7958
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
7934
7959
|
voiceId: z.ZodString;
|
|
@@ -7942,7 +7967,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
7942
7967
|
speed?: number | undefined;
|
|
7943
7968
|
instruction?: string | undefined;
|
|
7944
7969
|
}>>;
|
|
7945
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
7970
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>>;
|
|
7946
7971
|
}, "strict", z.ZodTypeAny, {
|
|
7947
7972
|
voiceId: string;
|
|
7948
7973
|
displayName?: Record<string, string> | undefined;
|
|
@@ -7984,7 +8009,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
7984
8009
|
provider?: "openai" | "nijivoice" | "google" | "elevenlabs" | undefined;
|
|
7985
8010
|
}>>;
|
|
7986
8011
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
7987
|
-
provider: z.ZodDefault<z.
|
|
8012
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "google"]>>;
|
|
7988
8013
|
model: z.ZodOptional<z.ZodString>;
|
|
7989
8014
|
style: z.ZodOptional<z.ZodString>;
|
|
7990
8015
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -8102,7 +8127,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8102
8127
|
}> | undefined;
|
|
8103
8128
|
}>>;
|
|
8104
8129
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
8105
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
8130
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["google", "replicate"]>>>;
|
|
8106
8131
|
model: z.ZodOptional<z.ZodString>;
|
|
8107
8132
|
transition: z.ZodOptional<z.ZodObject<{
|
|
8108
8133
|
type: z.ZodEnum<["fade", "slideout_left"]>;
|
|
@@ -8122,7 +8147,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8122
8147
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
8123
8148
|
}>>;
|
|
8124
8149
|
}, "strict", z.ZodTypeAny, {
|
|
8125
|
-
provider?: "
|
|
8150
|
+
provider?: "google" | "replicate" | undefined;
|
|
8126
8151
|
model?: string | undefined;
|
|
8127
8152
|
fillOption?: {
|
|
8128
8153
|
style: "aspectFit" | "aspectFill";
|
|
@@ -8132,7 +8157,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8132
8157
|
duration: number;
|
|
8133
8158
|
} | undefined;
|
|
8134
8159
|
}, {
|
|
8135
|
-
provider?: "
|
|
8160
|
+
provider?: "google" | "replicate" | undefined;
|
|
8136
8161
|
model?: string | undefined;
|
|
8137
8162
|
fillOption?: {
|
|
8138
8163
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -8145,7 +8170,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8145
8170
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
8146
8171
|
model: z.ZodOptional<z.ZodString>;
|
|
8147
8172
|
} & {
|
|
8148
|
-
provider: z.ZodDefault<z.
|
|
8173
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "anthropic"]>>;
|
|
8149
8174
|
}, "strict", z.ZodTypeAny, {
|
|
8150
8175
|
provider: "openai" | "anthropic";
|
|
8151
8176
|
model?: string | undefined;
|
|
@@ -8324,7 +8349,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8324
8349
|
}> | undefined;
|
|
8325
8350
|
} | undefined;
|
|
8326
8351
|
movieParams?: {
|
|
8327
|
-
provider?: "
|
|
8352
|
+
provider?: "google" | "replicate" | undefined;
|
|
8328
8353
|
model?: string | undefined;
|
|
8329
8354
|
fillOption?: {
|
|
8330
8355
|
style: "aspectFit" | "aspectFill";
|
|
@@ -8395,7 +8420,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8395
8420
|
suppressSpeech?: boolean | undefined;
|
|
8396
8421
|
} | undefined;
|
|
8397
8422
|
movieParams?: {
|
|
8398
|
-
provider?: "
|
|
8423
|
+
provider?: "google" | "replicate" | undefined;
|
|
8399
8424
|
model?: string | undefined;
|
|
8400
8425
|
fillOption?: {
|
|
8401
8426
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -8504,7 +8529,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8504
8529
|
}> | undefined;
|
|
8505
8530
|
} | undefined;
|
|
8506
8531
|
movieParams?: {
|
|
8507
|
-
provider?: "
|
|
8532
|
+
provider?: "google" | "replicate" | undefined;
|
|
8508
8533
|
model?: string | undefined;
|
|
8509
8534
|
fillOption?: {
|
|
8510
8535
|
style: "aspectFit" | "aspectFill";
|
|
@@ -8581,7 +8606,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8581
8606
|
suppressSpeech?: boolean | undefined;
|
|
8582
8607
|
} | undefined;
|
|
8583
8608
|
movieParams?: {
|
|
8584
|
-
provider?: "
|
|
8609
|
+
provider?: "google" | "replicate" | undefined;
|
|
8585
8610
|
model?: string | undefined;
|
|
8586
8611
|
fillOption?: {
|
|
8587
8612
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -8647,7 +8672,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8647
8672
|
height: number;
|
|
8648
8673
|
}>>;
|
|
8649
8674
|
speechParams: z.ZodDefault<z.ZodObject<{
|
|
8650
|
-
provider: z.ZodDefault<z.
|
|
8675
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>;
|
|
8651
8676
|
speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8652
8677
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
8653
8678
|
voiceId: z.ZodString;
|
|
@@ -8661,7 +8686,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8661
8686
|
speed?: number | undefined;
|
|
8662
8687
|
instruction?: string | undefined;
|
|
8663
8688
|
}>>;
|
|
8664
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
8689
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>>;
|
|
8665
8690
|
}, "strict", z.ZodTypeAny, {
|
|
8666
8691
|
voiceId: string;
|
|
8667
8692
|
displayName?: Record<string, string> | undefined;
|
|
@@ -8703,7 +8728,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8703
8728
|
provider?: "openai" | "nijivoice" | "google" | "elevenlabs" | undefined;
|
|
8704
8729
|
}>>;
|
|
8705
8730
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
8706
|
-
provider: z.ZodDefault<z.
|
|
8731
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "google"]>>;
|
|
8707
8732
|
model: z.ZodOptional<z.ZodString>;
|
|
8708
8733
|
style: z.ZodOptional<z.ZodString>;
|
|
8709
8734
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -8821,7 +8846,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8821
8846
|
}> | undefined;
|
|
8822
8847
|
}>>;
|
|
8823
8848
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
8824
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
8849
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["google", "replicate"]>>>;
|
|
8825
8850
|
model: z.ZodOptional<z.ZodString>;
|
|
8826
8851
|
transition: z.ZodOptional<z.ZodObject<{
|
|
8827
8852
|
type: z.ZodEnum<["fade", "slideout_left"]>;
|
|
@@ -8841,7 +8866,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8841
8866
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
8842
8867
|
}>>;
|
|
8843
8868
|
}, "strict", z.ZodTypeAny, {
|
|
8844
|
-
provider?: "
|
|
8869
|
+
provider?: "google" | "replicate" | undefined;
|
|
8845
8870
|
model?: string | undefined;
|
|
8846
8871
|
fillOption?: {
|
|
8847
8872
|
style: "aspectFit" | "aspectFill";
|
|
@@ -8851,7 +8876,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8851
8876
|
duration: number;
|
|
8852
8877
|
} | undefined;
|
|
8853
8878
|
}, {
|
|
8854
|
-
provider?: "
|
|
8879
|
+
provider?: "google" | "replicate" | undefined;
|
|
8855
8880
|
model?: string | undefined;
|
|
8856
8881
|
fillOption?: {
|
|
8857
8882
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -8864,7 +8889,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8864
8889
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
8865
8890
|
model: z.ZodOptional<z.ZodString>;
|
|
8866
8891
|
} & {
|
|
8867
|
-
provider: z.ZodDefault<z.
|
|
8892
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "anthropic"]>>;
|
|
8868
8893
|
}, "strict", z.ZodTypeAny, {
|
|
8869
8894
|
provider: "openai" | "anthropic";
|
|
8870
8895
|
model?: string | undefined;
|
|
@@ -9043,7 +9068,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9043
9068
|
}> | undefined;
|
|
9044
9069
|
} | undefined;
|
|
9045
9070
|
movieParams?: {
|
|
9046
|
-
provider?: "
|
|
9071
|
+
provider?: "google" | "replicate" | undefined;
|
|
9047
9072
|
model?: string | undefined;
|
|
9048
9073
|
fillOption?: {
|
|
9049
9074
|
style: "aspectFit" | "aspectFill";
|
|
@@ -9114,7 +9139,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9114
9139
|
suppressSpeech?: boolean | undefined;
|
|
9115
9140
|
} | undefined;
|
|
9116
9141
|
movieParams?: {
|
|
9117
|
-
provider?: "
|
|
9142
|
+
provider?: "google" | "replicate" | undefined;
|
|
9118
9143
|
model?: string | undefined;
|
|
9119
9144
|
fillOption?: {
|
|
9120
9145
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -9226,7 +9251,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9226
9251
|
}> | undefined;
|
|
9227
9252
|
} | undefined;
|
|
9228
9253
|
movieParams?: {
|
|
9229
|
-
provider?: "
|
|
9254
|
+
provider?: "google" | "replicate" | undefined;
|
|
9230
9255
|
model?: string | undefined;
|
|
9231
9256
|
fillOption?: {
|
|
9232
9257
|
style: "aspectFit" | "aspectFill";
|
|
@@ -9304,7 +9329,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9304
9329
|
suppressSpeech?: boolean | undefined;
|
|
9305
9330
|
} | undefined;
|
|
9306
9331
|
movieParams?: {
|
|
9307
|
-
provider?: "
|
|
9332
|
+
provider?: "google" | "replicate" | undefined;
|
|
9308
9333
|
model?: string | undefined;
|
|
9309
9334
|
fillOption?: {
|
|
9310
9335
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -9349,7 +9374,7 @@ export declare const mulmoStoryboardSceneSchema: z.ZodObject<{
|
|
|
9349
9374
|
url: z.ZodString;
|
|
9350
9375
|
title: z.ZodOptional<z.ZodString>;
|
|
9351
9376
|
description: z.ZodOptional<z.ZodString>;
|
|
9352
|
-
type: z.ZodDefault<z.
|
|
9377
|
+
type: z.ZodDefault<z.ZodEnum<["article", "paper", "image", "video", "audio"]>>;
|
|
9353
9378
|
}, "strip", z.ZodTypeAny, {
|
|
9354
9379
|
type: "image" | "audio" | "article" | "paper" | "video";
|
|
9355
9380
|
url: string;
|
|
@@ -9384,7 +9409,7 @@ export declare const mulmoStoryboardSchema: z.ZodObject<{
|
|
|
9384
9409
|
url: z.ZodString;
|
|
9385
9410
|
title: z.ZodOptional<z.ZodString>;
|
|
9386
9411
|
description: z.ZodOptional<z.ZodString>;
|
|
9387
|
-
type: z.ZodDefault<z.
|
|
9412
|
+
type: z.ZodDefault<z.ZodEnum<["article", "paper", "image", "video", "audio"]>>;
|
|
9388
9413
|
}, "strip", z.ZodTypeAny, {
|
|
9389
9414
|
type: "image" | "audio" | "article" | "paper" | "video";
|
|
9390
9415
|
url: string;
|
|
@@ -9402,7 +9427,7 @@ export declare const mulmoStoryboardSchema: z.ZodObject<{
|
|
|
9402
9427
|
url: z.ZodString;
|
|
9403
9428
|
title: z.ZodOptional<z.ZodString>;
|
|
9404
9429
|
description: z.ZodOptional<z.ZodString>;
|
|
9405
|
-
type: z.ZodDefault<z.
|
|
9430
|
+
type: z.ZodDefault<z.ZodEnum<["article", "paper", "image", "video", "audio"]>>;
|
|
9406
9431
|
}, "strip", z.ZodTypeAny, {
|
|
9407
9432
|
type: "image" | "audio" | "article" | "paper" | "video";
|
|
9408
9433
|
url: string;
|