mulmocast 0.0.9 → 0.0.11

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.
Files changed (48) hide show
  1. package/README.md +20 -3
  2. package/assets/templates/akira_comic.json +2 -2
  3. package/assets/templates/drslump_comic.json +2 -2
  4. package/assets/templates/ghibli_comic.json +2 -2
  5. package/assets/templates/ghost_comic.json +2 -2
  6. package/assets/templates/onepiece_comic.json +2 -2
  7. package/assets/templates/portrait_movie.json +28 -0
  8. package/assets/templates/realistic_movie.json +28 -0
  9. package/assets/templates/shorts.json +18 -0
  10. package/lib/actions/audio.d.ts +2 -1
  11. package/lib/actions/audio.js +8 -3
  12. package/lib/actions/captions.js +2 -2
  13. package/lib/actions/images.d.ts +2 -1
  14. package/lib/actions/images.js +68 -32
  15. package/lib/actions/movie.js +10 -6
  16. package/lib/actions/translate.d.ts +2 -1
  17. package/lib/actions/translate.js +8 -3
  18. package/lib/agents/combine_audio_files_agent.js +4 -0
  19. package/lib/agents/image_google_agent.d.ts +4 -1
  20. package/lib/agents/image_google_agent.js +3 -2
  21. package/lib/agents/image_openai_agent.d.ts +5 -3
  22. package/lib/agents/image_openai_agent.js +29 -4
  23. package/lib/agents/movie_google_agent.d.ts +24 -0
  24. package/lib/agents/movie_google_agent.js +122 -0
  25. package/lib/cli/bin.js +12 -0
  26. package/lib/index.d.ts +5 -0
  27. package/lib/index.js +5 -0
  28. package/lib/methods/mulmo_script.d.ts +0 -1
  29. package/lib/methods/mulmo_script.js +0 -5
  30. package/lib/methods/mulmo_studio.d.ts +1 -1
  31. package/lib/tools/create_mulmo_script_from_url.js +2 -2
  32. package/lib/tools/create_mulmo_script_interactively.js +2 -2
  33. package/lib/tools/story_to_script.js +2 -2
  34. package/lib/types/index.d.ts +1 -0
  35. package/lib/types/index.js +1 -0
  36. package/lib/types/schema.d.ts +155 -54
  37. package/lib/types/schema.js +14 -2
  38. package/lib/types/type.d.ts +3 -1
  39. package/lib/utils/file.d.ts +1 -0
  40. package/lib/utils/file.js +12 -8
  41. package/lib/utils/image_plugins/image.d.ts +1 -1
  42. package/lib/utils/image_plugins/movie.d.ts +1 -1
  43. package/lib/utils/preprocess.d.ts +9 -3
  44. package/lib/utils/utils.d.ts +1 -0
  45. package/lib/utils/utils.js +3 -0
  46. package/package.json +8 -8
  47. package/scripts/templates/movie_prompts_template.json +50 -0
  48. package/scripts/templates/shorts_template.json +52 -0
@@ -827,7 +827,6 @@ export declare const mulmoAudioAssetSchema: z.ZodUnion<[z.ZodObject<{
827
827
  }>]>;
