mulmocast 1.1.4 → 1.1.6
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/lib/actions/audio.d.ts +0 -1
- package/lib/actions/audio.js +18 -13
- package/lib/actions/image_agents.d.ts +3 -12
- package/lib/actions/image_agents.js +12 -8
- package/lib/actions/images.js +3 -1
- package/lib/actions/movie.js +1 -3
- package/lib/actions/translate.js +13 -31
- package/lib/agents/image_openai_agent.js +4 -1
- package/lib/agents/lipsync_replicate_agent.js +10 -3
- package/lib/cli/commands/audio/handler.js +1 -1
- package/lib/cli/commands/image/handler.js +1 -1
- package/lib/cli/commands/movie/handler.js +1 -1
- package/lib/cli/commands/pdf/handler.js +1 -1
- package/lib/cli/helpers.d.ts +1 -4
- package/lib/cli/helpers.js +3 -2
- package/lib/mcp/server.js +1 -1
- package/lib/methods/mulmo_presentation_style.d.ts +5 -5
- package/lib/methods/mulmo_presentation_style.js +14 -8
- package/lib/methods/mulmo_script.js +4 -1
- package/lib/methods/mulmo_studio_context.d.ts +1 -0
- package/lib/methods/mulmo_studio_context.js +8 -0
- package/lib/types/agent.d.ts +4 -0
- package/lib/types/schema.d.ts +712 -8
- package/lib/types/schema.js +6 -2
- package/lib/types/type.d.ts +1 -1
- package/lib/utils/const.js +1 -1
- package/lib/utils/context.d.ts +401 -34
- package/lib/utils/context.js +95 -56
- package/lib/utils/file.d.ts +1 -1
- package/lib/utils/file.js +5 -2
- package/lib/utils/filters.d.ts +1 -0
- package/lib/utils/filters.js +8 -0
- package/lib/utils/preprocess.d.ts +15 -2
- package/lib/utils/preprocess.js +3 -3
- package/lib/utils/provider2agent.d.ts +3 -2
- package/lib/utils/provider2agent.js +20 -2
- package/lib/utils/string.d.ts +1 -1
- package/lib/utils/string.js +11 -8
- package/package.json +2 -1
- package/scripts/templates/image_refs.json +1 -0
- package/scripts/templates/voice_over.json +1 -0
- package/scripts/test/gpt.json +33 -0
- package/scripts/test/mulmo_story.json +11 -0
- package/scripts/test/test.json +64 -0
- package/scripts/test/test1.json +41 -0
- package/scripts/test/test2.json +66 -0
- package/scripts/test/test_audio.json +152 -0
- package/scripts/test/test_audio_instructions.json +70 -0
- package/scripts/test/test_beats.json +59 -0
- package/scripts/test/test_captions.json +53 -0
- package/scripts/test/test_elevenlabs_models.json +194 -0
- package/scripts/test/test_en.json +29 -0
- package/scripts/test/test_hello.json +18 -0
- package/scripts/test/test_hello_google.json +26 -0
- package/scripts/test/test_html.json +67 -0
- package/scripts/test/test_image_refs.json +50 -0
- package/scripts/test/test_images.json +49 -0
- package/scripts/test/test_lang.json +87 -0
- package/scripts/test/test_layout.json +153 -0
- package/scripts/test/test_lipsync.json +62 -0
- package/scripts/test/test_loop.json +35 -0
- package/scripts/test/test_media.json +245 -0
- package/scripts/test/test_mixed_providers.json +92 -0
- package/scripts/test/test_movie.json +40 -0
- package/scripts/test/test_no_audio.json +253 -0
- package/scripts/test/test_no_audio_with_credit.json +254 -0
- package/scripts/test/test_order.json +69 -0
- package/scripts/test/test_order_portrait.json +73 -0
- package/scripts/test/test_replicate.json +145 -0
- package/scripts/test/test_slideout_left_no_audio.json +46 -0
- package/scripts/test/test_sound_effect.json +41 -0
- package/scripts/test/test_spillover.json +117 -0
- package/scripts/test/test_transition.json +56 -0
- package/scripts/test/test_transition_no_audio.json +46 -0
- package/scripts/test/test_video_speed.json +81 -0
- package/scripts/test/test_voice_over.json +105 -0
- package/scripts/test/test_voices.json +55 -0
package/lib/types/schema.d.ts
CHANGED
|
@@ -102,8 +102,57 @@ export declare const speakerDictionarySchema: z.ZodRecord<z.ZodString, z.ZodObje
|
|
|
102
102
|
}>>;
|
|
103
103
|
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
104
104
|
model: z.ZodOptional<z.ZodString>;
|
|
105
|
+
} & {
|
|
106
|
+
lang: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
107
|
+
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
108
|
+
voiceId: z.ZodString;
|
|
109
|
+
isDefault: z.ZodOptional<z.ZodBoolean>;
|
|
110
|
+
speechOptions: z.ZodOptional<z.ZodObject<{
|
|
111
|
+
speed: z.ZodOptional<z.ZodNumber>;
|
|
112
|
+
instruction: z.ZodOptional<z.ZodString>;
|
|
113
|
+
}, "strict", z.ZodTypeAny, {
|
|
114
|
+
speed?: number | undefined;
|
|
115
|
+
instruction?: string | undefined;
|
|
116
|
+
}, {
|
|
117
|
+
speed?: number | undefined;
|
|
118
|
+
instruction?: string | undefined;
|
|
119
|
+
}>>;
|
|
120
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
121
|
+
model: z.ZodOptional<z.ZodString>;
|
|
122
|
+
}, "strict", z.ZodTypeAny, {
|
|
123
|
+
voiceId: string;
|
|
124
|
+
displayName?: Record<string, string> | undefined;
|
|
125
|
+
isDefault?: boolean | undefined;
|
|
126
|
+
speechOptions?: {
|
|
127
|
+
speed?: number | undefined;
|
|
128
|
+
instruction?: string | undefined;
|
|
129
|
+
} | undefined;
|
|
130
|
+
provider?: string | undefined;
|
|
131
|
+
model?: string | undefined;
|
|
132
|
+
}, {
|
|
133
|
+
voiceId: string;
|
|
134
|
+
displayName?: Record<string, string> | undefined;
|
|
135
|
+
isDefault?: boolean | undefined;
|
|
136
|
+
speechOptions?: {
|
|
137
|
+
speed?: number | undefined;
|
|
138
|
+
instruction?: string | undefined;
|
|
139
|
+
} | undefined;
|
|
140
|
+
provider?: string | undefined;
|
|
141
|
+
model?: string | undefined;
|
|
142
|
+
}>>>;
|
|
105
143
|
}, "strict", z.ZodTypeAny, {
|
|
106
144
|
voiceId: string;
|
|
145
|
+
lang?: Record<string, {
|
|
146
|
+
voiceId: string;
|
|
147
|
+
displayName?: Record<string, string> | undefined;
|
|
148
|
+
isDefault?: boolean | undefined;
|
|
149
|
+
speechOptions?: {
|
|
150
|
+
speed?: number | undefined;
|
|
151
|
+
instruction?: string | undefined;
|
|
152
|
+
} | undefined;
|
|
153
|
+
provider?: string | undefined;
|
|
154
|
+
model?: string | undefined;
|
|
155
|
+
}> | undefined;
|
|
107
156
|
displayName?: Record<string, string> | undefined;
|
|
108
157
|
isDefault?: boolean | undefined;
|
|
109
158
|
speechOptions?: {
|
|
@@ -114,6 +163,17 @@ export declare const speakerDictionarySchema: z.ZodRecord<z.ZodString, z.ZodObje
|
|
|
114
163
|
model?: string | undefined;
|
|
115
164
|
}, {
|
|
116
165
|
voiceId: string;
|
|
166
|
+
lang?: Record<string, {
|
|
167
|
+
voiceId: string;
|
|
168
|
+
displayName?: Record<string, string> | undefined;
|
|
169
|
+
isDefault?: boolean | undefined;
|
|
170
|
+
speechOptions?: {
|
|
171
|
+
speed?: number | undefined;
|
|
172
|
+
instruction?: string | undefined;
|
|
173
|
+
} | undefined;
|
|
174
|
+
provider?: string | undefined;
|
|
175
|
+
model?: string | undefined;
|
|
176
|
+
}> | undefined;
|
|
117
177
|
displayName?: Record<string, string> | undefined;
|
|
118
178
|
isDefault?: boolean | undefined;
|
|
119
179
|
speechOptions?: {
|
|
@@ -1016,12 +1076,15 @@ export declare const text2ImageProviderSchema: z.ZodDefault<z.ZodEnum<[string, .
|
|
|
1016
1076
|
export declare const mulmoOpenAIImageModelSchema: z.ZodObject<{
|
|
1017
1077
|
provider: z.ZodLiteral<"openai">;
|
|
1018
1078
|
model: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
|
|
1079
|
+
quality: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "auto"]>>;
|
|
1019
1080
|
}, "strict", z.ZodTypeAny, {
|
|
1020
1081
|
provider: "openai";
|
|
1021
1082
|
model?: string | undefined;
|
|
1083
|
+
quality?: "low" | "medium" | "high" | "auto" | undefined;
|
|
1022
1084
|
}, {
|
|
1023
1085
|
provider: "openai";
|
|
1024
1086
|
model?: string | undefined;
|
|
1087
|
+
quality?: "low" | "medium" | "high" | "auto" | undefined;
|
|
1025
1088
|
}>;
|
|
1026
1089
|
export declare const mulmoGoogleImageModelSchema: z.ZodObject<{
|
|
1027
1090
|
provider: z.ZodLiteral<"google">;
|
|
@@ -1036,6 +1099,7 @@ export declare const mulmoGoogleImageModelSchema: z.ZodObject<{
|
|
|
1036
1099
|
export declare const mulmoImageParamsSchema: z.ZodObject<{
|
|
1037
1100
|
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
1038
1101
|
model: z.ZodOptional<z.ZodString>;
|
|
1102
|
+
quality: z.ZodOptional<z.ZodString>;
|
|
1039
1103
|
style: z.ZodOptional<z.ZodString>;
|
|
1040
1104
|
moderation: z.ZodOptional<z.ZodString>;
|
|
1041
1105
|
images: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
@@ -1121,6 +1185,7 @@ export declare const mulmoImageParamsSchema: z.ZodObject<{
|
|
|
1121
1185
|
provider: string;
|
|
1122
1186
|
model?: string | undefined;
|
|
1123
1187
|
style?: string | undefined;
|
|
1188
|
+
quality?: string | undefined;
|
|
1124
1189
|
moderation?: string | undefined;
|
|
1125
1190
|
images?: Record<string, {
|
|
1126
1191
|
type: "image";
|
|
@@ -1145,6 +1210,7 @@ export declare const mulmoImageParamsSchema: z.ZodObject<{
|
|
|
1145
1210
|
provider?: string | undefined;
|
|
1146
1211
|
model?: string | undefined;
|
|
1147
1212
|
style?: string | undefined;
|
|
1213
|
+
quality?: string | undefined;
|
|
1148
1214
|
moderation?: string | undefined;
|
|
1149
1215
|
images?: Record<string, {
|
|
1150
1216
|
type: "image";
|
|
@@ -1842,6 +1908,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1842
1908
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
1843
1909
|
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
1844
1910
|
model: z.ZodOptional<z.ZodString>;
|
|
1911
|
+
quality: z.ZodOptional<z.ZodString>;
|
|
1845
1912
|
style: z.ZodOptional<z.ZodString>;
|
|
1846
1913
|
moderation: z.ZodOptional<z.ZodString>;
|
|
1847
1914
|
images: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
@@ -1927,6 +1994,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1927
1994
|
provider: string;
|
|
1928
1995
|
model?: string | undefined;
|
|
1929
1996
|
style?: string | undefined;
|
|
1997
|
+
quality?: string | undefined;
|
|
1930
1998
|
moderation?: string | undefined;
|
|
1931
1999
|
images?: Record<string, {
|
|
1932
2000
|
type: "image";
|
|
@@ -1951,6 +2019,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1951
2019
|
provider?: string | undefined;
|
|
1952
2020
|
model?: string | undefined;
|
|
1953
2021
|
style?: string | undefined;
|
|
2022
|
+
quality?: string | undefined;
|
|
1954
2023
|
moderation?: string | undefined;
|
|
1955
2024
|
images?: Record<string, {
|
|
1956
2025
|
type: "image";
|
|
@@ -2221,6 +2290,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2221
2290
|
provider: string;
|
|
2222
2291
|
model?: string | undefined;
|
|
2223
2292
|
style?: string | undefined;
|
|
2293
|
+
quality?: string | undefined;
|
|
2224
2294
|
moderation?: string | undefined;
|
|
2225
2295
|
images?: Record<string, {
|
|
2226
2296
|
type: "image";
|
|
@@ -2420,6 +2490,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2420
2490
|
provider?: string | undefined;
|
|
2421
2491
|
model?: string | undefined;
|
|
2422
2492
|
style?: string | undefined;
|
|
2493
|
+
quality?: string | undefined;
|
|
2423
2494
|
moderation?: string | undefined;
|
|
2424
2495
|
images?: Record<string, {
|
|
2425
2496
|
type: "image";
|
|
@@ -2612,8 +2683,57 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2612
2683
|
}>>;
|
|
2613
2684
|
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
2614
2685
|
model: z.ZodOptional<z.ZodString>;
|
|
2686
|
+
} & {
|
|
2687
|
+
lang: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2688
|
+
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2689
|
+
voiceId: z.ZodString;
|
|
2690
|
+
isDefault: z.ZodOptional<z.ZodBoolean>;
|
|
2691
|
+
speechOptions: z.ZodOptional<z.ZodObject<{
|
|
2692
|
+
speed: z.ZodOptional<z.ZodNumber>;
|
|
2693
|
+
instruction: z.ZodOptional<z.ZodString>;
|
|
2694
|
+
}, "strict", z.ZodTypeAny, {
|
|
2695
|
+
speed?: number | undefined;
|
|
2696
|
+
instruction?: string | undefined;
|
|
2697
|
+
}, {
|
|
2698
|
+
speed?: number | undefined;
|
|
2699
|
+
instruction?: string | undefined;
|
|
2700
|
+
}>>;
|
|
2701
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
2702
|
+
model: z.ZodOptional<z.ZodString>;
|
|
2703
|
+
}, "strict", z.ZodTypeAny, {
|
|
2704
|
+
voiceId: string;
|
|
2705
|
+
displayName?: Record<string, string> | undefined;
|
|
2706
|
+
isDefault?: boolean | undefined;
|
|
2707
|
+
speechOptions?: {
|
|
2708
|
+
speed?: number | undefined;
|
|
2709
|
+
instruction?: string | undefined;
|
|
2710
|
+
} | undefined;
|
|
2711
|
+
provider?: string | undefined;
|
|
2712
|
+
model?: string | undefined;
|
|
2713
|
+
}, {
|
|
2714
|
+
voiceId: string;
|
|
2715
|
+
displayName?: Record<string, string> | undefined;
|
|
2716
|
+
isDefault?: boolean | undefined;
|
|
2717
|
+
speechOptions?: {
|
|
2718
|
+
speed?: number | undefined;
|
|
2719
|
+
instruction?: string | undefined;
|
|
2720
|
+
} | undefined;
|
|
2721
|
+
provider?: string | undefined;
|
|
2722
|
+
model?: string | undefined;
|
|
2723
|
+
}>>>;
|
|
2615
2724
|
}, "strict", z.ZodTypeAny, {
|
|
2616
2725
|
voiceId: string;
|
|
2726
|
+
lang?: Record<string, {
|
|
2727
|
+
voiceId: string;
|
|
2728
|
+
displayName?: Record<string, string> | undefined;
|
|
2729
|
+
isDefault?: boolean | undefined;
|
|
2730
|
+
speechOptions?: {
|
|
2731
|
+
speed?: number | undefined;
|
|
2732
|
+
instruction?: string | undefined;
|
|
2733
|
+
} | undefined;
|
|
2734
|
+
provider?: string | undefined;
|
|
2735
|
+
model?: string | undefined;
|
|
2736
|
+
}> | undefined;
|
|
2617
2737
|
displayName?: Record<string, string> | undefined;
|
|
2618
2738
|
isDefault?: boolean | undefined;
|
|
2619
2739
|
speechOptions?: {
|
|
@@ -2624,6 +2744,17 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2624
2744
|
model?: string | undefined;
|
|
2625
2745
|
}, {
|
|
2626
2746
|
voiceId: string;
|
|
2747
|
+
lang?: Record<string, {
|
|
2748
|
+
voiceId: string;
|
|
2749
|
+
displayName?: Record<string, string> | undefined;
|
|
2750
|
+
isDefault?: boolean | undefined;
|
|
2751
|
+
speechOptions?: {
|
|
2752
|
+
speed?: number | undefined;
|
|
2753
|
+
instruction?: string | undefined;
|
|
2754
|
+
} | undefined;
|
|
2755
|
+
provider?: string | undefined;
|
|
2756
|
+
model?: string | undefined;
|
|
2757
|
+
}> | undefined;
|
|
2627
2758
|
displayName?: Record<string, string> | undefined;
|
|
2628
2759
|
isDefault?: boolean | undefined;
|
|
2629
2760
|
speechOptions?: {
|
|
@@ -2636,6 +2767,17 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2636
2767
|
}, "strip", z.ZodTypeAny, {
|
|
2637
2768
|
speakers: Record<string, {
|
|
2638
2769
|
voiceId: string;
|
|
2770
|
+
lang?: Record<string, {
|
|
2771
|
+
voiceId: string;
|
|
2772
|
+
displayName?: Record<string, string> | undefined;
|
|
2773
|
+
isDefault?: boolean | undefined;
|
|
2774
|
+
speechOptions?: {
|
|
2775
|
+
speed?: number | undefined;
|
|
2776
|
+
instruction?: string | undefined;
|
|
2777
|
+
} | undefined;
|
|
2778
|
+
provider?: string | undefined;
|
|
2779
|
+
model?: string | undefined;
|
|
2780
|
+
}> | undefined;
|
|
2639
2781
|
displayName?: Record<string, string> | undefined;
|
|
2640
2782
|
isDefault?: boolean | undefined;
|
|
2641
2783
|
speechOptions?: {
|
|
@@ -2648,6 +2790,17 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2648
2790
|
}, {
|
|
2649
2791
|
speakers: Record<string, {
|
|
2650
2792
|
voiceId: string;
|
|
2793
|
+
lang?: Record<string, {
|
|
2794
|
+
voiceId: string;
|
|
2795
|
+
displayName?: Record<string, string> | undefined;
|
|
2796
|
+
isDefault?: boolean | undefined;
|
|
2797
|
+
speechOptions?: {
|
|
2798
|
+
speed?: number | undefined;
|
|
2799
|
+
instruction?: string | undefined;
|
|
2800
|
+
} | undefined;
|
|
2801
|
+
provider?: string | undefined;
|
|
2802
|
+
model?: string | undefined;
|
|
2803
|
+
}> | undefined;
|
|
2651
2804
|
displayName?: Record<string, string> | undefined;
|
|
2652
2805
|
isDefault?: boolean | undefined;
|
|
2653
2806
|
speechOptions?: {
|
|
@@ -2661,6 +2814,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2661
2814
|
imageParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
2662
2815
|
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
2663
2816
|
model: z.ZodOptional<z.ZodString>;
|
|
2817
|
+
quality: z.ZodOptional<z.ZodString>;
|
|
2664
2818
|
style: z.ZodOptional<z.ZodString>;
|
|
2665
2819
|
moderation: z.ZodOptional<z.ZodString>;
|
|
2666
2820
|
images: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
@@ -2746,6 +2900,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2746
2900
|
provider: string;
|
|
2747
2901
|
model?: string | undefined;
|
|
2748
2902
|
style?: string | undefined;
|
|
2903
|
+
quality?: string | undefined;
|
|
2749
2904
|
moderation?: string | undefined;
|
|
2750
2905
|
images?: Record<string, {
|
|
2751
2906
|
type: "image";
|
|
@@ -2770,6 +2925,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2770
2925
|
provider?: string | undefined;
|
|
2771
2926
|
model?: string | undefined;
|
|
2772
2927
|
style?: string | undefined;
|
|
2928
|
+
quality?: string | undefined;
|
|
2773
2929
|
moderation?: string | undefined;
|
|
2774
2930
|
images?: Record<string, {
|
|
2775
2931
|
type: "image";
|
|
@@ -2973,6 +3129,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2973
3129
|
provider: string;
|
|
2974
3130
|
model?: string | undefined;
|
|
2975
3131
|
style?: string | undefined;
|
|
3132
|
+
quality?: string | undefined;
|
|
2976
3133
|
moderation?: string | undefined;
|
|
2977
3134
|
images?: Record<string, {
|
|
2978
3135
|
type: "image";
|
|
@@ -3042,6 +3199,17 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
3042
3199
|
speechParams: {
|
|
3043
3200
|
speakers: Record<string, {
|
|
3044
3201
|
voiceId: string;
|
|
3202
|
+
lang?: Record<string, {
|
|
3203
|
+
voiceId: string;
|
|
3204
|
+
displayName?: Record<string, string> | undefined;
|
|
3205
|
+
isDefault?: boolean | undefined;
|
|
3206
|
+
speechOptions?: {
|
|
3207
|
+
speed?: number | undefined;
|
|
3208
|
+
instruction?: string | undefined;
|
|
3209
|
+
} | undefined;
|
|
3210
|
+
provider?: string | undefined;
|
|
3211
|
+
model?: string | undefined;
|
|
3212
|
+
}> | undefined;
|
|
3045
3213
|
displayName?: Record<string, string> | undefined;
|
|
3046
3214
|
isDefault?: boolean | undefined;
|
|
3047
3215
|
speechOptions?: {
|
|
@@ -3076,6 +3244,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
3076
3244
|
provider?: string | undefined;
|
|
3077
3245
|
model?: string | undefined;
|
|
3078
3246
|
style?: string | undefined;
|
|
3247
|
+
quality?: string | undefined;
|
|
3079
3248
|
moderation?: string | undefined;
|
|
3080
3249
|
images?: Record<string, {
|
|
3081
3250
|
type: "image";
|
|
@@ -3156,6 +3325,17 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
3156
3325
|
speechParams?: {
|
|
3157
3326
|
speakers: Record<string, {
|
|
3158
3327
|
voiceId: string;
|
|
3328
|
+
lang?: Record<string, {
|
|
3329
|
+
voiceId: string;
|
|
3330
|
+
displayName?: Record<string, string> | undefined;
|
|
3331
|
+
isDefault?: boolean | undefined;
|
|
3332
|
+
speechOptions?: {
|
|
3333
|
+
speed?: number | undefined;
|
|
3334
|
+
instruction?: string | undefined;
|
|
3335
|
+
} | undefined;
|
|
3336
|
+
provider?: string | undefined;
|
|
3337
|
+
model?: string | undefined;
|
|
3338
|
+
}> | undefined;
|
|
3159
3339
|
displayName?: Record<string, string> | undefined;
|
|
3160
3340
|
isDefault?: boolean | undefined;
|
|
3161
3341
|
speechOptions?: {
|
|
@@ -3221,8 +3401,57 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3221
3401
|
}>>;
|
|
3222
3402
|
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
3223
3403
|
model: z.ZodOptional<z.ZodString>;
|
|
3404
|
+
} & {
|
|
3405
|
+
lang: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3406
|
+
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3407
|
+
voiceId: z.ZodString;
|
|
3408
|
+
isDefault: z.ZodOptional<z.ZodBoolean>;
|
|
3409
|
+
speechOptions: z.ZodOptional<z.ZodObject<{
|
|
3410
|
+
speed: z.ZodOptional<z.ZodNumber>;
|
|
3411
|
+
instruction: z.ZodOptional<z.ZodString>;
|
|
3412
|
+
}, "strict", z.ZodTypeAny, {
|
|
3413
|
+
speed?: number | undefined;
|
|
3414
|
+
instruction?: string | undefined;
|
|
3415
|
+
}, {
|
|
3416
|
+
speed?: number | undefined;
|
|
3417
|
+
instruction?: string | undefined;
|
|
3418
|
+
}>>;
|
|
3419
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
3420
|
+
model: z.ZodOptional<z.ZodString>;
|
|
3421
|
+
}, "strict", z.ZodTypeAny, {
|
|
3422
|
+
voiceId: string;
|
|
3423
|
+
displayName?: Record<string, string> | undefined;
|
|
3424
|
+
isDefault?: boolean | undefined;
|
|
3425
|
+
speechOptions?: {
|
|
3426
|
+
speed?: number | undefined;
|
|
3427
|
+
instruction?: string | undefined;
|
|
3428
|
+
} | undefined;
|
|
3429
|
+
provider?: string | undefined;
|
|
3430
|
+
model?: string | undefined;
|
|
3431
|
+
}, {
|
|
3432
|
+
voiceId: string;
|
|
3433
|
+
displayName?: Record<string, string> | undefined;
|
|
3434
|
+
isDefault?: boolean | undefined;
|
|
3435
|
+
speechOptions?: {
|
|
3436
|
+
speed?: number | undefined;
|
|
3437
|
+
instruction?: string | undefined;
|
|
3438
|
+
} | undefined;
|
|
3439
|
+
provider?: string | undefined;
|
|
3440
|
+
model?: string | undefined;
|
|
3441
|
+
}>>>;
|
|
3224
3442
|
}, "strict", z.ZodTypeAny, {
|
|
3225
3443
|
voiceId: string;
|
|
3444
|
+
lang?: Record<string, {
|
|
3445
|
+
voiceId: string;
|
|
3446
|
+
displayName?: Record<string, string> | undefined;
|
|
3447
|
+
isDefault?: boolean | undefined;
|
|
3448
|
+
speechOptions?: {
|
|
3449
|
+
speed?: number | undefined;
|
|
3450
|
+
instruction?: string | undefined;
|
|
3451
|
+
} | undefined;
|
|
3452
|
+
provider?: string | undefined;
|
|
3453
|
+
model?: string | undefined;
|
|
3454
|
+
}> | undefined;
|
|
3226
3455
|
displayName?: Record<string, string> | undefined;
|
|
3227
3456
|
isDefault?: boolean | undefined;
|
|
3228
3457
|
speechOptions?: {
|
|
@@ -3233,6 +3462,17 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3233
3462
|
model?: string | undefined;
|
|
3234
3463
|
}, {
|
|
3235
3464
|
voiceId: string;
|
|
3465
|
+
lang?: Record<string, {
|
|
3466
|
+
voiceId: string;
|
|
3467
|
+
displayName?: Record<string, string> | undefined;
|
|
3468
|
+
isDefault?: boolean | undefined;
|
|
3469
|
+
speechOptions?: {
|
|
3470
|
+
speed?: number | undefined;
|
|
3471
|
+
instruction?: string | undefined;
|
|
3472
|
+
} | undefined;
|
|
3473
|
+
provider?: string | undefined;
|
|
3474
|
+
model?: string | undefined;
|
|
3475
|
+
}> | undefined;
|
|
3236
3476
|
displayName?: Record<string, string> | undefined;
|
|
3237
3477
|
isDefault?: boolean | undefined;
|
|
3238
3478
|
speechOptions?: {
|
|
@@ -3245,6 +3485,17 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3245
3485
|
}, "strip", z.ZodTypeAny, {
|
|
3246
3486
|
speakers: Record<string, {
|
|
3247
3487
|
voiceId: string;
|
|
3488
|
+
lang?: Record<string, {
|
|
3489
|
+
voiceId: string;
|
|
3490
|
+
displayName?: Record<string, string> | undefined;
|
|
3491
|
+
isDefault?: boolean | undefined;
|
|
3492
|
+
speechOptions?: {
|
|
3493
|
+
speed?: number | undefined;
|
|
3494
|
+
instruction?: string | undefined;
|
|
3495
|
+
} | undefined;
|
|
3496
|
+
provider?: string | undefined;
|
|
3497
|
+
model?: string | undefined;
|
|
3498
|
+
}> | undefined;
|
|
3248
3499
|
displayName?: Record<string, string> | undefined;
|
|
3249
3500
|
isDefault?: boolean | undefined;
|
|
3250
3501
|
speechOptions?: {
|
|
@@ -3257,6 +3508,17 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3257
3508
|
}, {
|
|
3258
3509
|
speakers: Record<string, {
|
|
3259
3510
|
voiceId: string;
|
|
3511
|
+
lang?: Record<string, {
|
|
3512
|
+
voiceId: string;
|
|
3513
|
+
displayName?: Record<string, string> | undefined;
|
|
3514
|
+
isDefault?: boolean | undefined;
|
|
3515
|
+
speechOptions?: {
|
|
3516
|
+
speed?: number | undefined;
|
|
3517
|
+
instruction?: string | undefined;
|
|
3518
|
+
} | undefined;
|
|
3519
|
+
provider?: string | undefined;
|
|
3520
|
+
model?: string | undefined;
|
|
3521
|
+
}> | undefined;
|
|
3260
3522
|
displayName?: Record<string, string> | undefined;
|
|
3261
3523
|
isDefault?: boolean | undefined;
|
|
3262
3524
|
speechOptions?: {
|
|
@@ -3270,6 +3532,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3270
3532
|
imageParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
3271
3533
|
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
3272
3534
|
model: z.ZodOptional<z.ZodString>;
|
|
3535
|
+
quality: z.ZodOptional<z.ZodString>;
|
|
3273
3536
|
style: z.ZodOptional<z.ZodString>;
|
|
3274
3537
|
moderation: z.ZodOptional<z.ZodString>;
|
|
3275
3538
|
images: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
@@ -3355,6 +3618,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3355
3618
|
provider: string;
|
|
3356
3619
|
model?: string | undefined;
|
|
3357
3620
|
style?: string | undefined;
|
|
3621
|
+
quality?: string | undefined;
|
|
3358
3622
|
moderation?: string | undefined;
|
|
3359
3623
|
images?: Record<string, {
|
|
3360
3624
|
type: "image";
|
|
@@ -3379,6 +3643,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3379
3643
|
provider?: string | undefined;
|
|
3380
3644
|
model?: string | undefined;
|
|
3381
3645
|
style?: string | undefined;
|
|
3646
|
+
quality?: string | undefined;
|
|
3382
3647
|
moderation?: string | undefined;
|
|
3383
3648
|
images?: Record<string, {
|
|
3384
3649
|
type: "image";
|
|
@@ -3596,7 +3861,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3596
3861
|
title?: string | undefined;
|
|
3597
3862
|
description?: string | undefined;
|
|
3598
3863
|
}>, "many">>;
|
|
3599
|
-
lang: z.
|
|
3864
|
+
lang: z.ZodString;
|
|
3600
3865
|
beats: z.ZodArray<z.ZodObject<{
|
|
3601
3866
|
speaker: z.ZodOptional<z.ZodString>;
|
|
3602
3867
|
text: z.ZodDefault<z.ZodString>;
|
|
@@ -4123,6 +4388,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4123
4388
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
4124
4389
|
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
4125
4390
|
model: z.ZodOptional<z.ZodString>;
|
|
4391
|
+
quality: z.ZodOptional<z.ZodString>;
|
|
4126
4392
|
style: z.ZodOptional<z.ZodString>;
|
|
4127
4393
|
moderation: z.ZodOptional<z.ZodString>;
|
|
4128
4394
|
images: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
@@ -4208,6 +4474,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4208
4474
|
provider: string;
|
|
4209
4475
|
model?: string | undefined;
|
|
4210
4476
|
style?: string | undefined;
|
|
4477
|
+
quality?: string | undefined;
|
|
4211
4478
|
moderation?: string | undefined;
|
|
4212
4479
|
images?: Record<string, {
|
|
4213
4480
|
type: "image";
|
|
@@ -4232,6 +4499,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4232
4499
|
provider?: string | undefined;
|
|
4233
4500
|
model?: string | undefined;
|
|
4234
4501
|
style?: string | undefined;
|
|
4502
|
+
quality?: string | undefined;
|
|
4235
4503
|
moderation?: string | undefined;
|
|
4236
4504
|
images?: Record<string, {
|
|
4237
4505
|
type: "image";
|
|
@@ -4502,6 +4770,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4502
4770
|
provider: string;
|
|
4503
4771
|
model?: string | undefined;
|
|
4504
4772
|
style?: string | undefined;
|
|
4773
|
+
quality?: string | undefined;
|
|
4505
4774
|
moderation?: string | undefined;
|
|
4506
4775
|
images?: Record<string, {
|
|
4507
4776
|
type: "image";
|
|
@@ -4701,6 +4970,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4701
4970
|
provider?: string | undefined;
|
|
4702
4971
|
model?: string | undefined;
|
|
4703
4972
|
style?: string | undefined;
|
|
4973
|
+
quality?: string | undefined;
|
|
4704
4974
|
moderation?: string | undefined;
|
|
4705
4975
|
images?: Record<string, {
|
|
4706
4976
|
type: "image";
|
|
@@ -4766,10 +5036,12 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4766
5036
|
imagePath: z.ZodOptional<z.ZodString>;
|
|
4767
5037
|
__test_invalid__: z.ZodOptional<z.ZodBoolean>;
|
|
4768
5038
|
}, "strict", z.ZodTypeAny, {
|
|
5039
|
+
lang: string;
|
|
4769
5040
|
imageParams: {
|
|
4770
5041
|
provider: string;
|
|
4771
5042
|
model?: string | undefined;
|
|
4772
5043
|
style?: string | undefined;
|
|
5044
|
+
quality?: string | undefined;
|
|
4773
5045
|
moderation?: string | undefined;
|
|
4774
5046
|
images?: Record<string, {
|
|
4775
5047
|
type: "image";
|
|
@@ -4839,6 +5111,17 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4839
5111
|
speechParams: {
|
|
4840
5112
|
speakers: Record<string, {
|
|
4841
5113
|
voiceId: string;
|
|
5114
|
+
lang?: Record<string, {
|
|
5115
|
+
voiceId: string;
|
|
5116
|
+
displayName?: Record<string, string> | undefined;
|
|
5117
|
+
isDefault?: boolean | undefined;
|
|
5118
|
+
speechOptions?: {
|
|
5119
|
+
speed?: number | undefined;
|
|
5120
|
+
instruction?: string | undefined;
|
|
5121
|
+
} | undefined;
|
|
5122
|
+
provider?: string | undefined;
|
|
5123
|
+
model?: string | undefined;
|
|
5124
|
+
}> | undefined;
|
|
4842
5125
|
displayName?: Record<string, string> | undefined;
|
|
4843
5126
|
isDefault?: boolean | undefined;
|
|
4844
5127
|
speechOptions?: {
|
|
@@ -4987,6 +5270,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4987
5270
|
provider: string;
|
|
4988
5271
|
model?: string | undefined;
|
|
4989
5272
|
style?: string | undefined;
|
|
5273
|
+
quality?: string | undefined;
|
|
4990
5274
|
moderation?: string | undefined;
|
|
4991
5275
|
images?: Record<string, {
|
|
4992
5276
|
type: "image";
|
|
@@ -5049,7 +5333,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5049
5333
|
} | undefined;
|
|
5050
5334
|
enableLipSync?: boolean | undefined;
|
|
5051
5335
|
}[];
|
|
5052
|
-
lang?: string | undefined;
|
|
5053
5336
|
title?: string | undefined;
|
|
5054
5337
|
description?: string | undefined;
|
|
5055
5338
|
lipSyncParams?: {
|
|
@@ -5076,6 +5359,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5076
5359
|
imagePath?: string | undefined;
|
|
5077
5360
|
__test_invalid__?: boolean | undefined;
|
|
5078
5361
|
}, {
|
|
5362
|
+
lang: string;
|
|
5079
5363
|
$mulmocast: {
|
|
5080
5364
|
version: "1.1";
|
|
5081
5365
|
credit?: "closing" | undefined;
|
|
@@ -5218,6 +5502,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5218
5502
|
provider?: string | undefined;
|
|
5219
5503
|
model?: string | undefined;
|
|
5220
5504
|
style?: string | undefined;
|
|
5505
|
+
quality?: string | undefined;
|
|
5221
5506
|
moderation?: string | undefined;
|
|
5222
5507
|
images?: Record<string, {
|
|
5223
5508
|
type: "image";
|
|
@@ -5280,13 +5565,13 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5280
5565
|
} | undefined;
|
|
5281
5566
|
enableLipSync?: boolean | undefined;
|
|
5282
5567
|
}[];
|
|
5283
|
-
lang?: string | undefined;
|
|
5284
5568
|
title?: string | undefined;
|
|
5285
5569
|
description?: string | undefined;
|
|
5286
5570
|
imageParams?: {
|
|
5287
5571
|
provider?: string | undefined;
|
|
5288
5572
|
model?: string | undefined;
|
|
5289
5573
|
style?: string | undefined;
|
|
5574
|
+
quality?: string | undefined;
|
|
5290
5575
|
moderation?: string | undefined;
|
|
5291
5576
|
images?: Record<string, {
|
|
5292
5577
|
type: "image";
|
|
@@ -5367,6 +5652,17 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5367
5652
|
speechParams?: {
|
|
5368
5653
|
speakers: Record<string, {
|
|
5369
5654
|
voiceId: string;
|
|
5655
|
+
lang?: Record<string, {
|
|
5656
|
+
voiceId: string;
|
|
5657
|
+
displayName?: Record<string, string> | undefined;
|
|
5658
|
+
isDefault?: boolean | undefined;
|
|
5659
|
+
speechOptions?: {
|
|
5660
|
+
speed?: number | undefined;
|
|
5661
|
+
instruction?: string | undefined;
|
|
5662
|
+
} | undefined;
|
|
5663
|
+
provider?: string | undefined;
|
|
5664
|
+
model?: string | undefined;
|
|
5665
|
+
}> | undefined;
|
|
5370
5666
|
displayName?: Record<string, string> | undefined;
|
|
5371
5667
|
isDefault?: boolean | undefined;
|
|
5372
5668
|
speechOptions?: {
|
|
@@ -5637,8 +5933,57 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5637
5933
|
}>>;
|
|
5638
5934
|
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
5639
5935
|
model: z.ZodOptional<z.ZodString>;
|
|
5936
|
+
} & {
|
|
5937
|
+
lang: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5938
|
+
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5939
|
+
voiceId: z.ZodString;
|
|
5940
|
+
isDefault: z.ZodOptional<z.ZodBoolean>;
|
|
5941
|
+
speechOptions: z.ZodOptional<z.ZodObject<{
|
|
5942
|
+
speed: z.ZodOptional<z.ZodNumber>;
|
|
5943
|
+
instruction: z.ZodOptional<z.ZodString>;
|
|
5944
|
+
}, "strict", z.ZodTypeAny, {
|
|
5945
|
+
speed?: number | undefined;
|
|
5946
|
+
instruction?: string | undefined;
|
|
5947
|
+
}, {
|
|
5948
|
+
speed?: number | undefined;
|
|
5949
|
+
instruction?: string | undefined;
|
|
5950
|
+
}>>;
|
|
5951
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
5952
|
+
model: z.ZodOptional<z.ZodString>;
|
|
5953
|
+
}, "strict", z.ZodTypeAny, {
|
|
5954
|
+
voiceId: string;
|
|
5955
|
+
displayName?: Record<string, string> | undefined;
|
|
5956
|
+
isDefault?: boolean | undefined;
|
|
5957
|
+
speechOptions?: {
|
|
5958
|
+
speed?: number | undefined;
|
|
5959
|
+
instruction?: string | undefined;
|
|
5960
|
+
} | undefined;
|
|
5961
|
+
provider?: string | undefined;
|
|
5962
|
+
model?: string | undefined;
|
|
5963
|
+
}, {
|
|
5964
|
+
voiceId: string;
|
|
5965
|
+
displayName?: Record<string, string> | undefined;
|
|
5966
|
+
isDefault?: boolean | undefined;
|
|
5967
|
+
speechOptions?: {
|
|
5968
|
+
speed?: number | undefined;
|
|
5969
|
+
instruction?: string | undefined;
|
|
5970
|
+
} | undefined;
|
|
5971
|
+
provider?: string | undefined;
|
|
5972
|
+
model?: string | undefined;
|
|
5973
|
+
}>>>;
|
|
5640
5974
|
}, "strict", z.ZodTypeAny, {
|
|
5641
5975
|
voiceId: string;
|
|
5976
|
+
lang?: Record<string, {
|
|
5977
|
+
voiceId: string;
|
|
5978
|
+
displayName?: Record<string, string> | undefined;
|
|
5979
|
+
isDefault?: boolean | undefined;
|
|
5980
|
+
speechOptions?: {
|
|
5981
|
+
speed?: number | undefined;
|
|
5982
|
+
instruction?: string | undefined;
|
|
5983
|
+
} | undefined;
|
|
5984
|
+
provider?: string | undefined;
|
|
5985
|
+
model?: string | undefined;
|
|
5986
|
+
}> | undefined;
|
|
5642
5987
|
displayName?: Record<string, string> | undefined;
|
|
5643
5988
|
isDefault?: boolean | undefined;
|
|
5644
5989
|
speechOptions?: {
|
|
@@ -5649,6 +5994,17 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5649
5994
|
model?: string | undefined;
|
|
5650
5995
|
}, {
|
|
5651
5996
|
voiceId: string;
|
|
5997
|
+
lang?: Record<string, {
|
|
5998
|
+
voiceId: string;
|
|
5999
|
+
displayName?: Record<string, string> | undefined;
|
|
6000
|
+
isDefault?: boolean | undefined;
|
|
6001
|
+
speechOptions?: {
|
|
6002
|
+
speed?: number | undefined;
|
|
6003
|
+
instruction?: string | undefined;
|
|
6004
|
+
} | undefined;
|
|
6005
|
+
provider?: string | undefined;
|
|
6006
|
+
model?: string | undefined;
|
|
6007
|
+
}> | undefined;
|
|
5652
6008
|
displayName?: Record<string, string> | undefined;
|
|
5653
6009
|
isDefault?: boolean | undefined;
|
|
5654
6010
|
speechOptions?: {
|
|
@@ -5661,6 +6017,17 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5661
6017
|
}, "strip", z.ZodTypeAny, {
|
|
5662
6018
|
speakers: Record<string, {
|
|
5663
6019
|
voiceId: string;
|
|
6020
|
+
lang?: Record<string, {
|
|
6021
|
+
voiceId: string;
|
|
6022
|
+
displayName?: Record<string, string> | undefined;
|
|
6023
|
+
isDefault?: boolean | undefined;
|
|
6024
|
+
speechOptions?: {
|
|
6025
|
+
speed?: number | undefined;
|
|
6026
|
+
instruction?: string | undefined;
|
|
6027
|
+
} | undefined;
|
|
6028
|
+
provider?: string | undefined;
|
|
6029
|
+
model?: string | undefined;
|
|
6030
|
+
}> | undefined;
|
|
5664
6031
|
displayName?: Record<string, string> | undefined;
|
|
5665
6032
|
isDefault?: boolean | undefined;
|
|
5666
6033
|
speechOptions?: {
|
|
@@ -5673,6 +6040,17 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5673
6040
|
}, {
|
|
5674
6041
|
speakers: Record<string, {
|
|
5675
6042
|
voiceId: string;
|
|
6043
|
+
lang?: Record<string, {
|
|
6044
|
+
voiceId: string;
|
|
6045
|
+
displayName?: Record<string, string> | undefined;
|
|
6046
|
+
isDefault?: boolean | undefined;
|
|
6047
|
+
speechOptions?: {
|
|
6048
|
+
speed?: number | undefined;
|
|
6049
|
+
instruction?: string | undefined;
|
|
6050
|
+
} | undefined;
|
|
6051
|
+
provider?: string | undefined;
|
|
6052
|
+
model?: string | undefined;
|
|
6053
|
+
}> | undefined;
|
|
5676
6054
|
displayName?: Record<string, string> | undefined;
|
|
5677
6055
|
isDefault?: boolean | undefined;
|
|
5678
6056
|
speechOptions?: {
|
|
@@ -5686,6 +6064,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5686
6064
|
imageParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
5687
6065
|
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
5688
6066
|
model: z.ZodOptional<z.ZodString>;
|
|
6067
|
+
quality: z.ZodOptional<z.ZodString>;
|
|
5689
6068
|
style: z.ZodOptional<z.ZodString>;
|
|
5690
6069
|
moderation: z.ZodOptional<z.ZodString>;
|
|
5691
6070
|
images: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
@@ -5771,6 +6150,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5771
6150
|
provider: string;
|
|
5772
6151
|
model?: string | undefined;
|
|
5773
6152
|
style?: string | undefined;
|
|
6153
|
+
quality?: string | undefined;
|
|
5774
6154
|
moderation?: string | undefined;
|
|
5775
6155
|
images?: Record<string, {
|
|
5776
6156
|
type: "image";
|
|
@@ -5795,6 +6175,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5795
6175
|
provider?: string | undefined;
|
|
5796
6176
|
model?: string | undefined;
|
|
5797
6177
|
style?: string | undefined;
|
|
6178
|
+
quality?: string | undefined;
|
|
5798
6179
|
moderation?: string | undefined;
|
|
5799
6180
|
images?: Record<string, {
|
|
5800
6181
|
type: "image";
|
|
@@ -6012,7 +6393,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6012
6393
|
title?: string | undefined;
|
|
6013
6394
|
description?: string | undefined;
|
|
6014
6395
|
}>, "many">>;
|
|
6015
|
-
lang: z.
|
|
6396
|
+
lang: z.ZodString;
|
|
6016
6397
|
beats: z.ZodArray<z.ZodObject<{
|
|
6017
6398
|
speaker: z.ZodOptional<z.ZodString>;
|
|
6018
6399
|
text: z.ZodDefault<z.ZodString>;
|
|
@@ -6539,6 +6920,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6539
6920
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
6540
6921
|
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
6541
6922
|
model: z.ZodOptional<z.ZodString>;
|
|
6923
|
+
quality: z.ZodOptional<z.ZodString>;
|
|
6542
6924
|
style: z.ZodOptional<z.ZodString>;
|
|
6543
6925
|
moderation: z.ZodOptional<z.ZodString>;
|
|
6544
6926
|
images: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
@@ -6624,6 +7006,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6624
7006
|
provider: string;
|
|
6625
7007
|
model?: string | undefined;
|
|
6626
7008
|
style?: string | undefined;
|
|
7009
|
+
quality?: string | undefined;
|
|
6627
7010
|
moderation?: string | undefined;
|
|
6628
7011
|
images?: Record<string, {
|
|
6629
7012
|
type: "image";
|
|
@@ -6648,6 +7031,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6648
7031
|
provider?: string | undefined;
|
|
6649
7032
|
model?: string | undefined;
|
|
6650
7033
|
style?: string | undefined;
|
|
7034
|
+
quality?: string | undefined;
|
|
6651
7035
|
moderation?: string | undefined;
|
|
6652
7036
|
images?: Record<string, {
|
|
6653
7037
|
type: "image";
|
|
@@ -6918,6 +7302,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6918
7302
|
provider: string;
|
|
6919
7303
|
model?: string | undefined;
|
|
6920
7304
|
style?: string | undefined;
|
|
7305
|
+
quality?: string | undefined;
|
|
6921
7306
|
moderation?: string | undefined;
|
|
6922
7307
|
images?: Record<string, {
|
|
6923
7308
|
type: "image";
|
|
@@ -7117,6 +7502,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7117
7502
|
provider?: string | undefined;
|
|
7118
7503
|
model?: string | undefined;
|
|
7119
7504
|
style?: string | undefined;
|
|
7505
|
+
quality?: string | undefined;
|
|
7120
7506
|
moderation?: string | undefined;
|
|
7121
7507
|
images?: Record<string, {
|
|
7122
7508
|
type: "image";
|
|
@@ -7182,10 +7568,12 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7182
7568
|
imagePath: z.ZodOptional<z.ZodString>;
|
|
7183
7569
|
__test_invalid__: z.ZodOptional<z.ZodBoolean>;
|
|
7184
7570
|
}, "strict", z.ZodTypeAny, {
|
|
7571
|
+
lang: string;
|
|
7185
7572
|
imageParams: {
|
|
7186
7573
|
provider: string;
|
|
7187
7574
|
model?: string | undefined;
|
|
7188
7575
|
style?: string | undefined;
|
|
7576
|
+
quality?: string | undefined;
|
|
7189
7577
|
moderation?: string | undefined;
|
|
7190
7578
|
images?: Record<string, {
|
|
7191
7579
|
type: "image";
|
|
@@ -7255,6 +7643,17 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7255
7643
|
speechParams: {
|
|
7256
7644
|
speakers: Record<string, {
|
|
7257
7645
|
voiceId: string;
|
|
7646
|
+
lang?: Record<string, {
|
|
7647
|
+
voiceId: string;
|
|
7648
|
+
displayName?: Record<string, string> | undefined;
|
|
7649
|
+
isDefault?: boolean | undefined;
|
|
7650
|
+
speechOptions?: {
|
|
7651
|
+
speed?: number | undefined;
|
|
7652
|
+
instruction?: string | undefined;
|
|
7653
|
+
} | undefined;
|
|
7654
|
+
provider?: string | undefined;
|
|
7655
|
+
model?: string | undefined;
|
|
7656
|
+
}> | undefined;
|
|
7258
7657
|
displayName?: Record<string, string> | undefined;
|
|
7259
7658
|
isDefault?: boolean | undefined;
|
|
7260
7659
|
speechOptions?: {
|
|
@@ -7403,6 +7802,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7403
7802
|
provider: string;
|
|
7404
7803
|
model?: string | undefined;
|
|
7405
7804
|
style?: string | undefined;
|
|
7805
|
+
quality?: string | undefined;
|
|
7406
7806
|
moderation?: string | undefined;
|
|
7407
7807
|
images?: Record<string, {
|
|
7408
7808
|
type: "image";
|
|
@@ -7465,7 +7865,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7465
7865
|
} | undefined;
|
|
7466
7866
|
enableLipSync?: boolean | undefined;
|
|
7467
7867
|
}[];
|
|
7468
|
-
lang?: string | undefined;
|
|
7469
7868
|
title?: string | undefined;
|
|
7470
7869
|
description?: string | undefined;
|
|
7471
7870
|
lipSyncParams?: {
|
|
@@ -7492,6 +7891,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7492
7891
|
imagePath?: string | undefined;
|
|
7493
7892
|
__test_invalid__?: boolean | undefined;
|
|
7494
7893
|
}, {
|
|
7894
|
+
lang: string;
|
|
7495
7895
|
$mulmocast: {
|
|
7496
7896
|
version: "1.1";
|
|
7497
7897
|
credit?: "closing" | undefined;
|
|
@@ -7634,6 +8034,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7634
8034
|
provider?: string | undefined;
|
|
7635
8035
|
model?: string | undefined;
|
|
7636
8036
|
style?: string | undefined;
|
|
8037
|
+
quality?: string | undefined;
|
|
7637
8038
|
moderation?: string | undefined;
|
|
7638
8039
|
images?: Record<string, {
|
|
7639
8040
|
type: "image";
|
|
@@ -7696,13 +8097,13 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7696
8097
|
} | undefined;
|
|
7697
8098
|
enableLipSync?: boolean | undefined;
|
|
7698
8099
|
}[];
|
|
7699
|
-
lang?: string | undefined;
|
|
7700
8100
|
title?: string | undefined;
|
|
7701
8101
|
description?: string | undefined;
|
|
7702
8102
|
imageParams?: {
|
|
7703
8103
|
provider?: string | undefined;
|
|
7704
8104
|
model?: string | undefined;
|
|
7705
8105
|
style?: string | undefined;
|
|
8106
|
+
quality?: string | undefined;
|
|
7706
8107
|
moderation?: string | undefined;
|
|
7707
8108
|
images?: Record<string, {
|
|
7708
8109
|
type: "image";
|
|
@@ -7783,6 +8184,17 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7783
8184
|
speechParams?: {
|
|
7784
8185
|
speakers: Record<string, {
|
|
7785
8186
|
voiceId: string;
|
|
8187
|
+
lang?: Record<string, {
|
|
8188
|
+
voiceId: string;
|
|
8189
|
+
displayName?: Record<string, string> | undefined;
|
|
8190
|
+
isDefault?: boolean | undefined;
|
|
8191
|
+
speechOptions?: {
|
|
8192
|
+
speed?: number | undefined;
|
|
8193
|
+
instruction?: string | undefined;
|
|
8194
|
+
} | undefined;
|
|
8195
|
+
provider?: string | undefined;
|
|
8196
|
+
model?: string | undefined;
|
|
8197
|
+
}> | undefined;
|
|
7786
8198
|
displayName?: Record<string, string> | undefined;
|
|
7787
8199
|
isDefault?: boolean | undefined;
|
|
7788
8200
|
speechOptions?: {
|
|
@@ -7863,10 +8275,12 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7863
8275
|
captionFile?: string | undefined;
|
|
7864
8276
|
}[];
|
|
7865
8277
|
script: {
|
|
8278
|
+
lang: string;
|
|
7866
8279
|
imageParams: {
|
|
7867
8280
|
provider: string;
|
|
7868
8281
|
model?: string | undefined;
|
|
7869
8282
|
style?: string | undefined;
|
|
8283
|
+
quality?: string | undefined;
|
|
7870
8284
|
moderation?: string | undefined;
|
|
7871
8285
|
images?: Record<string, {
|
|
7872
8286
|
type: "image";
|
|
@@ -7936,6 +8350,17 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7936
8350
|
speechParams: {
|
|
7937
8351
|
speakers: Record<string, {
|
|
7938
8352
|
voiceId: string;
|
|
8353
|
+
lang?: Record<string, {
|
|
8354
|
+
voiceId: string;
|
|
8355
|
+
displayName?: Record<string, string> | undefined;
|
|
8356
|
+
isDefault?: boolean | undefined;
|
|
8357
|
+
speechOptions?: {
|
|
8358
|
+
speed?: number | undefined;
|
|
8359
|
+
instruction?: string | undefined;
|
|
8360
|
+
} | undefined;
|
|
8361
|
+
provider?: string | undefined;
|
|
8362
|
+
model?: string | undefined;
|
|
8363
|
+
}> | undefined;
|
|
7939
8364
|
displayName?: Record<string, string> | undefined;
|
|
7940
8365
|
isDefault?: boolean | undefined;
|
|
7941
8366
|
speechOptions?: {
|
|
@@ -8084,6 +8509,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
8084
8509
|
provider: string;
|
|
8085
8510
|
model?: string | undefined;
|
|
8086
8511
|
style?: string | undefined;
|
|
8512
|
+
quality?: string | undefined;
|
|
8087
8513
|
moderation?: string | undefined;
|
|
8088
8514
|
images?: Record<string, {
|
|
8089
8515
|
type: "image";
|
|
@@ -8146,7 +8572,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
8146
8572
|
} | undefined;
|
|
8147
8573
|
enableLipSync?: boolean | undefined;
|
|
8148
8574
|
}[];
|
|
8149
|
-
lang?: string | undefined;
|
|
8150
8575
|
title?: string | undefined;
|
|
8151
8576
|
description?: string | undefined;
|
|
8152
8577
|
lipSyncParams?: {
|
|
@@ -8191,6 +8616,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
8191
8616
|
captionFile?: string | undefined;
|
|
8192
8617
|
}[];
|
|
8193
8618
|
script: {
|
|
8619
|
+
lang: string;
|
|
8194
8620
|
$mulmocast: {
|
|
8195
8621
|
version: "1.1";
|
|
8196
8622
|
credit?: "closing" | undefined;
|
|
@@ -8333,6 +8759,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
8333
8759
|
provider?: string | undefined;
|
|
8334
8760
|
model?: string | undefined;
|
|
8335
8761
|
style?: string | undefined;
|
|
8762
|
+
quality?: string | undefined;
|
|
8336
8763
|
moderation?: string | undefined;
|
|
8337
8764
|
images?: Record<string, {
|
|
8338
8765
|
type: "image";
|
|
@@ -8395,13 +8822,13 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
8395
8822
|
} | undefined;
|
|
8396
8823
|
enableLipSync?: boolean | undefined;
|
|
8397
8824
|
}[];
|
|
8398
|
-
lang?: string | undefined;
|
|
8399
8825
|
title?: string | undefined;
|
|
8400
8826
|
description?: string | undefined;
|
|
8401
8827
|
imageParams?: {
|
|
8402
8828
|
provider?: string | undefined;
|
|
8403
8829
|
model?: string | undefined;
|
|
8404
8830
|
style?: string | undefined;
|
|
8831
|
+
quality?: string | undefined;
|
|
8405
8832
|
moderation?: string | undefined;
|
|
8406
8833
|
images?: Record<string, {
|
|
8407
8834
|
type: "image";
|
|
@@ -8482,6 +8909,17 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
8482
8909
|
speechParams?: {
|
|
8483
8910
|
speakers: Record<string, {
|
|
8484
8911
|
voiceId: string;
|
|
8912
|
+
lang?: Record<string, {
|
|
8913
|
+
voiceId: string;
|
|
8914
|
+
displayName?: Record<string, string> | undefined;
|
|
8915
|
+
isDefault?: boolean | undefined;
|
|
8916
|
+
speechOptions?: {
|
|
8917
|
+
speed?: number | undefined;
|
|
8918
|
+
instruction?: string | undefined;
|
|
8919
|
+
} | undefined;
|
|
8920
|
+
provider?: string | undefined;
|
|
8921
|
+
model?: string | undefined;
|
|
8922
|
+
}> | undefined;
|
|
8485
8923
|
displayName?: Record<string, string> | undefined;
|
|
8486
8924
|
isDefault?: boolean | undefined;
|
|
8487
8925
|
speechOptions?: {
|
|
@@ -8546,8 +8984,57 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
8546
8984
|
}>>;
|
|
8547
8985
|
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
8548
8986
|
model: z.ZodOptional<z.ZodString>;
|
|
8987
|
+
} & {
|
|
8988
|
+
lang: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8989
|
+
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
8990
|
+
voiceId: z.ZodString;
|
|
8991
|
+
isDefault: z.ZodOptional<z.ZodBoolean>;
|
|
8992
|
+
speechOptions: z.ZodOptional<z.ZodObject<{
|
|
8993
|
+
speed: z.ZodOptional<z.ZodNumber>;
|
|
8994
|
+
instruction: z.ZodOptional<z.ZodString>;
|
|
8995
|
+
}, "strict", z.ZodTypeAny, {
|
|
8996
|
+
speed?: number | undefined;
|
|
8997
|
+
instruction?: string | undefined;
|
|
8998
|
+
}, {
|
|
8999
|
+
speed?: number | undefined;
|
|
9000
|
+
instruction?: string | undefined;
|
|
9001
|
+
}>>;
|
|
9002
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
9003
|
+
model: z.ZodOptional<z.ZodString>;
|
|
9004
|
+
}, "strict", z.ZodTypeAny, {
|
|
9005
|
+
voiceId: string;
|
|
9006
|
+
displayName?: Record<string, string> | undefined;
|
|
9007
|
+
isDefault?: boolean | undefined;
|
|
9008
|
+
speechOptions?: {
|
|
9009
|
+
speed?: number | undefined;
|
|
9010
|
+
instruction?: string | undefined;
|
|
9011
|
+
} | undefined;
|
|
9012
|
+
provider?: string | undefined;
|
|
9013
|
+
model?: string | undefined;
|
|
9014
|
+
}, {
|
|
9015
|
+
voiceId: string;
|
|
9016
|
+
displayName?: Record<string, string> | undefined;
|
|
9017
|
+
isDefault?: boolean | undefined;
|
|
9018
|
+
speechOptions?: {
|
|
9019
|
+
speed?: number | undefined;
|
|
9020
|
+
instruction?: string | undefined;
|
|
9021
|
+
} | undefined;
|
|
9022
|
+
provider?: string | undefined;
|
|
9023
|
+
model?: string | undefined;
|
|
9024
|
+
}>>>;
|
|
8549
9025
|
}, "strict", z.ZodTypeAny, {
|
|
8550
9026
|
voiceId: string;
|
|
9027
|
+
lang?: Record<string, {
|
|
9028
|
+
voiceId: string;
|
|
9029
|
+
displayName?: Record<string, string> | undefined;
|
|
9030
|
+
isDefault?: boolean | undefined;
|
|
9031
|
+
speechOptions?: {
|
|
9032
|
+
speed?: number | undefined;
|
|
9033
|
+
instruction?: string | undefined;
|
|
9034
|
+
} | undefined;
|
|
9035
|
+
provider?: string | undefined;
|
|
9036
|
+
model?: string | undefined;
|
|
9037
|
+
}> | undefined;
|
|
8551
9038
|
displayName?: Record<string, string> | undefined;
|
|
8552
9039
|
isDefault?: boolean | undefined;
|
|
8553
9040
|
speechOptions?: {
|
|
@@ -8558,6 +9045,17 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
8558
9045
|
model?: string | undefined;
|
|
8559
9046
|
}, {
|
|
8560
9047
|
voiceId: string;
|
|
9048
|
+
lang?: Record<string, {
|
|
9049
|
+
voiceId: string;
|
|
9050
|
+
displayName?: Record<string, string> | undefined;
|
|
9051
|
+
isDefault?: boolean | undefined;
|
|
9052
|
+
speechOptions?: {
|
|
9053
|
+
speed?: number | undefined;
|
|
9054
|
+
instruction?: string | undefined;
|
|
9055
|
+
} | undefined;
|
|
9056
|
+
provider?: string | undefined;
|
|
9057
|
+
model?: string | undefined;
|
|
9058
|
+
}> | undefined;
|
|
8561
9059
|
displayName?: Record<string, string> | undefined;
|
|
8562
9060
|
isDefault?: boolean | undefined;
|
|
8563
9061
|
speechOptions?: {
|
|
@@ -8570,6 +9068,17 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
8570
9068
|
}, "strip", z.ZodTypeAny, {
|
|
8571
9069
|
speakers: Record<string, {
|
|
8572
9070
|
voiceId: string;
|
|
9071
|
+
lang?: Record<string, {
|
|
9072
|
+
voiceId: string;
|
|
9073
|
+
displayName?: Record<string, string> | undefined;
|
|
9074
|
+
isDefault?: boolean | undefined;
|
|
9075
|
+
speechOptions?: {
|
|
9076
|
+
speed?: number | undefined;
|
|
9077
|
+
instruction?: string | undefined;
|
|
9078
|
+
} | undefined;
|
|
9079
|
+
provider?: string | undefined;
|
|
9080
|
+
model?: string | undefined;
|
|
9081
|
+
}> | undefined;
|
|
8573
9082
|
displayName?: Record<string, string> | undefined;
|
|
8574
9083
|
isDefault?: boolean | undefined;
|
|
8575
9084
|
speechOptions?: {
|
|
@@ -8582,6 +9091,17 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
8582
9091
|
}, {
|
|
8583
9092
|
speakers: Record<string, {
|
|
8584
9093
|
voiceId: string;
|
|
9094
|
+
lang?: Record<string, {
|
|
9095
|
+
voiceId: string;
|
|
9096
|
+
displayName?: Record<string, string> | undefined;
|
|
9097
|
+
isDefault?: boolean | undefined;
|
|
9098
|
+
speechOptions?: {
|
|
9099
|
+
speed?: number | undefined;
|
|
9100
|
+
instruction?: string | undefined;
|
|
9101
|
+
} | undefined;
|
|
9102
|
+
provider?: string | undefined;
|
|
9103
|
+
model?: string | undefined;
|
|
9104
|
+
}> | undefined;
|
|
8585
9105
|
displayName?: Record<string, string> | undefined;
|
|
8586
9106
|
isDefault?: boolean | undefined;
|
|
8587
9107
|
speechOptions?: {
|
|
@@ -8595,6 +9115,7 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
8595
9115
|
imageParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
8596
9116
|
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
8597
9117
|
model: z.ZodOptional<z.ZodString>;
|
|
9118
|
+
quality: z.ZodOptional<z.ZodString>;
|
|
8598
9119
|
style: z.ZodOptional<z.ZodString>;
|
|
8599
9120
|
moderation: z.ZodOptional<z.ZodString>;
|
|
8600
9121
|
images: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
@@ -8680,6 +9201,7 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
8680
9201
|
provider: string;
|
|
8681
9202
|
model?: string | undefined;
|
|
8682
9203
|
style?: string | undefined;
|
|
9204
|
+
quality?: string | undefined;
|
|
8683
9205
|
moderation?: string | undefined;
|
|
8684
9206
|
images?: Record<string, {
|
|
8685
9207
|
type: "image";
|
|
@@ -8704,6 +9226,7 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
8704
9226
|
provider?: string | undefined;
|
|
8705
9227
|
model?: string | undefined;
|
|
8706
9228
|
style?: string | undefined;
|
|
9229
|
+
quality?: string | undefined;
|
|
8707
9230
|
moderation?: string | undefined;
|
|
8708
9231
|
images?: Record<string, {
|
|
8709
9232
|
type: "image";
|
|
@@ -8907,6 +9430,7 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
8907
9430
|
provider: string;
|
|
8908
9431
|
model?: string | undefined;
|
|
8909
9432
|
style?: string | undefined;
|
|
9433
|
+
quality?: string | undefined;
|
|
8910
9434
|
moderation?: string | undefined;
|
|
8911
9435
|
images?: Record<string, {
|
|
8912
9436
|
type: "image";
|
|
@@ -8976,6 +9500,17 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
8976
9500
|
speechParams: {
|
|
8977
9501
|
speakers: Record<string, {
|
|
8978
9502
|
voiceId: string;
|
|
9503
|
+
lang?: Record<string, {
|
|
9504
|
+
voiceId: string;
|
|
9505
|
+
displayName?: Record<string, string> | undefined;
|
|
9506
|
+
isDefault?: boolean | undefined;
|
|
9507
|
+
speechOptions?: {
|
|
9508
|
+
speed?: number | undefined;
|
|
9509
|
+
instruction?: string | undefined;
|
|
9510
|
+
} | undefined;
|
|
9511
|
+
provider?: string | undefined;
|
|
9512
|
+
model?: string | undefined;
|
|
9513
|
+
}> | undefined;
|
|
8979
9514
|
displayName?: Record<string, string> | undefined;
|
|
8980
9515
|
isDefault?: boolean | undefined;
|
|
8981
9516
|
speechOptions?: {
|
|
@@ -9010,6 +9545,7 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
9010
9545
|
provider?: string | undefined;
|
|
9011
9546
|
model?: string | undefined;
|
|
9012
9547
|
style?: string | undefined;
|
|
9548
|
+
quality?: string | undefined;
|
|
9013
9549
|
moderation?: string | undefined;
|
|
9014
9550
|
images?: Record<string, {
|
|
9015
9551
|
type: "image";
|
|
@@ -9090,6 +9626,17 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
9090
9626
|
speechParams?: {
|
|
9091
9627
|
speakers: Record<string, {
|
|
9092
9628
|
voiceId: string;
|
|
9629
|
+
lang?: Record<string, {
|
|
9630
|
+
voiceId: string;
|
|
9631
|
+
displayName?: Record<string, string> | undefined;
|
|
9632
|
+
isDefault?: boolean | undefined;
|
|
9633
|
+
speechOptions?: {
|
|
9634
|
+
speed?: number | undefined;
|
|
9635
|
+
instruction?: string | undefined;
|
|
9636
|
+
} | undefined;
|
|
9637
|
+
provider?: string | undefined;
|
|
9638
|
+
model?: string | undefined;
|
|
9639
|
+
}> | undefined;
|
|
9093
9640
|
displayName?: Record<string, string> | undefined;
|
|
9094
9641
|
isDefault?: boolean | undefined;
|
|
9095
9642
|
speechOptions?: {
|
|
@@ -9111,6 +9658,7 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
9111
9658
|
provider: string;
|
|
9112
9659
|
model?: string | undefined;
|
|
9113
9660
|
style?: string | undefined;
|
|
9661
|
+
quality?: string | undefined;
|
|
9114
9662
|
moderation?: string | undefined;
|
|
9115
9663
|
images?: Record<string, {
|
|
9116
9664
|
type: "image";
|
|
@@ -9180,6 +9728,17 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
9180
9728
|
speechParams: {
|
|
9181
9729
|
speakers: Record<string, {
|
|
9182
9730
|
voiceId: string;
|
|
9731
|
+
lang?: Record<string, {
|
|
9732
|
+
voiceId: string;
|
|
9733
|
+
displayName?: Record<string, string> | undefined;
|
|
9734
|
+
isDefault?: boolean | undefined;
|
|
9735
|
+
speechOptions?: {
|
|
9736
|
+
speed?: number | undefined;
|
|
9737
|
+
instruction?: string | undefined;
|
|
9738
|
+
} | undefined;
|
|
9739
|
+
provider?: string | undefined;
|
|
9740
|
+
model?: string | undefined;
|
|
9741
|
+
}> | undefined;
|
|
9183
9742
|
displayName?: Record<string, string> | undefined;
|
|
9184
9743
|
isDefault?: boolean | undefined;
|
|
9185
9744
|
speechOptions?: {
|
|
@@ -9220,6 +9779,7 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
9220
9779
|
provider?: string | undefined;
|
|
9221
9780
|
model?: string | undefined;
|
|
9222
9781
|
style?: string | undefined;
|
|
9782
|
+
quality?: string | undefined;
|
|
9223
9783
|
moderation?: string | undefined;
|
|
9224
9784
|
images?: Record<string, {
|
|
9225
9785
|
type: "image";
|
|
@@ -9300,6 +9860,17 @@ export declare const mulmoPromptTemplateSchema: z.ZodObject<{
|
|
|
9300
9860
|
speechParams?: {
|
|
9301
9861
|
speakers: Record<string, {
|
|
9302
9862
|
voiceId: string;
|
|
9863
|
+
lang?: Record<string, {
|
|
9864
|
+
voiceId: string;
|
|
9865
|
+
displayName?: Record<string, string> | undefined;
|
|
9866
|
+
isDefault?: boolean | undefined;
|
|
9867
|
+
speechOptions?: {
|
|
9868
|
+
speed?: number | undefined;
|
|
9869
|
+
instruction?: string | undefined;
|
|
9870
|
+
} | undefined;
|
|
9871
|
+
provider?: string | undefined;
|
|
9872
|
+
model?: string | undefined;
|
|
9873
|
+
}> | undefined;
|
|
9303
9874
|
displayName?: Record<string, string> | undefined;
|
|
9304
9875
|
isDefault?: boolean | undefined;
|
|
9305
9876
|
speechOptions?: {
|
|
@@ -9355,8 +9926,57 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
9355
9926
|
}>>;
|
|
9356
9927
|
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
9357
9928
|
model: z.ZodOptional<z.ZodString>;
|
|
9929
|
+
} & {
|
|
9930
|
+
lang: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
9931
|
+
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
9932
|
+
voiceId: z.ZodString;
|
|
9933
|
+
isDefault: z.ZodOptional<z.ZodBoolean>;
|
|
9934
|
+
speechOptions: z.ZodOptional<z.ZodObject<{
|
|
9935
|
+
speed: z.ZodOptional<z.ZodNumber>;
|
|
9936
|
+
instruction: z.ZodOptional<z.ZodString>;
|
|
9937
|
+
}, "strict", z.ZodTypeAny, {
|
|
9938
|
+
speed?: number | undefined;
|
|
9939
|
+
instruction?: string | undefined;
|
|
9940
|
+
}, {
|
|
9941
|
+
speed?: number | undefined;
|
|
9942
|
+
instruction?: string | undefined;
|
|
9943
|
+
}>>;
|
|
9944
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
9945
|
+
model: z.ZodOptional<z.ZodString>;
|
|
9946
|
+
}, "strict", z.ZodTypeAny, {
|
|
9947
|
+
voiceId: string;
|
|
9948
|
+
displayName?: Record<string, string> | undefined;
|
|
9949
|
+
isDefault?: boolean | undefined;
|
|
9950
|
+
speechOptions?: {
|
|
9951
|
+
speed?: number | undefined;
|
|
9952
|
+
instruction?: string | undefined;
|
|
9953
|
+
} | undefined;
|
|
9954
|
+
provider?: string | undefined;
|
|
9955
|
+
model?: string | undefined;
|
|
9956
|
+
}, {
|
|
9957
|
+
voiceId: string;
|
|
9958
|
+
displayName?: Record<string, string> | undefined;
|
|
9959
|
+
isDefault?: boolean | undefined;
|
|
9960
|
+
speechOptions?: {
|
|
9961
|
+
speed?: number | undefined;
|
|
9962
|
+
instruction?: string | undefined;
|
|
9963
|
+
} | undefined;
|
|
9964
|
+
provider?: string | undefined;
|
|
9965
|
+
model?: string | undefined;
|
|
9966
|
+
}>>>;
|
|
9358
9967
|
}, "strict", z.ZodTypeAny, {
|
|
9359
9968
|
voiceId: string;
|
|
9969
|
+
lang?: Record<string, {
|
|
9970
|
+
voiceId: string;
|
|
9971
|
+
displayName?: Record<string, string> | undefined;
|
|
9972
|
+
isDefault?: boolean | undefined;
|
|
9973
|
+
speechOptions?: {
|
|
9974
|
+
speed?: number | undefined;
|
|
9975
|
+
instruction?: string | undefined;
|
|
9976
|
+
} | undefined;
|
|
9977
|
+
provider?: string | undefined;
|
|
9978
|
+
model?: string | undefined;
|
|
9979
|
+
}> | undefined;
|
|
9360
9980
|
displayName?: Record<string, string> | undefined;
|
|
9361
9981
|
isDefault?: boolean | undefined;
|
|
9362
9982
|
speechOptions?: {
|
|
@@ -9367,6 +9987,17 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
9367
9987
|
model?: string | undefined;
|
|
9368
9988
|
}, {
|
|
9369
9989
|
voiceId: string;
|
|
9990
|
+
lang?: Record<string, {
|
|
9991
|
+
voiceId: string;
|
|
9992
|
+
displayName?: Record<string, string> | undefined;
|
|
9993
|
+
isDefault?: boolean | undefined;
|
|
9994
|
+
speechOptions?: {
|
|
9995
|
+
speed?: number | undefined;
|
|
9996
|
+
instruction?: string | undefined;
|
|
9997
|
+
} | undefined;
|
|
9998
|
+
provider?: string | undefined;
|
|
9999
|
+
model?: string | undefined;
|
|
10000
|
+
}> | undefined;
|
|
9370
10001
|
displayName?: Record<string, string> | undefined;
|
|
9371
10002
|
isDefault?: boolean | undefined;
|
|
9372
10003
|
speechOptions?: {
|
|
@@ -9379,6 +10010,17 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
9379
10010
|
}, "strip", z.ZodTypeAny, {
|
|
9380
10011
|
speakers: Record<string, {
|
|
9381
10012
|
voiceId: string;
|
|
10013
|
+
lang?: Record<string, {
|
|
10014
|
+
voiceId: string;
|
|
10015
|
+
displayName?: Record<string, string> | undefined;
|
|
10016
|
+
isDefault?: boolean | undefined;
|
|
10017
|
+
speechOptions?: {
|
|
10018
|
+
speed?: number | undefined;
|
|
10019
|
+
instruction?: string | undefined;
|
|
10020
|
+
} | undefined;
|
|
10021
|
+
provider?: string | undefined;
|
|
10022
|
+
model?: string | undefined;
|
|
10023
|
+
}> | undefined;
|
|
9382
10024
|
displayName?: Record<string, string> | undefined;
|
|
9383
10025
|
isDefault?: boolean | undefined;
|
|
9384
10026
|
speechOptions?: {
|
|
@@ -9391,6 +10033,17 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
9391
10033
|
}, {
|
|
9392
10034
|
speakers: Record<string, {
|
|
9393
10035
|
voiceId: string;
|
|
10036
|
+
lang?: Record<string, {
|
|
10037
|
+
voiceId: string;
|
|
10038
|
+
displayName?: Record<string, string> | undefined;
|
|
10039
|
+
isDefault?: boolean | undefined;
|
|
10040
|
+
speechOptions?: {
|
|
10041
|
+
speed?: number | undefined;
|
|
10042
|
+
instruction?: string | undefined;
|
|
10043
|
+
} | undefined;
|
|
10044
|
+
provider?: string | undefined;
|
|
10045
|
+
model?: string | undefined;
|
|
10046
|
+
}> | undefined;
|
|
9394
10047
|
displayName?: Record<string, string> | undefined;
|
|
9395
10048
|
isDefault?: boolean | undefined;
|
|
9396
10049
|
speechOptions?: {
|
|
@@ -9404,6 +10057,7 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
9404
10057
|
imageParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
9405
10058
|
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
9406
10059
|
model: z.ZodOptional<z.ZodString>;
|
|
10060
|
+
quality: z.ZodOptional<z.ZodString>;
|
|
9407
10061
|
style: z.ZodOptional<z.ZodString>;
|
|
9408
10062
|
moderation: z.ZodOptional<z.ZodString>;
|
|
9409
10063
|
images: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
@@ -9489,6 +10143,7 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
9489
10143
|
provider: string;
|
|
9490
10144
|
model?: string | undefined;
|
|
9491
10145
|
style?: string | undefined;
|
|
10146
|
+
quality?: string | undefined;
|
|
9492
10147
|
moderation?: string | undefined;
|
|
9493
10148
|
images?: Record<string, {
|
|
9494
10149
|
type: "image";
|
|
@@ -9513,6 +10168,7 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
9513
10168
|
provider?: string | undefined;
|
|
9514
10169
|
model?: string | undefined;
|
|
9515
10170
|
style?: string | undefined;
|
|
10171
|
+
quality?: string | undefined;
|
|
9516
10172
|
moderation?: string | undefined;
|
|
9517
10173
|
images?: Record<string, {
|
|
9518
10174
|
type: "image";
|
|
@@ -9716,6 +10372,7 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
9716
10372
|
provider: string;
|
|
9717
10373
|
model?: string | undefined;
|
|
9718
10374
|
style?: string | undefined;
|
|
10375
|
+
quality?: string | undefined;
|
|
9719
10376
|
moderation?: string | undefined;
|
|
9720
10377
|
images?: Record<string, {
|
|
9721
10378
|
type: "image";
|
|
@@ -9785,6 +10442,17 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
9785
10442
|
speechParams: {
|
|
9786
10443
|
speakers: Record<string, {
|
|
9787
10444
|
voiceId: string;
|
|
10445
|
+
lang?: Record<string, {
|
|
10446
|
+
voiceId: string;
|
|
10447
|
+
displayName?: Record<string, string> | undefined;
|
|
10448
|
+
isDefault?: boolean | undefined;
|
|
10449
|
+
speechOptions?: {
|
|
10450
|
+
speed?: number | undefined;
|
|
10451
|
+
instruction?: string | undefined;
|
|
10452
|
+
} | undefined;
|
|
10453
|
+
provider?: string | undefined;
|
|
10454
|
+
model?: string | undefined;
|
|
10455
|
+
}> | undefined;
|
|
9788
10456
|
displayName?: Record<string, string> | undefined;
|
|
9789
10457
|
isDefault?: boolean | undefined;
|
|
9790
10458
|
speechOptions?: {
|
|
@@ -9819,6 +10487,7 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
9819
10487
|
provider?: string | undefined;
|
|
9820
10488
|
model?: string | undefined;
|
|
9821
10489
|
style?: string | undefined;
|
|
10490
|
+
quality?: string | undefined;
|
|
9822
10491
|
moderation?: string | undefined;
|
|
9823
10492
|
images?: Record<string, {
|
|
9824
10493
|
type: "image";
|
|
@@ -9899,6 +10568,17 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
9899
10568
|
speechParams?: {
|
|
9900
10569
|
speakers: Record<string, {
|
|
9901
10570
|
voiceId: string;
|
|
10571
|
+
lang?: Record<string, {
|
|
10572
|
+
voiceId: string;
|
|
10573
|
+
displayName?: Record<string, string> | undefined;
|
|
10574
|
+
isDefault?: boolean | undefined;
|
|
10575
|
+
speechOptions?: {
|
|
10576
|
+
speed?: number | undefined;
|
|
10577
|
+
instruction?: string | undefined;
|
|
10578
|
+
} | undefined;
|
|
10579
|
+
provider?: string | undefined;
|
|
10580
|
+
model?: string | undefined;
|
|
10581
|
+
}> | undefined;
|
|
9902
10582
|
displayName?: Record<string, string> | undefined;
|
|
9903
10583
|
isDefault?: boolean | undefined;
|
|
9904
10584
|
speechOptions?: {
|
|
@@ -9923,6 +10603,7 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
9923
10603
|
provider: string;
|
|
9924
10604
|
model?: string | undefined;
|
|
9925
10605
|
style?: string | undefined;
|
|
10606
|
+
quality?: string | undefined;
|
|
9926
10607
|
moderation?: string | undefined;
|
|
9927
10608
|
images?: Record<string, {
|
|
9928
10609
|
type: "image";
|
|
@@ -9992,6 +10673,17 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
9992
10673
|
speechParams: {
|
|
9993
10674
|
speakers: Record<string, {
|
|
9994
10675
|
voiceId: string;
|
|
10676
|
+
lang?: Record<string, {
|
|
10677
|
+
voiceId: string;
|
|
10678
|
+
displayName?: Record<string, string> | undefined;
|
|
10679
|
+
isDefault?: boolean | undefined;
|
|
10680
|
+
speechOptions?: {
|
|
10681
|
+
speed?: number | undefined;
|
|
10682
|
+
instruction?: string | undefined;
|
|
10683
|
+
} | undefined;
|
|
10684
|
+
provider?: string | undefined;
|
|
10685
|
+
model?: string | undefined;
|
|
10686
|
+
}> | undefined;
|
|
9995
10687
|
displayName?: Record<string, string> | undefined;
|
|
9996
10688
|
isDefault?: boolean | undefined;
|
|
9997
10689
|
speechOptions?: {
|
|
@@ -10033,6 +10725,7 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
10033
10725
|
provider?: string | undefined;
|
|
10034
10726
|
model?: string | undefined;
|
|
10035
10727
|
style?: string | undefined;
|
|
10728
|
+
quality?: string | undefined;
|
|
10036
10729
|
moderation?: string | undefined;
|
|
10037
10730
|
images?: Record<string, {
|
|
10038
10731
|
type: "image";
|
|
@@ -10113,6 +10806,17 @@ export declare const mulmoPromptTemplateFileSchema: z.ZodObject<{
|
|
|
10113
10806
|
speechParams?: {
|
|
10114
10807
|
speakers: Record<string, {
|
|
10115
10808
|
voiceId: string;
|
|
10809
|
+
lang?: Record<string, {
|
|
10810
|
+
voiceId: string;
|
|
10811
|
+
displayName?: Record<string, string> | undefined;
|
|
10812
|
+
isDefault?: boolean | undefined;
|
|
10813
|
+
speechOptions?: {
|
|
10814
|
+
speed?: number | undefined;
|
|
10815
|
+
instruction?: string | undefined;
|
|
10816
|
+
} | undefined;
|
|
10817
|
+
provider?: string | undefined;
|
|
10818
|
+
model?: string | undefined;
|
|
10819
|
+
}> | undefined;
|
|
10116
10820
|
displayName?: Record<string, string> | undefined;
|
|
10117
10821
|
isDefault?: boolean | undefined;
|
|
10118
10822
|
speechOptions?: {
|