828
828
  export declare const mulmoImageParamsSchema: z.ZodObject<{
829
829
  model: z.ZodOptional<z.ZodString>;
830
- size: z.ZodOptional<z.ZodString>;
831
830
  style: z.ZodOptional<z.ZodString>;
832
831
  moderation: z.ZodOptional<z.ZodString>;
833
832
  images: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -902,7 +901,6 @@ export declare const mulmoImageParamsSchema: z.ZodObject<{
902
901
  }>>>;
903
902
  }, "strict", z.ZodTypeAny, {
904
903
  model?: string | undefined;
905
- size?: string | undefined;
906
904
  style?: string | undefined;
907
905
  moderation?: string | undefined;
908
906
  images?: Record<string, {
@@ -923,7 +921,6 @@ export declare const mulmoImageParamsSchema: z.ZodObject<{
923
921
  }> | undefined;
924
922
  }, {
925
923
  model?: string | undefined;
926
- size?: string | undefined;
927
924
  style?: string | undefined;
928
925
  moderation?: string | undefined;
929
926
  images?: Record<string, {
@@ -976,6 +973,7 @@ export declare const audioParamsSchema: z.ZodObject<{
976
973
  export declare const mulmoBeatSchema: z.ZodObject<{
977
974
  speaker: z.ZodDefault<z.ZodString>;
978
975
  text: z.ZodString;
976
+ description: z.ZodOptional<z.ZodString>;
979
977
  image: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
980
978
  type: z.ZodLiteral<"markdown">;
981
979
  markdown: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
@@ -1482,7 +1480,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
1482
1480
  duration: z.ZodOptional<z.ZodNumber>;
1483
1481
  imageParams: z.ZodOptional<z.ZodObject<{
1484
1482
  model: z.ZodOptional<z.ZodString>;
1485
- size: z.ZodOptional<z.ZodString>;
1486
1483
  style: z.ZodOptional<z.ZodString>;
1487
1484
  moderation: z.ZodOptional<z.ZodString>;
1488
1485
  images: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -1557,7 +1554,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
1557
1554
  }>>>;
1558
1555
  }, "strict", z.ZodTypeAny, {
1559
1556
  model?: string | undefined;
1560
- size?: string | undefined;
1561
1557
  style?: string | undefined;
1562
1558
  moderation?: string | undefined;
1563
1559
  images?: Record<string, {
@@ -1578,7 +1574,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
1578
1574
  }> | undefined;
1579
1575
  }, {
1580
1576
  model?: string | undefined;
1581
- size?: string | undefined;
1582
1577
  style?: string | undefined;
1583
1578
  moderation?: string | undefined;
1584
1579
  images?: Record<string, {
@@ -1624,6 +1619,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
1624
1619
  }>>;
1625
1620
  imageNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1626
1621
  imagePrompt: z.ZodOptional<z.ZodString>;
1622
+ moviePrompt: z.ZodOptional<z.ZodString>;
1627
1623
  }, "strict", z.ZodTypeAny, {
1628
1624
  text: string;
1629
1625
  speaker: string;
@@ -1750,9 +1746,9 @@ export declare const mulmoBeatSchema: z.ZodObject<{
1750
1746
  type: "midi";
1751
1747
  source: string;
1752
1748
  } | undefined;
1749
+ description?: string | undefined;
1753
1750
  imageParams?: {
1754
1751
  model?: string | undefined;
1755
- size?: string | undefined;
1756
1752
  style?: string | undefined;
1757
1753
  moderation?: string | undefined;
1758
1754
  images?: Record<string, {
@@ -1780,6 +1776,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
1780
1776
  } | undefined;
1781
1777
  imageNames?: string[] | undefined;
1782
1778
  imagePrompt?: string | undefined;
1779
+ moviePrompt?: string | undefined;
1783
1780
  }, {
1784
1781
  text: string;
1785
1782
  duration?: number | undefined;
@@ -1906,9 +1903,9 @@ export declare const mulmoBeatSchema: z.ZodObject<{
1906
1903
  source: string;
1907
1904
  } | undefined;
1908
1905
  speaker?: string | undefined;
1906
+ description?: string | undefined;
1909
1907
  imageParams?: {
1910
1908
  model?: string | undefined;
1911
- size?: string | undefined;
1912
1909
  style?: string | undefined;
1913
1910
  moderation?: string | undefined;
1914
1911
  images?: Record<string, {
@@ -1936,6 +1933,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
1936
1933
  } | undefined;
1937
1934
  imageNames?: string[] | undefined;
1938
1935
  imagePrompt?: string | undefined;
1936
+ moviePrompt?: string | undefined;
1939
1937
  }>;
1940
1938
  export declare const mulmoCanvasDimensionSchema: z.ZodDefault<z.ZodObject<{
1941
1939
  width: z.ZodNumber;
@@ -2010,6 +2008,17 @@ export declare const mulmoSpeechParamsSchema: z.ZodObject<{
2010
2008
  provider?: "openai" | "nijivoice" | "google" | undefined;
2011
2009
  }>;
2012
2010
  export declare const text2ImageProviderSchema: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"google">]>>;
2011
+ export declare const text2MovieProviderSchema: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"google">]>>;
2012
+ export declare const mulmoMovieParamsSchema: z.ZodObject<{
2013
+ provider: z.ZodOptional<z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"google">]>>>;
2014
+ model: z.ZodOptional<z.ZodString>;
2015
+ }, "strict", z.ZodTypeAny, {
2016
+ model?: string | undefined;
2017
+ provider?: "openai" | "google" | undefined;
2018
+ }, {
2019
+ model?: string | undefined;
2020
+ provider?: "openai" | "google" | undefined;
2021
+ }>;
2013
2022
  export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2014
2023
  $mulmocast: z.ZodObject<{
2015
2024
  version: z.ZodLiteral<"1.0">;
@@ -2084,7 +2093,6 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2084
2093
  }>>;
2085
2094
  imageParams: z.ZodOptional<z.ZodObject<{
2086
2095
  model: z.ZodOptional<z.ZodString>;
2087
- size: z.ZodOptional<z.ZodString>;
2088
2096
  style: z.ZodOptional<z.ZodString>;
2089
2097
  moderation: z.ZodOptional<z.ZodString>;
2090
2098
  images: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -2162,7 +2170,6 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2162
2170
  }, "strict", z.ZodTypeAny, {
2163
2171
  provider: "openai" | "google";
2164
2172
  model?: string | undefined;
2165
- size?: string | undefined;
2166
2173
  style?: string | undefined;
2167
2174
  moderation?: string | undefined;
2168
2175
  images?: Record<string, {
@@ -2183,7 +2190,6 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2183
2190
  }> | undefined;
2184
2191
  }, {
2185
2192
  model?: string | undefined;
2186
- size?: string | undefined;
2187
2193
  style?: string | undefined;
2188
2194
  moderation?: string | undefined;
2189
2195
  images?: Record<string, {
@@ -2204,6 +2210,16 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2204
2210
  }> | undefined;
2205
2211
  provider?: "openai" | "google" | undefined;
2206
2212
  }>>;
2213
+ movieParams: z.ZodOptional<z.ZodObject<{
2214
+ provider: z.ZodOptional<z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"google">]>>>;
2215
+ model: z.ZodOptional<z.ZodString>;
2216
+ }, "strict", z.ZodTypeAny, {
2217
+ model?: string | undefined;
2218
+ provider?: "openai" | "google" | undefined;
2219
+ }, {
2220
+ model?: string | undefined;
2221
+ provider?: "openai" | "google" | undefined;
2222
+ }>>;
2207
2223
  textSlideParams: z.ZodOptional<z.ZodObject<{
2208
2224
  cssStyles: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
2209
2225
  }, "strict", z.ZodTypeAny, {
@@ -2257,7 +2273,6 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2257
2273
  imageParams?: {
2258
2274
  provider: "openai" | "google";
2259
2275
  model?: string | undefined;
2260
- size?: string | undefined;
2261
2276
  style?: string | undefined;
2262
2277
  moderation?: string | undefined;
2263
2278
  images?: Record<string, {
@@ -2280,6 +2295,10 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2280
2295
  textSlideParams?: {
2281
2296
  cssStyles: string | string[];
2282
2297
  } | undefined;
2298
+ movieParams?: {
2299
+ model?: string | undefined;
2300
+ provider?: "openai" | "google" | undefined;
2301
+ } | undefined;
2283
2302
  omitCaptions?: boolean | undefined;
2284
2303
  }, {
2285
2304
  $mulmocast: {
@@ -2288,7 +2307,6 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2288
2307
  };
2289
2308
  imageParams?: {
2290
2309
  model?: string | undefined;
2291
- size?: string | undefined;
2292
2310
  style?: string | undefined;
2293
2311
  moderation?: string | undefined;
2294
2312
  images?: Record<string, {
@@ -2333,6 +2351,10 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
2333
2351
  }>;
2334
2352
  provider?: "openai" | "nijivoice" | "google" | undefined;
2335
2353
  } | undefined;
2354
+ movieParams?: {
2355
+ model?: string | undefined;
2356
+ provider?: "openai" | "google" | undefined;
2357
+ } | undefined;
2336
2358
  omitCaptions?: boolean | undefined;
2337
2359
  }>;
2338
2360
  export declare const mulmoReferenceSchema: z.ZodObject<{
@@ -2425,7 +2447,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
2425
2447
  }>>;
2426
2448
  imageParams: z.ZodOptional<z.ZodObject<{
2427
2449
  model: z.ZodOptional<z.ZodString>;
2428
- size: z.ZodOptional<z.ZodString>;
2429
2450
  style: z.ZodOptional<z.ZodString>;
2430
2451
  moderation: z.ZodOptional<z.ZodString>;
2431
2452
  images: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -2503,7 +2524,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
2503
2524
  }, "strict", z.ZodTypeAny, {
2504
2525
  provider: "openai" | "google";
2505
2526
  model?: string | undefined;
2506
- size?: string | undefined;
2507
2527
  style?: string | undefined;
2508
2528
  moderation?: string | undefined;
2509
2529
  images?: Record<string, {
@@ -2524,7 +2544,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
2524
2544
  }> | undefined;
2525
2545
  }, {
2526
2546
  model?: string | undefined;
2527
- size?: string | undefined;
2528
2547
  style?: string | undefined;
2529
2548
  moderation?: string | undefined;
2530
2549
  images?: Record<string, {
@@ -2545,6 +2564,16 @@ export declare const mulmoScriptSchema: z.ZodObject<{
2545
2564
  }> | undefined;
2546
2565
  provider?: "openai" | "google" | undefined;
2547
2566
  }>>;
2567
+ movieParams: z.ZodOptional<z.ZodObject<{
2568
+ provider: z.ZodOptional<z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"google">]>>>;
2569
+ model: z.ZodOptional<z.ZodString>;
2570
+ }, "strict", z.ZodTypeAny, {
2571
+ model?: string | undefined;
2572
+ provider?: "openai" | "google" | undefined;
2573
+ }, {
2574
+ model?: string | undefined;
2575
+ provider?: "openai" | "google" | undefined;
2576
+ }>>;
2548
2577
  textSlideParams: z.ZodOptional<z.ZodObject<{
2549
2578
  cssStyles: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
2550
2579
  }, "strict", z.ZodTypeAny, {
@@ -2592,6 +2621,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
2592
2621
  beats: z.ZodArray<z.ZodObject<{
2593
2622
  speaker: z.ZodDefault<z.ZodString>;
2594
2623
  text: z.ZodString;
2624
+ description: z.ZodOptional<z.ZodString>;
2595
2625
  image: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
2596
2626
  type: z.ZodLiteral<"markdown">;
2597
2627
  markdown: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
@@ -3098,7 +3128,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3098
3128
  duration: z.ZodOptional<z.ZodNumber>;
3099
3129
  imageParams: z.ZodOptional<z.ZodObject<{
3100
3130
  model: z.ZodOptional<z.ZodString>;
3101
- size: z.ZodOptional<z.ZodString>;
3102
3131
  style: z.ZodOptional<z.ZodString>;
3103
3132
  moderation: z.ZodOptional<z.ZodString>;
3104
3133
  images: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -3173,7 +3202,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3173
3202
  }>>>;
3174
3203
  }, "strict", z.ZodTypeAny, {
3175
3204
  model?: string | undefined;
3176
- size?: string | undefined;
3177
3205
  style?: string | undefined;
3178
3206
  moderation?: string | undefined;
3179
3207
  images?: Record<string, {
@@ -3194,7 +3222,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3194
3222
  }> | undefined;
3195
3223
  }, {
3196
3224
  model?: string | undefined;
3197
- size?: string | undefined;
3198
3225
  style?: string | undefined;
3199
3226
  moderation?: string | undefined;
3200
3227
  images?: Record<string, {
@@ -3240,6 +3267,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3240
3267
  }>>;
3241
3268
  imageNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3242
3269
  imagePrompt: z.ZodOptional<z.ZodString>;
3270
+ moviePrompt: z.ZodOptional<z.ZodString>;
3243
3271
  }, "strict", z.ZodTypeAny, {
3244
3272
  text: string;
3245
3273
  speaker: string;
@@ -3366,9 +3394,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3366
3394
  type: "midi";
3367
3395
  source: string;
3368
3396
  } | undefined;
3397
+ description?: string | undefined;
3369
3398
  imageParams?: {
3370
3399
  model?: string | undefined;
3371
- size?: string | undefined;
3372
3400
  style?: string | undefined;
3373
3401
  moderation?: string | undefined;
3374
3402
  images?: Record<string, {
@@ -3396,6 +3424,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3396
3424
  } | undefined;
3397
3425
  imageNames?: string[] | undefined;
3398
3426
  imagePrompt?: string | undefined;
3427
+ moviePrompt?: string | undefined;
3399
3428
  }, {
3400
3429
  text: string;
3401
3430
  duration?: number | undefined;
@@ -3522,9 +3551,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3522
3551
  source: string;
3523
3552
  } | undefined;
3524
3553
  speaker?: string | undefined;
3554
+ description?: string | undefined;
3525
3555
  imageParams?: {
3526
3556
  model?: string | undefined;
3527
- size?: string | undefined;
3528
3557
  style?: string | undefined;
3529
3558
  moderation?: string | undefined;
3530
3559
  images?: Record<string, {
@@ -3552,6 +3581,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3552
3581
  } | undefined;
3553
3582
  imageNames?: string[] | undefined;
3554
3583
  imagePrompt?: string | undefined;
3584
+ moviePrompt?: string | undefined;
3555
3585
  }>, "many">;
3556
3586
  imagePath: z.ZodOptional<z.ZodString>;
3557
3587
  __test_invalid__: z.ZodOptional<z.ZodBoolean>;
@@ -3707,9 +3737,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3707
3737
  type: "midi";
3708
3738
  source: string;
3709
3739
  } | undefined;
3740
+ description?: string | undefined;
3710
3741
  imageParams?: {
3711
3742
  model?: string | undefined;
3712
- size?: string | undefined;
3713
3743
  style?: string | undefined;
3714
3744
  moderation?: string | undefined;
3715
3745
  images?: Record<string, {
@@ -3737,13 +3767,14 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3737
3767
  } | undefined;
3738
3768
  imageNames?: string[] | undefined;
3739
3769
  imagePrompt?: string | undefined;
3770
+ moviePrompt?: string | undefined;
3740
3771
  }[];
3741
3772
  lang?: string | undefined;
3742
3773
  title?: string | undefined;
3774
+ description?: string | undefined;
3743
3775
  imageParams?: {
3744
3776
  provider: "openai" | "google";
3745
3777
  model?: string | undefined;
3746
- size?: string | undefined;
3747
3778
  style?: string | undefined;
3748
3779
  moderation?: string | undefined;
3749
3780
  images?: Record<string, {
@@ -3766,8 +3797,11 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3766
3797
  textSlideParams?: {
3767
3798
  cssStyles: string | string[];
3768
3799
  } | undefined;
3800
+ movieParams?: {
3801
+ model?: string | undefined;
3802
+ provider?: "openai" | "google" | undefined;
3803
+ } | undefined;
3769
3804
  omitCaptions?: boolean | undefined;
3770
- description?: string | undefined;
3771
3805
  references?: {
3772
3806
  type: "image" | "audio" | "article" | "paper" | "video";
3773
3807
  url: string;
@@ -3907,9 +3941,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3907
3941
  source: string;
3908
3942
  } | undefined;
3909
3943
  speaker?: string | undefined;
3944
+ description?: string | undefined;
3910
3945
  imageParams?: {
3911
3946
  model?: string | undefined;
3912
- size?: string | undefined;
3913
3947
  style?: string | undefined;
3914
3948
  moderation?: string | undefined;
3915
3949
  images?: Record<string, {
@@ -3937,12 +3971,13 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3937
3971
  } | undefined;
3938
3972
  imageNames?: string[] | undefined;
3939
3973
  imagePrompt?: string | undefined;
3974
+ moviePrompt?: string | undefined;
3940
3975
  }[];
3941
3976
  lang?: string | undefined;
3942
3977
  title?: string | undefined;
3978
+ description?: string | undefined;
3943
3979
  imageParams?: {
3944
3980
  model?: string | undefined;
3945
- size?: string | undefined;
3946
3981
  style?: string | undefined;
3947
3982
  moderation?: string | undefined;
3948
3983
  images?: Record<string, {
@@ -3987,8 +4022,11 @@ export declare const mulmoScriptSchema: z.ZodObject<{
3987
4022
  }>;
3988
4023
  provider?: "openai" | "nijivoice" | "google" | undefined;
3989
4024
  } | undefined;
4025
+ movieParams?: {
4026
+ model?: string | undefined;
4027
+ provider?: "openai" | "google" | undefined;
4028
+ } | undefined;
3990
4029
  omitCaptions?: boolean | undefined;
3991
- description?: string | undefined;
3992
4030
  references?: {
3993
4031
  url: string;
3994
4032
  type?: "image" | "audio" | "article" | "paper" | "video" | undefined;
@@ -4003,18 +4041,21 @@ export declare const mulmoStudioBeatSchema: z.ZodObject<{
4003
4041
  duration: z.ZodOptional<z.ZodNumber>;
4004
4042
  audioFile: z.ZodOptional<z.ZodString>;
4005
4043
  imageFile: z.ZodOptional<z.ZodString>;
4044
+ movieFile: z.ZodOptional<z.ZodString>;
4006
4045
  captionFile: z.ZodOptional<z.ZodString>;
4007
4046
  }, "strict", z.ZodTypeAny, {
4008
4047
  duration?: number | undefined;
4009
4048
  hash?: string | undefined;
4010
4049
  audioFile?: string | undefined;
4011
4050
  imageFile?: string | undefined;
4051
+ movieFile?: string | undefined;
4012
4052
  captionFile?: string | undefined;
4013
4053
  }, {
4014
4054
  duration?: number | undefined;
4015
4055
  hash?: string | undefined;
4016
4056
  audioFile?: string | undefined;
4017
4057
  imageFile?: string | undefined;
4058
+ movieFile?: string | undefined;
4018
4059
  captionFile?: string | undefined;
4019
4060
  }>;
4020
4061
  export declare const mulmoStudioMultiLingualDataSchema: z.ZodObject<{
@@ -4117,15 +4158,18 @@ export declare const mulmoSessionStateSchema: z.ZodObject<{
4117
4158
  inBeatSession: z.ZodObject<{
4118
4159
  audio: z.ZodSet<z.ZodNumber>;
4119
4160
  image: z.ZodSet<z.ZodNumber>;
4161
+ movie: z.ZodSet<z.ZodNumber>;
4120
4162
  multiLingual: z.ZodSet<z.ZodNumber>;
4121
4163
  caption: z.ZodSet<z.ZodNumber>;
4122
4164
  }, "strip", z.ZodTypeAny, {
4123
4165
  image: Set<number>;
4166
+ movie: Set<number>;
4124
4167
  audio: Set<number>;
4125
4168
  multiLingual: Set<number>;
4126
4169
  caption: Set<number>;
4127
4170
  }, {
4128
4171
  image: Set<number>;
4172
+ movie: Set<number>;
4129
4173
  audio: Set<number>;
4130
4174
  multiLingual: Set<number>;
4131
4175
  caption: Set<number>;
@@ -4141,6 +4185,7 @@ export declare const mulmoSessionStateSchema: z.ZodObject<{
4141
4185
  };
4142
4186
  inBeatSession: {
4143
4187
  image: Set<number>;
4188
+ movie: Set<number>;
4144
4189
  audio: Set<number>;
4145
4190
  multiLingual: Set<number>;
4146
4191
  caption: Set<number>;
@@ -4156,6 +4201,7 @@ export declare const mulmoSessionStateSchema: z.ZodObject<{
4156
4201
  };
4157
4202
  inBeatSession: {
4158
4203
  image: Set<number>;
4204
+ movie: Set<number>;
4159
4205
  audio: Set<number>;
4160
4206
  multiLingual: Set<number>;
4161
4207
  caption: Set<number>;
@@ -4236,7 +4282,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
4236
4282
  }>>;
4237
4283
  imageParams: z.ZodOptional<z.ZodObject<{
4238
4284
  model: z.ZodOptional<z.ZodString>;
4239
- size: z.ZodOptional<z.ZodString>;
4240
4285
  style: z.ZodOptional<z.ZodString>;
4241
4286
  moderation: z.ZodOptional<z.ZodString>;
4242
4287
  images: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -4314,7 +4359,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
4314
4359
  }, "strict", z.ZodTypeAny, {
4315
4360
  provider: "openai" | "google";
4316
4361
  model?: string | undefined;
4317
- size?: string | undefined;
4318
4362
  style?: string | undefined;
4319
4363
  moderation?: string | undefined;
4320
4364
  images?: Record<string, {
@@ -4335,7 +4379,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
4335
4379
  }> | undefined;
4336
4380
  }, {
4337
4381
  model?: string | undefined;
4338
- size?: string | undefined;
4339
4382
  style?: string | undefined;
4340
4383
  moderation?: string | undefined;
4341
4384
  images?: Record<string, {
@@ -4356,6 +4399,16 @@ export declare const mulmoStudioSchema: z.ZodObject<{
4356
4399
  }> | undefined;
4357
4400
  provider?: "openai" | "google" | undefined;
4358
4401
  }>>;
4402
+ movieParams: z.ZodOptional<z.ZodObject<{
4403
+ provider: z.ZodOptional<z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"google">]>>>;
4404
+ model: z.ZodOptional<z.ZodString>;
4405
+ }, "strict", z.ZodTypeAny, {
4406
+ model?: string | undefined;
4407
+ provider?: "openai" | "google" | undefined;
4408
+ }, {
4409
+ model?: string | undefined;
4410
+ provider?: "openai" | "google" | undefined;
4411
+ }>>;
4359
4412
  textSlideParams: z.ZodOptional<z.ZodObject<{
4360
4413
  cssStyles: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
4361
4414
  }, "strict", z.ZodTypeAny, {
@@ -4403,6 +4456,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
4403
4456
  beats: z.ZodArray<z.ZodObject<{
4404
4457
  speaker: z.ZodDefault<z.ZodString>;
4405
4458
  text: z.ZodString;
4459
+ description: z.ZodOptional<z.ZodString>;
4406
4460
  image: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
4407
4461
  type: z.ZodLiteral<"markdown">;
4408
4462
  markdown: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
@@ -4909,7 +4963,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
4909
4963
  duration: z.ZodOptional<z.ZodNumber>;
4910
4964
  imageParams: z.ZodOptional<z.ZodObject<{
4911
4965
  model: z.ZodOptional<z.ZodString>;
4912
- size: z.ZodOptional<z.ZodString>;
4913
4966
  style: z.ZodOptional<z.ZodString>;
4914
4967
  moderation: z.ZodOptional<z.ZodString>;
4915
4968
  images: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -4984,7 +5037,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
4984
5037
  }>>>;
4985
5038
  }, "strict", z.ZodTypeAny, {
4986
5039
  model?: string | undefined;
4987
- size?: string | undefined;
4988
5040
  style?: string | undefined;
4989
5041
  moderation?: string | undefined;
4990
5042
  images?: Record<string, {
@@ -5005,7 +5057,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5005
5057
  }> | undefined;
5006
5058
  }, {
5007
5059
  model?: string | undefined;
5008
- size?: string | undefined;
5009
5060
  style?: string | undefined;
5010
5061
  moderation?: string | undefined;
5011
5062
  images?: Record<string, {
@@ -5051,6 +5102,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5051
5102
  }>>;
5052
5103
  imageNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5053
5104
  imagePrompt: z.ZodOptional<z.ZodString>;
5105
+ moviePrompt: z.ZodOptional<z.ZodString>;
5054
5106
  }, "strict", z.ZodTypeAny, {
5055
5107
  text: string;
5056
5108
  speaker: string;
@@ -5177,9 +5229,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5177
5229
  type: "midi";
5178
5230
  source: string;
5179
5231
  } | undefined;
5232
+ description?: string | undefined;
5180
5233
  imageParams?: {
5181
5234
  model?: string | undefined;
5182
- size?: string | undefined;
5183
5235
  style?: string | undefined;
5184
5236
  moderation?: string | undefined;
5185
5237
  images?: Record<string, {
@@ -5207,6 +5259,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5207
5259
  } | undefined;
5208
5260
  imageNames?: string[] | undefined;
5209
5261
  imagePrompt?: string | undefined;
5262
+ moviePrompt?: string | undefined;
5210
5263
  }, {
5211
5264
  text: string;
5212
5265
  duration?: number | undefined;
@@ -5333,9 +5386,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5333
5386
  source: string;
5334
5387
  } | undefined;
5335
5388
  speaker?: string | undefined;
5389
+ description?: string | undefined;
5336
5390
  imageParams?: {
5337
5391
  model?: string | undefined;
5338
- size?: string | undefined;
5339
5392
  style?: string | undefined;
5340
5393
  moderation?: string | undefined;
5341
5394
  images?: Record<string, {
@@ -5363,6 +5416,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5363
5416
  } | undefined;
5364
5417
  imageNames?: string[] | undefined;
5365
5418
  imagePrompt?: string | undefined;
5419
+ moviePrompt?: string | undefined;
5366
5420
  }>, "many">;
5367
5421
  imagePath: z.ZodOptional<z.ZodString>;
5368
5422
  __test_invalid__: z.ZodOptional<z.ZodBoolean>;
@@ -5518,9 +5572,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5518
5572
  type: "midi";
5519
5573
  source: string;
5520
5574
  } | undefined;
5575
+ description?: string | undefined;
5521
5576
  imageParams?: {
5522
5577
  model?: string | undefined;
5523
- size?: string | undefined;
5524
5578
  style?: string | undefined;
5525
5579
  moderation?: string | undefined;
5526
5580
  images?: Record<string, {
@@ -5548,13 +5602,14 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5548
5602
  } | undefined;
5549
5603
  imageNames?: string[] | undefined;
5550
5604
  imagePrompt?: string | undefined;
5605
+ moviePrompt?: string | undefined;
5551
5606
  }[];
5552
5607
  lang?: string | undefined;
5553
5608
  title?: string | undefined;
5609
+ description?: string | undefined;
5554
5610
  imageParams?: {
5555
5611
  provider: "openai" | "google";
5556
5612
  model?: string | undefined;
5557
- size?: string | undefined;
5558
5613
  style?: string | undefined;
5559
5614
  moderation?: string | undefined;
5560
5615
  images?: Record<string, {
@@ -5577,8 +5632,11 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5577
5632
  textSlideParams?: {
5578
5633
  cssStyles: string | string[];
5579
5634
  } | undefined;
5635
+ movieParams?: {
5636
+ model?: string | undefined;
5637
+ provider?: "openai" | "google" | undefined;
5638
+ } | undefined;
5580
5639
  omitCaptions?: boolean | undefined;
5581
- description?: string | undefined;
5582
5640
  references?: {
5583
5641
  type: "image" | "audio" | "article" | "paper" | "video";
5584
5642
  url: string;
@@ -5718,9 +5776,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5718
5776
  source: string;
5719
5777
  } | undefined;
5720
5778
  speaker?: string | undefined;
5779
+ description?: string | undefined;
5721
5780
  imageParams?: {
5722
5781
  model?: string | undefined;
5723
- size?: string | undefined;
5724
5782
  style?: string | undefined;
5725
5783
  moderation?: string | undefined;
5726
5784
  images?: Record<string, {
@@ -5748,12 +5806,13 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5748
5806
  } | undefined;
5749
5807
  imageNames?: string[] | undefined;
5750
5808
  imagePrompt?: string | undefined;
5809
+ moviePrompt?: string | undefined;
5751
5810
  }[];
5752
5811
  lang?: string | undefined;
5753
5812
  title?: string | undefined;
5813
+ description?: string | undefined;
5754
5814
  imageParams?: {
5755
5815
  model?: string | undefined;
5756
- size?: string | undefined;
5757
5816
  style?: string | undefined;
5758
5817
  moderation?: string | undefined;
5759
5818
  images?: Record<string, {
@@ -5798,8 +5857,11 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5798
5857
  }>;
5799
5858
  provider?: "openai" | "nijivoice" | "google" | undefined;
5800
5859
  } | undefined;
5860
+ movieParams?: {
5861
+ model?: string | undefined;
5862
+ provider?: "openai" | "google" | undefined;
5863
+ } | undefined;
5801
5864
  omitCaptions?: boolean | undefined;
5802
- description?: string | undefined;
5803
5865
  references?: {
5804
5866
  url: string;
5805
5867
  type?: "image" | "audio" | "article" | "paper" | "video" | undefined;
@@ -5815,18 +5877,21 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5815
5877
  duration: z.ZodOptional<z.ZodNumber>;
5816
5878
  audioFile: z.ZodOptional<z.ZodString>;
5817
5879
  imageFile: z.ZodOptional<z.ZodString>;
5880
+ movieFile: z.ZodOptional<z.ZodString>;
5818
5881
  captionFile: z.ZodOptional<z.ZodString>;
5819
5882
  }, "strict", z.ZodTypeAny, {
5820
5883
  duration?: number | undefined;
5821
5884
  hash?: string | undefined;
5822
5885
  audioFile?: string | undefined;
5823
5886
  imageFile?: string | undefined;
5887
+ movieFile?: string | undefined;
5824
5888
  captionFile?: string | undefined;
5825
5889
  }, {
5826
5890
  duration?: number | undefined;
5827
5891
  hash?: string | undefined;
5828
5892
  audioFile?: string | undefined;
5829
5893
  imageFile?: string | undefined;
5894
+ movieFile?: string | undefined;
5830
5895
  captionFile?: string | undefined;
5831
5896
  }>, "many">;
5832
5897
  multiLingual: z.ZodArray<z.ZodObject<{
@@ -5892,15 +5957,18 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5892
5957
  inBeatSession: z.ZodObject<{
5893
5958
  audio: z.ZodSet<z.ZodNumber>;
5894
5959
  image: z.ZodSet<z.ZodNumber>;
5960
+ movie: z.ZodSet<z.ZodNumber>;
5895
5961
  multiLingual: z.ZodSet<z.ZodNumber>;
5896
5962
  caption: z.ZodSet<z.ZodNumber>;
5897
5963
  }, "strip", z.ZodTypeAny, {
5898
5964
  image: Set<number>;
5965
+ movie: Set<number>;
5899
5966
  audio: Set<number>;
5900
5967
  multiLingual: Set<number>;
5901
5968
  caption: Set<number>;
5902
5969
  }, {
5903
5970
  image: Set<number>;
5971
+ movie: Set<number>;
5904
5972
  audio: Set<number>;
5905
5973
  multiLingual: Set<number>;
5906
5974
  caption: Set<number>;
@@ -5916,6 +5984,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5916
5984
  };
5917
5985
  inBeatSession: {
5918
5986
  image: Set<number>;
5987
+ movie: Set<number>;
5919
5988
  audio: Set<number>;
5920
5989
  multiLingual: Set<number>;
5921
5990
  caption: Set<number>;
@@ -5931,6 +6000,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5931
6000
  };
5932
6001
  inBeatSession: {
5933
6002
  image: Set<number>;
6003
+ movie: Set<number>;
5934
6004
  audio: Set<number>;
5935
6005
  multiLingual: Set<number>;
5936
6006
  caption: Set<number>;
@@ -5942,6 +6012,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
5942
6012
  hash?: string | undefined;
5943
6013
  audioFile?: string | undefined;
5944
6014
  imageFile?: string | undefined;
6015
+ movieFile?: string | undefined;
5945
6016
  captionFile?: string | undefined;
5946
6017
  }[];
5947
6018
  multiLingual: {
@@ -6105,9 +6176,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6105
6176
  type: "midi";
6106
6177
  source: string;
6107
6178
  } | undefined;
6179
+ description?: string | undefined;
6108
6180
  imageParams?: {
6109
6181
  model?: string | undefined;
6110
- size?: string | undefined;
6111
6182
  style?: string | undefined;
6112
6183
  moderation?: string | undefined;
6113
6184
  images?: Record<string, {
@@ -6135,13 +6206,14 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6135
6206
  } | undefined;
6136
6207
  imageNames?: string[] | undefined;
6137
6208
  imagePrompt?: string | undefined;
6209
+ moviePrompt?: string | undefined;
6138
6210
  }[];
6139
6211
  lang?: string | undefined;
6140
6212
  title?: string | undefined;
6213
+ description?: string | undefined;
6141
6214
  imageParams?: {
6142
6215
  provider: "openai" | "google";
6143
6216
  model?: string | undefined;
6144
- size?: string | undefined;
6145
6217
  style?: string | undefined;
6146
6218
  moderation?: string | undefined;
6147
6219
  images?: Record<string, {
@@ -6164,8 +6236,11 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6164
6236
  textSlideParams?: {
6165
6237
  cssStyles: string | string[];
6166
6238
  } | undefined;
6239
+ movieParams?: {
6240
+ model?: string | undefined;
6241
+ provider?: "openai" | "google" | undefined;
6242
+ } | undefined;
6167
6243
  omitCaptions?: boolean | undefined;
6168
- description?: string | undefined;
6169
6244
  references?: {
6170
6245
  type: "image" | "audio" | "article" | "paper" | "video";
6171
6246
  url: string;
@@ -6187,6 +6262,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6187
6262
  };
6188
6263
  inBeatSession: {
6189
6264
  image: Set<number>;
6265
+ movie: Set<number>;
6190
6266
  audio: Set<number>;
6191
6267
  multiLingual: Set<number>;
6192
6268
  caption: Set<number>;
@@ -6198,6 +6274,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6198
6274
  hash?: string | undefined;
6199
6275
  audioFile?: string | undefined;
6200
6276
  imageFile?: string | undefined;
6277
+ movieFile?: string | undefined;
6201
6278
  captionFile?: string | undefined;
6202
6279
  }[];
6203
6280
  multiLingual: {
@@ -6340,9 +6417,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6340
6417
  source: string;
6341
6418
  } | undefined;
6342
6419
  speaker?: string | undefined;
6420
+ description?: string | undefined;
6343
6421
  imageParams?: {
6344
6422
  model?: string | undefined;
6345
- size?: string | undefined;
6346
6423
  style?: string | undefined;
6347
6424
  moderation?: string | undefined;
6348
6425
  images?: Record<string, {
@@ -6370,12 +6447,13 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6370
6447
  } | undefined;
6371
6448
  imageNames?: string[] | undefined;
6372
6449
  imagePrompt?: string | undefined;
6450
+ moviePrompt?: string | undefined;
6373
6451
  }[];
6374
6452
  lang?: string | undefined;
6375
6453
  title?: string | undefined;
6454
+ description?: string | undefined;
6376
6455
  imageParams?: {
6377
6456
  model?: string | undefined;
6378
- size?: string | undefined;
6379
6457
  style?: string | undefined;
6380
6458
  moderation?: string | undefined;
6381
6459
  images?: Record<string, {
@@ -6420,8 +6498,11 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6420
6498
  }>;
6421
6499
  provider?: "openai" | "nijivoice" | "google" | undefined;
6422
6500
  } | undefined;
6501
+ movieParams?: {
6502
+ model?: string | undefined;
6503
+ provider?: "openai" | "google" | undefined;
6504
+ } | undefined;
6423
6505
  omitCaptions?: boolean | undefined;
6424
- description?: string | undefined;
6425
6506
  references?: {
6426
6507
  url: string;
6427
6508
  type?: "image" | "audio" | "article" | "paper" | "video" | undefined;
@@ -6443,6 +6524,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
6443
6524
  };
6444
6525
  inBeatSession: {
6445
6526
  image: Set<number>;
6527
+ movie: Set<number>;
6446
6528
  audio: Set<number>;
6447
6529
  multiLingual: Set<number>;
6448
6530
  caption: Set<number>;
@@ -6528,7 +6610,6 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
6528
6610
  }>>;
6529
6611
  imageParams: z.ZodOptional<z.ZodObject<{
6530
6612
  model: z.ZodOptional<z.ZodString>;
6531
- size: z.ZodOptional<z.ZodString>;
6532
6613
  style: z.ZodOptional<z.ZodString>;
6533
6614
  moderation: z.ZodOptional<z.ZodString>;
6534
6615
  images: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -6606,7 +6687,6 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
6606
6687
  }, "strict", z.ZodTypeAny, {
6607
6688
  provider: "openai" | "google";
6608
6689
  model?: string | undefined;
6609
- size?: string | undefined;
6610
6690
  style?: string | undefined;
6611
6691
  moderation?: string | undefined;
6612
6692
  images?: Record<string, {
@@ -6627,7 +6707,6 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
6627
6707
  }> | undefined;
6628
6708
  }, {
6629
6709
  model?: string | undefined;
6630
- size?: string | undefined;
6631
6710
  style?: string | undefined;
6632
6711
  moderation?: string | undefined;
6633
6712
  images?: Record<string, {
@@ -6648,6 +6727,16 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
6648
6727
  }> | undefined;
6649
6728
  provider?: "openai" | "google" | undefined;
6650
6729
  }>>;
6730
+ movieParams: z.ZodOptional<z.ZodObject<{
6731
+ provider: z.ZodOptional<z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"google">]>>>;
6732
+ model: z.ZodOptional<z.ZodString>;
6733
+ }, "strict", z.ZodTypeAny, {
6734
+ model?: string | undefined;
6735
+ provider?: "openai" | "google" | undefined;
6736
+ }, {
6737
+ model?: string | undefined;
6738
+ provider?: "openai" | "google" | undefined;
6739
+ }>>;
6651
6740
  textSlideParams: z.ZodOptional<z.ZodObject<{
6652
6741
  cssStyles: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
6653
6742
  }, "strict", z.ZodTypeAny, {
@@ -6701,7 +6790,6 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
6701
6790
  imageParams?: {
6702
6791
  provider: "openai" | "google";
6703
6792
  model?: string | undefined;
6704
- size?: string | undefined;
6705
6793
  style?: string | undefined;
6706
6794
  moderation?: string | undefined;
6707
6795
  images?: Record<string, {
@@ -6724,6 +6812,10 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
6724
6812
  textSlideParams?: {
6725
6813
  cssStyles: string | string[];
6726
6814
  } | undefined;
6815
+ movieParams?: {
6816
+ model?: string | undefined;
6817
+ provider?: "openai" | "google" | undefined;
6818
+ } | undefined;
6727
6819
  omitCaptions?: boolean | undefined;
6728
6820
  }, {
6729
6821
  $mulmocast: {
@@ -6732,7 +6824,6 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
6732
6824
  };
6733
6825
  imageParams?: {
6734
6826
  model?: string | undefined;
6735
- size?: string | undefined;
6736
6827
  style?: string | undefined;
6737
6828
  moderation?: string | undefined;
6738
6829
  images?: Record<string, {
@@ -6777,6 +6868,10 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
6777
6868
  }>;
6778
6869
  provider?: "openai" | "nijivoice" | "google" | undefined;
6779
6870
  } | undefined;
6871
+ movieParams?: {
6872
+ model?: string | undefined;
6873
+ provider?: "openai" | "google" | undefined;
6874
+ } | undefined;
6780
6875
  omitCaptions?: boolean | undefined;
6781
6876
  }>>;
6782
6877
  }, "strict", z.ZodTypeAny, {
@@ -6813,7 +6908,6 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
6813
6908
  imageParams?: {
6814
6909
  provider: "openai" | "google";
6815
6910
  model?: string | undefined;
6816
- size?: string | undefined;
6817
6911
  style?: string | undefined;
6818
6912
  moderation?: string | undefined;
6819
6913
  images?: Record<string, {
@@ -6836,6 +6930,10 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
6836
6930
  textSlideParams?: {
6837
6931
  cssStyles: string | string[];
6838
6932
  } | undefined;
6933
+ movieParams?: {
6934
+ model?: string | undefined;
6935
+ provider?: "openai" | "google" | undefined;
6936
+ } | undefined;
6839
6937
  omitCaptions?: boolean | undefined;
6840
6938
  } | undefined;
6841
6939
  }, {
@@ -6850,7 +6948,6 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
6850
6948
  };
6851
6949
  imageParams?: {
6852
6950
  model?: string | undefined;
6853
- size?: string | undefined;
6854
6951
  style?: string | undefined;
6855
6952
  moderation?: string | undefined;
6856
6953
  images?: Record<string, {
@@ -6895,6 +6992,10 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
6895
6992
  }>;
6896
6993
  provider?: "openai" | "nijivoice" | "google" | undefined;
6897
6994
  } | undefined;
6995
+ movieParams?: {
6996
+ model?: string | undefined;
6997
+ provider?: "openai" | "google" | undefined;
6998
+ } | undefined;
6898
6999
  omitCaptions?: boolean | undefined;
6899
7000
  } | undefined;
6900
7001
  }>;