@picsart/ai-sdk 5.38.0 → 5.39.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/_vendor/workflows-types/index.d.ts +922 -870
- package/index.d.ts +16 -0
- package/index.js +72 -1
- package/package.json +1 -1
|
@@ -84,7 +84,7 @@ interface GenerationConfig$2 {
|
|
|
84
84
|
speechConfig?: SpeechConfig$2;
|
|
85
85
|
}
|
|
86
86
|
interface ImageConfig$2 {
|
|
87
|
-
aspectRatio?: "1:1" | "2:3" | "3:2" | "3:4" | "4:3" | "4:5" | "5:4" | "9:16" | "16:9" | "21:9" | "1:4" | "4:1" | "1:8" | "8:1";
|
|
87
|
+
aspectRatio?: "auto" | "1:1" | "2:3" | "3:2" | "3:4" | "4:3" | "4:5" | "5:4" | "9:16" | "16:9" | "21:9" | "1:4" | "4:1" | "1:8" | "8:1";
|
|
88
88
|
imageSize?: "0.5K" | "1K" | "2K" | "4K";
|
|
89
89
|
}
|
|
90
90
|
interface ThinkingConfig$4 {
|
|
@@ -111,7 +111,7 @@ interface SpeakerVoiceConfig$2 {
|
|
|
111
111
|
speaker: string;
|
|
112
112
|
voiceConfig: VoiceConfig$2;
|
|
113
113
|
}
|
|
114
|
-
type GeminiModel$1 = "gemini-2.5-pro" | "gemini-2.5-flash" | "gemini-2.5-flash-image-preview" | "gemini-2.5-flash-image" | "gemini-2.5-flash-lite-preview-06-17" | "gemini-2.0-flash" | "gemini-2.0-flash-preview-image-generation" | "gemini-2.0-flash-lite" | "gemini-1.5-flash" | "gemini-1.5-flash-8b" | "gemini-1.5-pro" | "gemini-embedding-exp" | "gemini-3-pro" | "gemini-3-pro-preview" | "gemini-3.1-pro-preview" | "gemini-3.1-flash-lite" | "gemini-3.5-flash-lite" | "gemini-3.6-flash" | "gemini-3.7-flash" | "gemini-3.1-flash-lite-preview" | "gemini-3-pro-image" | "gemini-3-pro-image-preview" | "gemini-3.1-flash-image-preview" | "gemini-3.1-flash-image" | "gemini-3.1-flash-lite-image" | "gemini-2.5-flash-tts" | "gemini-2.5-pro-tts" | "instant-ramen";
|
|
114
|
+
type GeminiModel$1 = "gemini-2.5-pro" | "gemini-2.5-flash" | "gemini-2.5-flash-image-preview" | "gemini-2.5-flash-image" | "gemini-2.5-flash-lite-preview-06-17" | "gemini-2.0-flash" | "gemini-2.0-flash-preview-image-generation" | "gemini-2.0-flash-lite" | "gemini-1.5-flash" | "gemini-1.5-flash-8b" | "gemini-1.5-pro" | "gemini-embedding-exp" | "gemini-3-pro" | "gemini-3-pro-preview" | "gemini-3.1-pro-preview" | "gemini-3.1-flash-lite" | "gemini-3.5-flash-lite" | "gemini-3.6-flash" | "gemini-3.7-flash" | "gemini-3.1-flash-lite-preview" | "gemini-3-pro-image" | "gemini-3-pro-image-preview" | "gemini-3.1-flash-image-preview" | "gemini-3.1-flash-image" | "gemini-3.1-flash-lite-image" | "gemini-2.5-flash-tts" | "gemini-2.5-pro-tts" | "instant-ramen" | "spicy-mayo";
|
|
115
115
|
interface GeminiResult$1 {
|
|
116
116
|
id: string;
|
|
117
117
|
status: "ACCEPTED" | "IN_PROGRESS" | "COMPLETED" | "FAILED";
|
|
@@ -339,6 +339,7 @@ interface OpenaiImagesGenerateCommand {
|
|
|
339
339
|
interface GenAIOptions$2E {
|
|
340
340
|
safety_checks?: SafetyChecksOptions$2E;
|
|
341
341
|
drive?: DriveOptions$2E;
|
|
342
|
+
inputs_transformation?: InputsTransformationOptions$c;
|
|
342
343
|
}
|
|
343
344
|
interface SafetyChecksOptions$2E {
|
|
344
345
|
enabled?: boolean;
|
|
@@ -352,6 +353,9 @@ interface DriveFolderOptions$2E {
|
|
|
352
353
|
path?: string;
|
|
353
354
|
id?: string;
|
|
354
355
|
}
|
|
356
|
+
interface InputsTransformationOptions$c {
|
|
357
|
+
downscale_oversized_images?: boolean;
|
|
358
|
+
}
|
|
355
359
|
interface OpenaiImagesGenerateResponse {
|
|
356
360
|
result: OpenaiImageGenerateResult;
|
|
357
361
|
}
|
|
@@ -412,7 +416,7 @@ interface GenerationConfig$1 {
|
|
|
412
416
|
speechConfig?: SpeechConfig$1;
|
|
413
417
|
}
|
|
414
418
|
interface ImageConfig$1 {
|
|
415
|
-
aspectRatio?: "1:1" | "2:3" | "3:2" | "3:4" | "4:3" | "4:5" | "5:4" | "9:16" | "16:9" | "21:9" | "1:4" | "4:1" | "1:8" | "8:1";
|
|
419
|
+
aspectRatio?: "auto" | "1:1" | "2:3" | "3:2" | "3:4" | "4:3" | "4:5" | "5:4" | "9:16" | "16:9" | "21:9" | "1:4" | "4:1" | "1:8" | "8:1";
|
|
416
420
|
imageSize?: "0.5K" | "1K" | "2K" | "4K";
|
|
417
421
|
}
|
|
418
422
|
interface ThinkingConfig$3 {
|
|
@@ -439,7 +443,7 @@ interface SpeakerVoiceConfig$1 {
|
|
|
439
443
|
speaker: string;
|
|
440
444
|
voiceConfig: VoiceConfig$1;
|
|
441
445
|
}
|
|
442
|
-
type GeminiModel = "gemini-2.5-pro" | "gemini-2.5-flash" | "gemini-2.5-flash-image-preview" | "gemini-2.5-flash-image" | "gemini-2.5-flash-lite-preview-06-17" | "gemini-2.0-flash" | "gemini-2.0-flash-preview-image-generation" | "gemini-2.0-flash-lite" | "gemini-1.5-flash" | "gemini-1.5-flash-8b" | "gemini-1.5-pro" | "gemini-embedding-exp" | "gemini-3-pro" | "gemini-3-pro-preview" | "gemini-3.1-pro-preview" | "gemini-3.1-flash-lite" | "gemini-3.5-flash-lite" | "gemini-3.6-flash" | "gemini-3.7-flash" | "gemini-3.1-flash-lite-preview" | "gemini-3-pro-image" | "gemini-3-pro-image-preview" | "gemini-3.1-flash-image-preview" | "gemini-3.1-flash-image" | "gemini-3.1-flash-lite-image" | "gemini-2.5-flash-tts" | "gemini-2.5-pro-tts" | "instant-ramen";
|
|
446
|
+
type GeminiModel = "gemini-2.5-pro" | "gemini-2.5-flash" | "gemini-2.5-flash-image-preview" | "gemini-2.5-flash-image" | "gemini-2.5-flash-lite-preview-06-17" | "gemini-2.0-flash" | "gemini-2.0-flash-preview-image-generation" | "gemini-2.0-flash-lite" | "gemini-1.5-flash" | "gemini-1.5-flash-8b" | "gemini-1.5-pro" | "gemini-embedding-exp" | "gemini-3-pro" | "gemini-3-pro-preview" | "gemini-3.1-pro-preview" | "gemini-3.1-flash-lite" | "gemini-3.5-flash-lite" | "gemini-3.6-flash" | "gemini-3.7-flash" | "gemini-3.1-flash-lite-preview" | "gemini-3-pro-image" | "gemini-3-pro-image-preview" | "gemini-3.1-flash-image-preview" | "gemini-3.1-flash-image" | "gemini-3.1-flash-lite-image" | "gemini-2.5-flash-tts" | "gemini-2.5-pro-tts" | "instant-ramen" | "spicy-mayo";
|
|
443
447
|
interface GeminiResult {
|
|
444
448
|
id: string;
|
|
445
449
|
status: "ACCEPTED" | "IN_PROGRESS" | "COMPLETED" | "FAILED";
|
|
@@ -551,7 +555,7 @@ interface GenerationConfig {
|
|
|
551
555
|
speechConfig?: SpeechConfig;
|
|
552
556
|
}
|
|
553
557
|
interface ImageConfig {
|
|
554
|
-
aspectRatio?: "1:1" | "2:3" | "3:2" | "3:4" | "4:3" | "4:5" | "5:4" | "9:16" | "16:9" | "21:9" | "1:4" | "4:1" | "1:8" | "8:1";
|
|
558
|
+
aspectRatio?: "auto" | "1:1" | "2:3" | "3:2" | "3:4" | "4:3" | "4:5" | "5:4" | "9:16" | "16:9" | "21:9" | "1:4" | "4:1" | "1:8" | "8:1";
|
|
555
559
|
imageSize?: "0.5K" | "1K" | "2K" | "4K";
|
|
556
560
|
}
|
|
557
561
|
interface ThinkingConfig$2 {
|
|
@@ -578,7 +582,7 @@ interface SpeakerVoiceConfig {
|
|
|
578
582
|
speaker: string;
|
|
579
583
|
voiceConfig: VoiceConfig;
|
|
580
584
|
}
|
|
581
|
-
type GeminiV1ImageModel = "gemini-2.5-flash-image" | "gemini-3-pro-image" | "gemini-3-pro-image-preview" | "gemini-3.1-flash-image" | "gemini-3.1-flash-lite-image" | "gemini-3.1-flash-image-preview" | "gemini-2.5-flash-image-preview" | "instant-ramen";
|
|
585
|
+
type GeminiV1ImageModel = "gemini-2.5-flash-image" | "gemini-3-pro-image" | "gemini-3-pro-image-preview" | "gemini-3.1-flash-image" | "gemini-3.1-flash-lite-image" | "gemini-3.1-flash-image-preview" | "gemini-2.5-flash-image-preview" | "instant-ramen" | "spicy-mayo";
|
|
582
586
|
interface GenAIOptions$2D {
|
|
583
587
|
safety_checks?: SafetyChecksOptions$2D;
|
|
584
588
|
drive?: DriveOptions$2D;
|
|
@@ -680,6 +684,7 @@ interface SoraCharacterReference$1 {
|
|
|
680
684
|
interface GenAIOptions$2B {
|
|
681
685
|
safety_checks?: SafetyChecksOptions$2B;
|
|
682
686
|
drive?: DriveOptions$2B;
|
|
687
|
+
inputs_transformation?: InputsTransformationOptions$b;
|
|
683
688
|
}
|
|
684
689
|
interface SafetyChecksOptions$2B {
|
|
685
690
|
enabled?: boolean;
|
|
@@ -693,6 +698,9 @@ interface DriveFolderOptions$2B {
|
|
|
693
698
|
path?: string;
|
|
694
699
|
id?: string;
|
|
695
700
|
}
|
|
701
|
+
interface InputsTransformationOptions$b {
|
|
702
|
+
downscale_oversized_images?: boolean;
|
|
703
|
+
}
|
|
696
704
|
interface OpenaiSoraResponse {
|
|
697
705
|
id: string;
|
|
698
706
|
status: "ACCEPTED" | "IN_PROGRESS" | "COMPLETED" | "FAILED";
|
|
@@ -781,6 +789,7 @@ interface ContextCriterion {
|
|
|
781
789
|
interface GenAIOptions$2A {
|
|
782
790
|
safety_checks?: SafetyChecksOptions$2A;
|
|
783
791
|
drive?: DriveOptions$2A;
|
|
792
|
+
inputs_transformation?: InputsTransformationOptions$a;
|
|
784
793
|
}
|
|
785
794
|
interface SafetyChecksOptions$2A {
|
|
786
795
|
enabled?: boolean;
|
|
@@ -794,6 +803,9 @@ interface DriveFolderOptions$2A {
|
|
|
794
803
|
path?: string;
|
|
795
804
|
id?: string;
|
|
796
805
|
}
|
|
806
|
+
interface InputsTransformationOptions$a {
|
|
807
|
+
downscale_oversized_images?: boolean;
|
|
808
|
+
}
|
|
797
809
|
type EmptyModel$2 = Record<string, never>;
|
|
798
810
|
|
|
799
811
|
interface OpenAiImageEditingCommand {
|
|
@@ -814,6 +826,7 @@ interface OpenAiImageEditingCommand {
|
|
|
814
826
|
interface GenAIOptions$2z {
|
|
815
827
|
safety_checks?: SafetyChecksOptions$2z;
|
|
816
828
|
drive?: DriveOptions$2z;
|
|
829
|
+
inputs_transformation?: InputsTransformationOptions$9;
|
|
817
830
|
}
|
|
818
831
|
interface SafetyChecksOptions$2z {
|
|
819
832
|
enabled?: boolean;
|
|
@@ -827,6 +840,9 @@ interface DriveFolderOptions$2z {
|
|
|
827
840
|
path?: string;
|
|
828
841
|
id?: string;
|
|
829
842
|
}
|
|
843
|
+
interface InputsTransformationOptions$9 {
|
|
844
|
+
downscale_oversized_images?: boolean;
|
|
845
|
+
}
|
|
830
846
|
interface OpenAiImageEditingResult {
|
|
831
847
|
result: EditedImageResult;
|
|
832
848
|
}
|
|
@@ -835,15 +851,15 @@ interface EditedImageResult {
|
|
|
835
851
|
}
|
|
836
852
|
|
|
837
853
|
interface ImageToVideoInput$1 {
|
|
854
|
+
seed?: number | unknown;
|
|
855
|
+
image_url: string;
|
|
856
|
+
negative_prompt?: string | unknown;
|
|
838
857
|
audio_url?: string | unknown;
|
|
839
|
-
|
|
840
|
-
enable_prompt_expansion?: boolean;
|
|
858
|
+
resolution?: "480p" | "720p" | "1080p";
|
|
841
859
|
duration?: "5" | "10";
|
|
842
|
-
|
|
843
|
-
|
|
860
|
+
enable_prompt_expansion?: boolean;
|
|
861
|
+
enable_safety_checker?: boolean;
|
|
844
862
|
prompt: string;
|
|
845
|
-
seed?: number | unknown;
|
|
846
|
-
resolution?: "480p" | "720p" | "1080p";
|
|
847
863
|
options?: {
|
|
848
864
|
safety_checks?: {
|
|
849
865
|
enabled?: boolean;
|
|
@@ -864,31 +880,31 @@ interface Wan25PreviewImageToVideoResponse {
|
|
|
864
880
|
result: VideoOutput$1;
|
|
865
881
|
}
|
|
866
882
|
interface VideoOutput$1 {
|
|
867
|
-
seed: number;
|
|
868
883
|
video: {
|
|
869
|
-
content_type?: string | unknown;
|
|
870
|
-
fps?: number | unknown;
|
|
871
884
|
url: string;
|
|
872
|
-
duration?: number | unknown;
|
|
873
|
-
height?: number | unknown;
|
|
874
885
|
width?: number | unknown;
|
|
875
|
-
file_size?: number | unknown;
|
|
876
886
|
num_frames?: number | unknown;
|
|
887
|
+
height?: number | unknown;
|
|
888
|
+
file_size?: number | unknown;
|
|
889
|
+
duration?: number | unknown;
|
|
890
|
+
fps?: number | unknown;
|
|
877
891
|
file_name?: string | unknown;
|
|
892
|
+
content_type?: string | unknown;
|
|
878
893
|
};
|
|
894
|
+
seed: number;
|
|
879
895
|
actual_prompt?: string | unknown;
|
|
880
896
|
}
|
|
881
897
|
|
|
882
898
|
interface TextToVideoInput {
|
|
899
|
+
seed?: number | unknown;
|
|
883
900
|
audio_url?: string | unknown;
|
|
884
|
-
enable_safety_checker?: boolean;
|
|
885
|
-
enable_prompt_expansion?: boolean;
|
|
886
|
-
duration?: "5" | "10";
|
|
887
|
-
aspect_ratio?: "16:9" | "9:16" | "1:1";
|
|
888
901
|
negative_prompt?: string | unknown;
|
|
889
|
-
prompt: string;
|
|
890
|
-
seed?: number | unknown;
|
|
891
902
|
resolution?: "480p" | "720p" | "1080p";
|
|
903
|
+
aspect_ratio?: "16:9" | "9:16" | "1:1";
|
|
904
|
+
duration?: "5" | "10";
|
|
905
|
+
enable_prompt_expansion?: boolean;
|
|
906
|
+
enable_safety_checker?: boolean;
|
|
907
|
+
prompt: string;
|
|
892
908
|
options?: {
|
|
893
909
|
safety_checks?: {
|
|
894
910
|
enabled?: boolean;
|
|
@@ -909,41 +925,41 @@ interface Wan25PreviewTextToVideoResponse {
|
|
|
909
925
|
result: VideoOutput;
|
|
910
926
|
}
|
|
911
927
|
interface VideoOutput {
|
|
912
|
-
seed: number;
|
|
913
928
|
video: {
|
|
914
|
-
content_type?: string | unknown;
|
|
915
|
-
fps?: number | unknown;
|
|
916
929
|
url: string;
|
|
917
|
-
duration?: number | unknown;
|
|
918
|
-
height?: number | unknown;
|
|
919
930
|
width?: number | unknown;
|
|
920
|
-
file_size?: number | unknown;
|
|
921
931
|
num_frames?: number | unknown;
|
|
932
|
+
height?: number | unknown;
|
|
933
|
+
file_size?: number | unknown;
|
|
934
|
+
duration?: number | unknown;
|
|
935
|
+
fps?: number | unknown;
|
|
922
936
|
file_name?: string | unknown;
|
|
937
|
+
content_type?: string | unknown;
|
|
923
938
|
};
|
|
939
|
+
seed: number;
|
|
924
940
|
actual_prompt?: string | unknown;
|
|
925
941
|
}
|
|
926
942
|
|
|
927
943
|
interface BaseQwenImageInput {
|
|
928
|
-
|
|
929
|
-
prompt: string;
|
|
944
|
+
output_format?: "jpeg" | "png";
|
|
930
945
|
acceleration?: "none" | "regular" | "high";
|
|
946
|
+
seed?: number | unknown;
|
|
947
|
+
guidance_scale?: number;
|
|
948
|
+
negative_prompt?: string;
|
|
949
|
+
num_images?: number;
|
|
950
|
+
use_turbo?: boolean;
|
|
951
|
+
num_inference_steps?: number;
|
|
952
|
+
enable_safety_checker?: boolean;
|
|
953
|
+
sync_mode?: boolean;
|
|
931
954
|
loras?: {
|
|
932
955
|
path: string;
|
|
933
956
|
scale?: number;
|
|
934
957
|
}[];
|
|
935
|
-
|
|
936
|
-
num_inference_steps?: number;
|
|
937
|
-
enable_safety_checker?: boolean;
|
|
938
|
-
num_images?: number;
|
|
958
|
+
prompt: string;
|
|
939
959
|
image_size?: {
|
|
940
960
|
width?: number;
|
|
941
961
|
height?: number;
|
|
942
962
|
} | "square_hd" | "square" | "portrait_4_3" | "portrait_16_9" | "landscape_4_3" | "landscape_16_9";
|
|
943
|
-
seed?: number | unknown;
|
|
944
|
-
negative_prompt?: string;
|
|
945
|
-
guidance_scale?: number;
|
|
946
|
-
sync_mode?: boolean;
|
|
947
963
|
options?: {
|
|
948
964
|
safety_checks?: {
|
|
949
965
|
enabled?: boolean;
|
|
@@ -964,40 +980,40 @@ interface QwenImageResponse {
|
|
|
964
980
|
result: QwenImageOutput;
|
|
965
981
|
}
|
|
966
982
|
interface QwenImageOutput {
|
|
967
|
-
|
|
983
|
+
has_nsfw_concepts: boolean[];
|
|
984
|
+
seed: number;
|
|
968
985
|
images: ({
|
|
969
986
|
width: number;
|
|
970
|
-
url: string;
|
|
971
987
|
content_type?: string | unknown;
|
|
972
988
|
height: number;
|
|
989
|
+
url: string;
|
|
973
990
|
})[];
|
|
991
|
+
prompt: string;
|
|
974
992
|
timings: Record<string, number>;
|
|
975
|
-
seed: number;
|
|
976
|
-
has_nsfw_concepts: boolean[];
|
|
977
993
|
}
|
|
978
994
|
|
|
979
995
|
interface QwenImageI2IInput {
|
|
980
|
-
prompt: string;
|
|
981
|
-
strength?: number;
|
|
982
996
|
output_format?: "jpeg" | "png";
|
|
997
|
+
acceleration?: "none" | "regular" | "high";
|
|
998
|
+
seed?: number | unknown;
|
|
999
|
+
image_url: string;
|
|
1000
|
+
strength?: number;
|
|
1001
|
+
sync_mode?: boolean;
|
|
1002
|
+
use_turbo?: boolean;
|
|
1003
|
+
enable_safety_checker?: boolean;
|
|
983
1004
|
loras?: {
|
|
984
1005
|
path: string;
|
|
985
1006
|
scale?: number;
|
|
986
1007
|
}[];
|
|
987
|
-
|
|
1008
|
+
prompt: string;
|
|
988
1009
|
image_size?: {
|
|
989
1010
|
width?: number;
|
|
990
1011
|
height?: number;
|
|
991
1012
|
} | "square_hd" | "square" | "portrait_4_3" | "portrait_16_9" | "landscape_4_3" | "landscape_16_9" | unknown;
|
|
992
|
-
|
|
993
|
-
use_turbo?: boolean;
|
|
994
|
-
acceleration?: "none" | "regular" | "high";
|
|
995
|
-
image_url: string;
|
|
996
|
-
enable_safety_checker?: boolean;
|
|
997
|
-
num_images?: number;
|
|
1013
|
+
guidance_scale?: number;
|
|
998
1014
|
negative_prompt?: string;
|
|
1015
|
+
num_images?: number;
|
|
999
1016
|
num_inference_steps?: number;
|
|
1000
|
-
sync_mode?: boolean;
|
|
1001
1017
|
options?: {
|
|
1002
1018
|
safety_checks?: {
|
|
1003
1019
|
enabled?: boolean;
|
|
@@ -1018,33 +1034,33 @@ interface QwenImageImageToImageResponse {
|
|
|
1018
1034
|
result: QwenImageI2IOutput;
|
|
1019
1035
|
}
|
|
1020
1036
|
interface QwenImageI2IOutput {
|
|
1021
|
-
|
|
1037
|
+
has_nsfw_concepts: boolean[];
|
|
1038
|
+
seed: number;
|
|
1022
1039
|
images: ({
|
|
1023
1040
|
width: number;
|
|
1024
|
-
url: string;
|
|
1025
1041
|
content_type?: string | unknown;
|
|
1026
1042
|
height: number;
|
|
1043
|
+
url: string;
|
|
1027
1044
|
})[];
|
|
1045
|
+
prompt: string;
|
|
1028
1046
|
timings: Record<string, number>;
|
|
1029
|
-
seed: number;
|
|
1030
|
-
has_nsfw_concepts: boolean[];
|
|
1031
1047
|
}
|
|
1032
1048
|
|
|
1033
1049
|
interface HunyuanTextToImageInputV3 {
|
|
1050
|
+
enable_prompt_expansion?: boolean;
|
|
1051
|
+
output_format?: "jpeg" | "png";
|
|
1034
1052
|
seed?: number | unknown;
|
|
1053
|
+
guidance_scale?: number;
|
|
1054
|
+
negative_prompt?: string;
|
|
1055
|
+
num_images?: number;
|
|
1035
1056
|
sync_mode?: boolean;
|
|
1057
|
+
num_inference_steps?: number;
|
|
1058
|
+
enable_safety_checker?: boolean;
|
|
1059
|
+
prompt: string;
|
|
1036
1060
|
image_size?: {
|
|
1037
|
-
height?: number;
|
|
1038
1061
|
width?: number;
|
|
1062
|
+
height?: number;
|
|
1039
1063
|
} | "square_hd" | "square" | "portrait_4_3" | "portrait_16_9" | "landscape_4_3" | "landscape_16_9";
|
|
1040
|
-
enable_safety_checker?: boolean;
|
|
1041
|
-
num_inference_steps?: number;
|
|
1042
|
-
negative_prompt?: string;
|
|
1043
|
-
guidance_scale?: number;
|
|
1044
|
-
enable_prompt_expansion?: boolean;
|
|
1045
|
-
prompt: string;
|
|
1046
|
-
output_format?: "jpeg" | "png";
|
|
1047
|
-
num_images?: number;
|
|
1048
1064
|
options?: {
|
|
1049
1065
|
safety_checks?: {
|
|
1050
1066
|
enabled?: boolean;
|
|
@@ -1067,12 +1083,12 @@ interface HunyuanImageV3TextToImageResponse {
|
|
|
1067
1083
|
interface HunyuanTextToImageV3Output {
|
|
1068
1084
|
seed: number;
|
|
1069
1085
|
images: ({
|
|
1070
|
-
|
|
1086
|
+
width?: number | unknown;
|
|
1071
1087
|
content_type?: string | unknown;
|
|
1072
|
-
|
|
1088
|
+
url: string;
|
|
1073
1089
|
height?: number | unknown;
|
|
1074
1090
|
file_size?: number | unknown;
|
|
1075
|
-
|
|
1091
|
+
file_name?: string | unknown;
|
|
1076
1092
|
})[];
|
|
1077
1093
|
}
|
|
1078
1094
|
|
|
@@ -1299,14 +1315,14 @@ interface FabricOneOutput {
|
|
|
1299
1315
|
}
|
|
1300
1316
|
|
|
1301
1317
|
interface UpscaleInput {
|
|
1302
|
-
enhancement_tier?: "fast" | "standard" | "pro";
|
|
1303
|
-
target_fps?: number;
|
|
1304
|
-
video_url: string;
|
|
1305
|
-
target_resolution?: "1080p" | "2k" | "4k" | "6k" | "8k";
|
|
1306
|
-
scale_ratio?: number | unknown;
|
|
1307
1318
|
bit_depth?: 8 | 10 | 12;
|
|
1308
1319
|
enhancement_preset?: "general" | "ugc" | "short_series" | "aigc" | "old_film";
|
|
1320
|
+
video_url: string;
|
|
1321
|
+
enhancement_tier?: "fast" | "standard" | "pro";
|
|
1322
|
+
target_resolution?: "1080p" | "2k" | "4k" | "6k" | "8k";
|
|
1323
|
+
target_fps?: number;
|
|
1309
1324
|
fidelity?: "high" | "medium";
|
|
1325
|
+
scale_ratio?: number | unknown;
|
|
1310
1326
|
options?: {
|
|
1311
1327
|
safety_checks?: {
|
|
1312
1328
|
enabled?: boolean;
|
|
@@ -1327,22 +1343,22 @@ interface BytedanceUpscalerUpscaleVideoResponse {
|
|
|
1327
1343
|
result: UpscaleOutput;
|
|
1328
1344
|
}
|
|
1329
1345
|
interface UpscaleOutput {
|
|
1330
|
-
duration: number;
|
|
1331
1346
|
video: {
|
|
1332
|
-
url: string;
|
|
1333
1347
|
file_name?: string | unknown;
|
|
1334
|
-
content_type?: string | unknown;
|
|
1335
1348
|
file_size?: number | unknown;
|
|
1349
|
+
url: string;
|
|
1350
|
+
content_type?: string | unknown;
|
|
1336
1351
|
};
|
|
1352
|
+
duration: number;
|
|
1337
1353
|
}
|
|
1338
1354
|
|
|
1339
1355
|
interface TextToSpeechRequestV3 {
|
|
1340
|
-
apply_text_normalization?: "auto" | "on" | "off";
|
|
1341
|
-
timestamps?: boolean;
|
|
1342
1356
|
text: string;
|
|
1343
|
-
language_code?: string | unknown;
|
|
1344
|
-
stability?: number;
|
|
1345
1357
|
voice?: string;
|
|
1358
|
+
stability?: number;
|
|
1359
|
+
timestamps?: boolean;
|
|
1360
|
+
language_code?: string | unknown;
|
|
1361
|
+
apply_text_normalization?: "auto" | "on" | "off";
|
|
1346
1362
|
options?: {
|
|
1347
1363
|
safety_checks?: {
|
|
1348
1364
|
enabled?: boolean;
|
|
@@ -1364,21 +1380,21 @@ interface ElevenlabsTtsElevenV3Response {
|
|
|
1364
1380
|
}
|
|
1365
1381
|
interface TTSOutput {
|
|
1366
1382
|
audio: {
|
|
1367
|
-
url: string;
|
|
1368
1383
|
content_type?: string | unknown;
|
|
1369
|
-
|
|
1384
|
+
url: string;
|
|
1370
1385
|
file_size?: number | unknown;
|
|
1386
|
+
file_name?: string | unknown;
|
|
1371
1387
|
};
|
|
1372
1388
|
timestamps?: unknown[] | unknown;
|
|
1373
1389
|
}
|
|
1374
1390
|
|
|
1375
1391
|
interface OviT2VRequest {
|
|
1376
|
-
|
|
1392
|
+
seed?: number | unknown;
|
|
1377
1393
|
negative_prompt?: string;
|
|
1394
|
+
num_inference_steps?: number;
|
|
1378
1395
|
prompt: string;
|
|
1379
|
-
seed?: number | unknown;
|
|
1380
1396
|
audio_negative_prompt?: string;
|
|
1381
|
-
|
|
1397
|
+
resolution?: "512x992" | "992x512" | "960x512" | "512x960" | "720x720" | "448x1120" | "1120x448";
|
|
1382
1398
|
options?: {
|
|
1383
1399
|
safety_checks?: {
|
|
1384
1400
|
enabled?: boolean;
|
|
@@ -1399,22 +1415,22 @@ interface OviResponse {
|
|
|
1399
1415
|
result: OviT2VResponse;
|
|
1400
1416
|
}
|
|
1401
1417
|
interface OviT2VResponse {
|
|
1418
|
+
seed: number;
|
|
1402
1419
|
video?: {
|
|
1403
|
-
url: string;
|
|
1404
|
-
file_size?: number | unknown;
|
|
1405
1420
|
file_name?: string | unknown;
|
|
1421
|
+
file_size?: number | unknown;
|
|
1422
|
+
url: string;
|
|
1406
1423
|
content_type?: string | unknown;
|
|
1407
1424
|
} | unknown;
|
|
1408
|
-
seed: number;
|
|
1409
1425
|
}
|
|
1410
1426
|
|
|
1411
1427
|
interface OviI2VRequest {
|
|
1412
|
-
audio_negative_prompt?: string;
|
|
1413
|
-
negative_prompt?: string;
|
|
1414
|
-
prompt: string;
|
|
1415
|
-
image_url: string;
|
|
1416
1428
|
seed?: number | unknown;
|
|
1429
|
+
image_url: string;
|
|
1430
|
+
negative_prompt?: string;
|
|
1417
1431
|
num_inference_steps?: number;
|
|
1432
|
+
prompt: string;
|
|
1433
|
+
audio_negative_prompt?: string;
|
|
1418
1434
|
options?: {
|
|
1419
1435
|
safety_checks?: {
|
|
1420
1436
|
enabled?: boolean;
|
|
@@ -1435,20 +1451,20 @@ interface OviImageToVideoResponse {
|
|
|
1435
1451
|
result: OviI2VResponse;
|
|
1436
1452
|
}
|
|
1437
1453
|
interface OviI2VResponse {
|
|
1454
|
+
seed: number;
|
|
1438
1455
|
video?: {
|
|
1439
|
-
url: string;
|
|
1440
|
-
file_size?: number | unknown;
|
|
1441
1456
|
file_name?: string | unknown;
|
|
1457
|
+
file_size?: number | unknown;
|
|
1458
|
+
url: string;
|
|
1442
1459
|
content_type?: string | unknown;
|
|
1443
1460
|
} | unknown;
|
|
1444
|
-
seed: number;
|
|
1445
1461
|
}
|
|
1446
1462
|
|
|
1447
1463
|
interface ReveCreateInput {
|
|
1448
|
-
num_images?: number;
|
|
1449
|
-
sync_mode?: boolean;
|
|
1450
|
-
aspect_ratio?: "16:9" | "9:16" | "3:2" | "2:3" | "4:3" | "3:4" | "1:1";
|
|
1451
1464
|
prompt: string;
|
|
1465
|
+
aspect_ratio?: "16:9" | "9:16" | "3:2" | "2:3" | "4:3" | "3:4" | "1:1";
|
|
1466
|
+
sync_mode?: boolean;
|
|
1467
|
+
num_images?: number;
|
|
1452
1468
|
output_format?: "png" | "jpeg" | "webp";
|
|
1453
1469
|
options?: {
|
|
1454
1470
|
safety_checks?: {
|
|
@@ -1471,20 +1487,20 @@ interface ReveTextToImageResponse {
|
|
|
1471
1487
|
}
|
|
1472
1488
|
interface ReveCreateOutput {
|
|
1473
1489
|
images: ({
|
|
1474
|
-
|
|
1490
|
+
width?: number | unknown;
|
|
1491
|
+
url: string;
|
|
1475
1492
|
content_type?: string | unknown;
|
|
1476
1493
|
height?: number | unknown;
|
|
1477
|
-
|
|
1494
|
+
file_name?: string | unknown;
|
|
1478
1495
|
file_size?: number | unknown;
|
|
1479
|
-
width?: number | unknown;
|
|
1480
1496
|
})[];
|
|
1481
1497
|
}
|
|
1482
1498
|
|
|
1483
1499
|
interface ReveEditInput {
|
|
1484
1500
|
num_images?: number;
|
|
1501
|
+
prompt: string;
|
|
1485
1502
|
sync_mode?: boolean;
|
|
1486
1503
|
image_url: string;
|
|
1487
|
-
prompt: string;
|
|
1488
1504
|
output_format?: "png" | "jpeg" | "webp";
|
|
1489
1505
|
options?: {
|
|
1490
1506
|
safety_checks?: {
|
|
@@ -1507,23 +1523,23 @@ interface ReveEditResponse {
|
|
|
1507
1523
|
}
|
|
1508
1524
|
interface ReveEditOutput {
|
|
1509
1525
|
images: ({
|
|
1510
|
-
|
|
1526
|
+
width?: number | unknown;
|
|
1527
|
+
url: string;
|
|
1511
1528
|
content_type?: string | unknown;
|
|
1512
1529
|
height?: number | unknown;
|
|
1513
|
-
|
|
1530
|
+
file_name?: string | unknown;
|
|
1514
1531
|
file_size?: number | unknown;
|
|
1515
|
-
width?: number | unknown;
|
|
1516
1532
|
})[];
|
|
1517
1533
|
}
|
|
1518
1534
|
|
|
1519
1535
|
interface MergeVideosInput {
|
|
1536
|
+
target_fps?: number | unknown;
|
|
1537
|
+
resolution_aspect_ratio_video_index?: number | unknown;
|
|
1538
|
+
video_urls: string[];
|
|
1520
1539
|
resolution?: {
|
|
1521
1540
|
width?: number;
|
|
1522
1541
|
height?: number;
|
|
1523
1542
|
} | "square_hd" | "square" | "portrait_4_3" | "portrait_16_9" | "landscape_4_3" | "landscape_16_9" | unknown;
|
|
1524
|
-
resolution_aspect_ratio_video_index?: number | unknown;
|
|
1525
|
-
target_fps?: number | unknown;
|
|
1526
|
-
video_urls: string[];
|
|
1527
1543
|
options?: {
|
|
1528
1544
|
safety_checks?: {
|
|
1529
1545
|
enabled?: boolean;
|
|
@@ -1544,19 +1560,19 @@ interface FfmpegApiMergeVideosResponse {
|
|
|
1544
1560
|
result: MergeVideosOutput;
|
|
1545
1561
|
}
|
|
1546
1562
|
interface MergeVideosOutput {
|
|
1547
|
-
metadata: Record<string, unknown>;
|
|
1548
1563
|
video: {
|
|
1549
|
-
file_name?: string | unknown;
|
|
1550
1564
|
content_type?: string | unknown;
|
|
1551
|
-
url: string;
|
|
1552
1565
|
file_size?: number | unknown;
|
|
1566
|
+
file_name?: string | unknown;
|
|
1567
|
+
url: string;
|
|
1553
1568
|
};
|
|
1569
|
+
metadata: Record<string, unknown>;
|
|
1554
1570
|
}
|
|
1555
1571
|
|
|
1556
1572
|
interface CombineInput {
|
|
1557
|
-
start_offset?: number;
|
|
1558
1573
|
video_url: string;
|
|
1559
1574
|
audio_url: string;
|
|
1575
|
+
start_offset?: number;
|
|
1560
1576
|
options?: {
|
|
1561
1577
|
safety_checks?: {
|
|
1562
1578
|
enabled?: boolean;
|
|
@@ -1578,19 +1594,19 @@ interface FfmpegApiMergeAudioVideoResponse {
|
|
|
1578
1594
|
}
|
|
1579
1595
|
interface CombineOutput {
|
|
1580
1596
|
video: {
|
|
1581
|
-
file_name?: string | unknown;
|
|
1582
1597
|
content_type?: string | unknown;
|
|
1583
|
-
url: string;
|
|
1584
1598
|
file_size?: number | unknown;
|
|
1599
|
+
file_name?: string | unknown;
|
|
1600
|
+
url: string;
|
|
1585
1601
|
};
|
|
1586
1602
|
}
|
|
1587
1603
|
|
|
1588
1604
|
interface SoundEffectRequestV2 {
|
|
1589
|
-
output_format?: "mp3_22050_32" | "mp3_44100_32" | "mp3_44100_64" | "mp3_44100_96" | "mp3_44100_128" | "mp3_44100_192" | "pcm_8000" | "pcm_16000" | "pcm_22050" | "pcm_24000" | "pcm_44100" | "pcm_48000" | "ulaw_8000" | "alaw_8000" | "opus_48000_32" | "opus_48000_64" | "opus_48000_96" | "opus_48000_128" | "opus_48000_192";
|
|
1590
|
-
duration_seconds?: number | unknown;
|
|
1591
1605
|
text: string;
|
|
1592
|
-
|
|
1606
|
+
output_format?: "mp3_22050_32" | "mp3_44100_32" | "mp3_44100_64" | "mp3_44100_96" | "mp3_44100_128" | "mp3_44100_192" | "pcm_8000" | "pcm_16000" | "pcm_22050" | "pcm_24000" | "pcm_44100" | "pcm_48000" | "ulaw_8000" | "alaw_8000" | "opus_48000_32" | "opus_48000_64" | "opus_48000_96" | "opus_48000_128" | "opus_48000_192";
|
|
1593
1607
|
loop?: boolean;
|
|
1608
|
+
prompt_influence?: number;
|
|
1609
|
+
duration_seconds?: number | unknown;
|
|
1594
1610
|
options?: {
|
|
1595
1611
|
safety_checks?: {
|
|
1596
1612
|
enabled?: boolean;
|
|
@@ -1612,10 +1628,10 @@ interface ElevenlabsSoundEffectsV2Response {
|
|
|
1612
1628
|
}
|
|
1613
1629
|
interface SoundEffectOutput {
|
|
1614
1630
|
audio: {
|
|
1615
|
-
url: string;
|
|
1616
1631
|
content_type?: string | unknown;
|
|
1617
|
-
|
|
1632
|
+
url: string;
|
|
1618
1633
|
file_size?: number | unknown;
|
|
1634
|
+
file_name?: string | unknown;
|
|
1619
1635
|
};
|
|
1620
1636
|
}
|
|
1621
1637
|
|
|
@@ -1682,22 +1698,22 @@ interface FfmpegApiExtractFrameResponse {
|
|
|
1682
1698
|
}
|
|
1683
1699
|
interface FrameOutput {
|
|
1684
1700
|
images: ({
|
|
1685
|
-
|
|
1701
|
+
height?: number | unknown;
|
|
1686
1702
|
content_type?: string | unknown;
|
|
1687
1703
|
file_size?: number | unknown;
|
|
1688
|
-
|
|
1704
|
+
file_name?: string | unknown;
|
|
1689
1705
|
width?: number | unknown;
|
|
1690
|
-
|
|
1706
|
+
url: string;
|
|
1691
1707
|
})[];
|
|
1692
1708
|
}
|
|
1693
1709
|
|
|
1694
1710
|
interface AuroraInputModel {
|
|
1695
|
-
image_url: string;
|
|
1696
1711
|
audio_url: string;
|
|
1712
|
+
image_url: string;
|
|
1697
1713
|
audio_guidance_scale?: number | unknown;
|
|
1698
1714
|
guidance_scale?: number | unknown;
|
|
1699
|
-
resolution?: "480p" | "720p";
|
|
1700
1715
|
prompt?: string | unknown;
|
|
1716
|
+
resolution?: "480p" | "720p";
|
|
1701
1717
|
options?: {
|
|
1702
1718
|
safety_checks?: {
|
|
1703
1719
|
enabled?: boolean;
|
|
@@ -1719,29 +1735,29 @@ interface CreatifyAuroraResponse {
|
|
|
1719
1735
|
}
|
|
1720
1736
|
interface AuroraOutputModel {
|
|
1721
1737
|
video: {
|
|
1738
|
+
url: string;
|
|
1739
|
+
fps?: number | unknown;
|
|
1722
1740
|
width?: number | unknown;
|
|
1723
|
-
|
|
1741
|
+
file_name?: string | unknown;
|
|
1724
1742
|
file_size?: number | unknown;
|
|
1743
|
+
duration?: number | unknown;
|
|
1725
1744
|
num_frames?: number | unknown;
|
|
1726
|
-
content_type?: string | unknown;
|
|
1727
|
-
url: string;
|
|
1728
|
-
fps?: number | unknown;
|
|
1729
1745
|
height?: number | unknown;
|
|
1730
|
-
|
|
1746
|
+
content_type?: string | unknown;
|
|
1731
1747
|
};
|
|
1732
1748
|
}
|
|
1733
1749
|
|
|
1734
1750
|
interface VideoUpscaleRequest {
|
|
1735
|
-
H264_output?: boolean;
|
|
1736
1751
|
halo?: number | unknown;
|
|
1737
|
-
|
|
1752
|
+
upscale_factor?: number;
|
|
1738
1753
|
noise?: number | unknown;
|
|
1754
|
+
recover_detail?: number | unknown;
|
|
1739
1755
|
target_fps?: number | unknown;
|
|
1740
|
-
|
|
1756
|
+
model?: "Proteus" | "Artemis HQ" | "Artemis MQ" | "Artemis LQ" | "Gaia HQ" | "Gaia CG" | "Gaia 2" | "Nyx" | "Nyx Fast" | "Nyx XL" | "Nyx HF" | "Starlight Precise 2.5" | "Starlight HQ" | "Starlight Mini" | "Starlight Sharp" | "Starlight Fast 2" | "Starlight Precise 1" | "Starlight Precise 2" | "Starlight Fast 1";
|
|
1741
1757
|
grain?: number | unknown;
|
|
1742
|
-
|
|
1743
|
-
recover_detail?: number | unknown;
|
|
1758
|
+
H264_output?: boolean;
|
|
1744
1759
|
compression?: number | unknown;
|
|
1760
|
+
video_url: string;
|
|
1745
1761
|
options?: {
|
|
1746
1762
|
safety_checks?: {
|
|
1747
1763
|
enabled?: boolean;
|
|
@@ -1763,33 +1779,33 @@ interface TopazUpscaleVideoResponse {
|
|
|
1763
1779
|
}
|
|
1764
1780
|
interface VideoUpscaleOutput {
|
|
1765
1781
|
video: {
|
|
1782
|
+
file_name?: string | unknown;
|
|
1783
|
+
file_size?: number | unknown;
|
|
1766
1784
|
content_type?: string | unknown;
|
|
1767
1785
|
url: string;
|
|
1768
|
-
file_size?: number | unknown;
|
|
1769
|
-
file_name?: string | unknown;
|
|
1770
1786
|
};
|
|
1771
1787
|
}
|
|
1772
1788
|
|
|
1773
1789
|
interface ImageUpscaleRequest {
|
|
1774
|
-
model?: "Standard V2" | "High Fidelity V2" | "Low Resolution V2" | "CGI" | "Text Refine" | "Wonder 3" | "Wonder" | "Standard MAX" | "Redefine" | "Recovery V2" | "Recovery";
|
|
1775
|
-
autoprompt?: boolean | unknown;
|
|
1776
|
-
face_enhancement_creativity?: number;
|
|
1777
|
-
denoise?: number | unknown;
|
|
1778
|
-
output_format?: "jpeg" | "png";
|
|
1779
|
-
subject_detection?: "All" | "Foreground" | "Background";
|
|
1780
1790
|
strength?: number | unknown;
|
|
1781
|
-
|
|
1782
|
-
|
|
1791
|
+
prompt?: string | unknown;
|
|
1792
|
+
detail?: number | unknown;
|
|
1793
|
+
face_enhancement_creativity?: number;
|
|
1794
|
+
sharpen?: number | unknown;
|
|
1783
1795
|
crop_to_fill?: boolean;
|
|
1796
|
+
subject_detection?: "All" | "Foreground" | "Background";
|
|
1784
1797
|
texture?: number | unknown;
|
|
1785
|
-
|
|
1798
|
+
image_url: string;
|
|
1799
|
+
face_enhancement_strength?: number;
|
|
1800
|
+
creativity?: number | unknown;
|
|
1786
1801
|
enhancement_strength?: "low" | "medium" | "high" | unknown;
|
|
1787
1802
|
upscale_factor?: number;
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1803
|
+
denoise?: number | unknown;
|
|
1804
|
+
model?: "Standard V2" | "High Fidelity V2" | "Low Resolution V2" | "CGI" | "Text Refine" | "Wonder 3" | "Wonder" | "Standard MAX" | "Redefine" | "Recovery V2" | "Recovery";
|
|
1805
|
+
autoprompt?: boolean | unknown;
|
|
1791
1806
|
face_enhancement?: boolean;
|
|
1792
|
-
|
|
1807
|
+
fix_compression?: number | unknown;
|
|
1808
|
+
output_format?: "jpeg" | "png";
|
|
1793
1809
|
options?: {
|
|
1794
1810
|
safety_checks?: {
|
|
1795
1811
|
enabled?: boolean;
|
|
@@ -1811,10 +1827,10 @@ interface TopazUpscaleImageResponse {
|
|
|
1811
1827
|
}
|
|
1812
1828
|
interface ImageUpscaleOutput {
|
|
1813
1829
|
image: {
|
|
1830
|
+
file_name?: string | unknown;
|
|
1831
|
+
file_size?: number | unknown;
|
|
1814
1832
|
content_type?: string | unknown;
|
|
1815
1833
|
url: string;
|
|
1816
|
-
file_size?: number | unknown;
|
|
1817
|
-
file_name?: string | unknown;
|
|
1818
1834
|
};
|
|
1819
1835
|
}
|
|
1820
1836
|
|
|
@@ -1833,16 +1849,16 @@ interface UseCaseProps {
|
|
|
1833
1849
|
type EmptyModel$1 = Record<string, never>;
|
|
1834
1850
|
|
|
1835
1851
|
interface ImageToVideoInput {
|
|
1836
|
-
prompt: string;
|
|
1837
|
-
enable_safety_checker?: boolean;
|
|
1838
|
-
image_url: string;
|
|
1839
|
-
enable_prompt_expansion?: boolean;
|
|
1840
|
-
audio_url?: string | unknown;
|
|
1841
1852
|
seed?: number | unknown;
|
|
1853
|
+
audio_url?: string | unknown;
|
|
1854
|
+
prompt: string;
|
|
1855
|
+
negative_prompt?: string | unknown;
|
|
1842
1856
|
duration?: "5" | "10" | "15";
|
|
1843
|
-
multi_shots?: boolean;
|
|
1844
1857
|
resolution?: "720p" | "1080p";
|
|
1845
|
-
|
|
1858
|
+
enable_safety_checker?: boolean;
|
|
1859
|
+
multi_shots?: boolean;
|
|
1860
|
+
enable_prompt_expansion?: boolean;
|
|
1861
|
+
image_url: string;
|
|
1846
1862
|
options?: {
|
|
1847
1863
|
safety_checks?: {
|
|
1848
1864
|
enabled?: boolean;
|
|
@@ -1866,29 +1882,29 @@ interface ImageToVideoOutput {
|
|
|
1866
1882
|
seed: number;
|
|
1867
1883
|
actual_prompt?: string | unknown;
|
|
1868
1884
|
video: {
|
|
1869
|
-
file_size?: number | unknown;
|
|
1870
|
-
num_frames?: number | unknown;
|
|
1871
|
-
fps?: number | unknown;
|
|
1872
|
-
file_name?: string | unknown;
|
|
1873
|
-
width?: number | unknown;
|
|
1874
|
-
duration?: number | unknown;
|
|
1875
1885
|
url: string;
|
|
1886
|
+
width?: number | unknown;
|
|
1887
|
+
num_frames?: number | unknown;
|
|
1876
1888
|
height?: number | unknown;
|
|
1889
|
+
file_size?: number | unknown;
|
|
1890
|
+
duration?: number | unknown;
|
|
1891
|
+
file_name?: string | unknown;
|
|
1892
|
+
fps?: number | unknown;
|
|
1877
1893
|
content_type?: string | unknown;
|
|
1878
1894
|
};
|
|
1879
1895
|
}
|
|
1880
1896
|
|
|
1881
1897
|
interface ReferenceToVideoInput {
|
|
1882
|
-
|
|
1898
|
+
video_urls: string[];
|
|
1899
|
+
seed?: number | unknown;
|
|
1883
1900
|
aspect_ratio?: "16:9" | "9:16" | "1:1" | "4:3" | "3:4";
|
|
1884
1901
|
prompt: string;
|
|
1885
1902
|
duration?: "5" | "10";
|
|
1886
1903
|
enable_safety_checker?: boolean;
|
|
1887
|
-
seed?: number | unknown;
|
|
1888
|
-
resolution?: "720p" | "1080p";
|
|
1889
|
-
video_urls: string[];
|
|
1890
1904
|
enable_prompt_expansion?: boolean;
|
|
1905
|
+
resolution?: "720p" | "1080p";
|
|
1891
1906
|
negative_prompt?: string | unknown;
|
|
1907
|
+
multi_shots?: boolean;
|
|
1892
1908
|
options?: {
|
|
1893
1909
|
safety_checks?: {
|
|
1894
1910
|
enabled?: boolean;
|
|
@@ -1910,18 +1926,18 @@ interface WanV26ReferenceToVideoResponse {
|
|
|
1910
1926
|
}
|
|
1911
1927
|
interface ReferenceToVideoOutput {
|
|
1912
1928
|
video: {
|
|
1913
|
-
file_size?: number | unknown;
|
|
1914
|
-
num_frames?: number | unknown;
|
|
1915
|
-
fps?: number | unknown;
|
|
1916
|
-
file_name?: string | unknown;
|
|
1917
|
-
width?: number | unknown;
|
|
1918
|
-
duration?: number | unknown;
|
|
1919
1929
|
url: string;
|
|
1930
|
+
width?: number | unknown;
|
|
1931
|
+
num_frames?: number | unknown;
|
|
1920
1932
|
height?: number | unknown;
|
|
1933
|
+
file_size?: number | unknown;
|
|
1934
|
+
duration?: number | unknown;
|
|
1935
|
+
file_name?: string | unknown;
|
|
1936
|
+
fps?: number | unknown;
|
|
1921
1937
|
content_type?: string | unknown;
|
|
1922
1938
|
};
|
|
1923
|
-
actual_prompt?: string | unknown;
|
|
1924
1939
|
seed: number;
|
|
1940
|
+
actual_prompt?: string | unknown;
|
|
1925
1941
|
}
|
|
1926
1942
|
|
|
1927
1943
|
interface SaveToDriveCommand {
|
|
@@ -1956,13 +1972,13 @@ interface ThumbnailResult {
|
|
|
1956
1972
|
}
|
|
1957
1973
|
|
|
1958
1974
|
interface SeedVRImageInput {
|
|
1975
|
+
output_format?: "png" | "jpg" | "webp";
|
|
1959
1976
|
image_url: string;
|
|
1960
1977
|
upscale_factor?: number;
|
|
1961
|
-
upscale_mode?: "target" | "factor";
|
|
1962
|
-
output_format?: "png" | "jpg" | "webp";
|
|
1963
|
-
sync_mode?: boolean;
|
|
1964
1978
|
seed?: number | unknown;
|
|
1965
1979
|
target_resolution?: "720p" | "1080p" | "1440p" | "2160p";
|
|
1980
|
+
sync_mode?: boolean;
|
|
1981
|
+
upscale_mode?: "target" | "factor";
|
|
1966
1982
|
noise_scale?: number;
|
|
1967
1983
|
options?: {
|
|
1968
1984
|
safety_checks?: {
|
|
@@ -1986,22 +2002,22 @@ interface SeedvrUpscaleImageResponse {
|
|
|
1986
2002
|
interface SeedVRImageOutput {
|
|
1987
2003
|
seed: number;
|
|
1988
2004
|
image: {
|
|
1989
|
-
file_size?: number | unknown;
|
|
1990
|
-
file_name?: string | unknown;
|
|
1991
|
-
content_type?: string | unknown;
|
|
1992
2005
|
width?: number | unknown;
|
|
2006
|
+
content_type?: string | unknown;
|
|
1993
2007
|
height?: number | unknown;
|
|
1994
2008
|
url: string;
|
|
2009
|
+
file_size?: number | unknown;
|
|
2010
|
+
file_name?: string | unknown;
|
|
1995
2011
|
};
|
|
1996
2012
|
}
|
|
1997
2013
|
|
|
1998
2014
|
interface XAIImageInput {
|
|
1999
|
-
aspect_ratio?: "2:1" | "20:9" | "19.5:9" | "16:9" | "4:3" | "3:2" | "1:1" | "2:3" | "3:4" | "9:16" | "9:19.5" | "9:20" | "1:2";
|
|
2000
|
-
sync_mode?: boolean;
|
|
2001
2015
|
resolution?: "1k" | "2k";
|
|
2002
|
-
num_images?: number;
|
|
2003
2016
|
output_format?: "jpeg" | "png" | "webp";
|
|
2017
|
+
aspect_ratio?: "2:1" | "20:9" | "19.5:9" | "16:9" | "4:3" | "3:2" | "1:1" | "2:3" | "3:4" | "9:16" | "9:19.5" | "9:20" | "1:2";
|
|
2018
|
+
num_images?: number;
|
|
2004
2019
|
prompt: string;
|
|
2020
|
+
sync_mode?: boolean;
|
|
2005
2021
|
options?: {
|
|
2006
2022
|
safety_checks?: {
|
|
2007
2023
|
enabled?: boolean;
|
|
@@ -2022,25 +2038,25 @@ interface XaiGrokImagineImageResponse {
|
|
|
2022
2038
|
result: XAIImageOutput;
|
|
2023
2039
|
}
|
|
2024
2040
|
interface XAIImageOutput {
|
|
2025
|
-
revised_prompt?: string | unknown;
|
|
2026
2041
|
images: ({
|
|
2027
|
-
|
|
2028
|
-
content_type?: string | unknown;
|
|
2042
|
+
width?: number | unknown;
|
|
2029
2043
|
file_name?: string | unknown;
|
|
2030
2044
|
height?: number | unknown;
|
|
2031
|
-
|
|
2045
|
+
content_type?: string | unknown;
|
|
2032
2046
|
file_size?: number | unknown;
|
|
2047
|
+
url: string;
|
|
2033
2048
|
})[];
|
|
2049
|
+
revised_prompt?: string | unknown;
|
|
2034
2050
|
}
|
|
2035
2051
|
|
|
2036
2052
|
interface XAIImageEditInput {
|
|
2037
|
-
aspect_ratio?: "auto" | "2:1" | "20:9" | "19.5:9" | "16:9" | "4:3" | "3:2" | "1:1" | "2:3" | "3:4" | "9:16" | "9:19.5" | "9:20" | "1:2";
|
|
2038
|
-
image_urls?: string[];
|
|
2039
2053
|
resolution?: "1k" | "2k";
|
|
2040
|
-
sync_mode?: boolean;
|
|
2041
|
-
num_images?: number;
|
|
2042
2054
|
output_format?: "jpeg" | "png" | "webp";
|
|
2055
|
+
aspect_ratio?: "auto" | "2:1" | "20:9" | "19.5:9" | "16:9" | "4:3" | "3:2" | "1:1" | "2:3" | "3:4" | "9:16" | "9:19.5" | "9:20" | "1:2";
|
|
2056
|
+
num_images?: number;
|
|
2043
2057
|
prompt: string;
|
|
2058
|
+
sync_mode?: boolean;
|
|
2059
|
+
image_urls?: string[];
|
|
2044
2060
|
options?: {
|
|
2045
2061
|
safety_checks?: {
|
|
2046
2062
|
enabled?: boolean;
|
|
@@ -2061,21 +2077,21 @@ interface XaiGrokImagineImageEditResponse {
|
|
|
2061
2077
|
result: XAIImageEditOutput;
|
|
2062
2078
|
}
|
|
2063
2079
|
interface XAIImageEditOutput {
|
|
2064
|
-
revised_prompt?: string | unknown;
|
|
2065
2080
|
images: ({
|
|
2066
|
-
|
|
2067
|
-
content_type?: string | unknown;
|
|
2081
|
+
width?: number | unknown;
|
|
2068
2082
|
file_name?: string | unknown;
|
|
2069
2083
|
height?: number | unknown;
|
|
2070
|
-
|
|
2084
|
+
content_type?: string | unknown;
|
|
2071
2085
|
file_size?: number | unknown;
|
|
2086
|
+
url: string;
|
|
2072
2087
|
})[];
|
|
2088
|
+
revised_prompt?: string | unknown;
|
|
2073
2089
|
}
|
|
2074
2090
|
|
|
2075
2091
|
interface XAITextToVideoInput {
|
|
2092
|
+
resolution?: "480p" | "720p";
|
|
2076
2093
|
aspect_ratio?: "16:9" | "4:3" | "3:2" | "1:1" | "2:3" | "3:4" | "9:16";
|
|
2077
2094
|
duration?: number;
|
|
2078
|
-
resolution?: "480p" | "720p";
|
|
2079
2095
|
prompt: string;
|
|
2080
2096
|
options?: {
|
|
2081
2097
|
safety_checks?: {
|
|
@@ -2098,23 +2114,23 @@ interface XaiGrokImagineVideoTextToVideoResponse {
|
|
|
2098
2114
|
}
|
|
2099
2115
|
interface XAITextToVideoOutput {
|
|
2100
2116
|
video: {
|
|
2101
|
-
num_frames?: number | unknown;
|
|
2102
|
-
fps?: number | unknown;
|
|
2103
|
-
url: string;
|
|
2104
2117
|
file_name?: string | unknown;
|
|
2105
|
-
duration?: number | unknown;
|
|
2106
|
-
content_type?: string | unknown;
|
|
2107
|
-
file_size?: number | unknown;
|
|
2108
2118
|
height?: number | unknown;
|
|
2119
|
+
content_type?: string | unknown;
|
|
2120
|
+
num_frames?: number | unknown;
|
|
2121
|
+
url: string;
|
|
2122
|
+
fps?: number | unknown;
|
|
2109
2123
|
width?: number | unknown;
|
|
2124
|
+
file_size?: number | unknown;
|
|
2125
|
+
duration?: number | unknown;
|
|
2110
2126
|
};
|
|
2111
2127
|
}
|
|
2112
2128
|
|
|
2113
2129
|
interface XAIImageToVideoInput {
|
|
2114
|
-
aspect_ratio?: "auto" | "16:9" | "4:3" | "3:2" | "1:1" | "2:3" | "3:4" | "9:16" | unknown;
|
|
2115
2130
|
image_url: string;
|
|
2116
|
-
duration?: number;
|
|
2117
2131
|
resolution?: "480p" | "720p";
|
|
2132
|
+
aspect_ratio?: "auto" | "16:9" | "4:3" | "3:2" | "1:1" | "2:3" | "3:4" | "9:16" | unknown;
|
|
2133
|
+
duration?: number;
|
|
2118
2134
|
prompt: string;
|
|
2119
2135
|
options?: {
|
|
2120
2136
|
safety_checks?: {
|
|
@@ -2137,22 +2153,22 @@ interface XaiGrokImagineVideoImageToVideoResponse {
|
|
|
2137
2153
|
}
|
|
2138
2154
|
interface XAIImageToVideoOutput {
|
|
2139
2155
|
video: {
|
|
2140
|
-
num_frames?: number | unknown;
|
|
2141
|
-
fps?: number | unknown;
|
|
2142
|
-
url: string;
|
|
2143
2156
|
file_name?: string | unknown;
|
|
2144
|
-
duration?: number | unknown;
|
|
2145
|
-
content_type?: string | unknown;
|
|
2146
|
-
file_size?: number | unknown;
|
|
2147
2157
|
height?: number | unknown;
|
|
2158
|
+
content_type?: string | unknown;
|
|
2159
|
+
num_frames?: number | unknown;
|
|
2160
|
+
url: string;
|
|
2161
|
+
fps?: number | unknown;
|
|
2148
2162
|
width?: number | unknown;
|
|
2163
|
+
file_size?: number | unknown;
|
|
2164
|
+
duration?: number | unknown;
|
|
2149
2165
|
};
|
|
2150
2166
|
}
|
|
2151
2167
|
|
|
2152
2168
|
interface XAIVideoEditInput {
|
|
2153
|
-
video_url: string;
|
|
2154
2169
|
resolution?: "auto" | "480p" | "720p";
|
|
2155
2170
|
prompt: string;
|
|
2171
|
+
video_url: string;
|
|
2156
2172
|
options?: {
|
|
2157
2173
|
safety_checks?: {
|
|
2158
2174
|
enabled?: boolean;
|
|
@@ -2174,22 +2190,22 @@ interface XaiGrokImagineVideoEditVideoResponse {
|
|
|
2174
2190
|
}
|
|
2175
2191
|
interface XAIVideoEditOutput {
|
|
2176
2192
|
video: {
|
|
2177
|
-
num_frames?: number | unknown;
|
|
2178
|
-
fps?: number | unknown;
|
|
2179
|
-
url: string;
|
|
2180
2193
|
file_name?: string | unknown;
|
|
2181
|
-
duration?: number | unknown;
|
|
2182
|
-
content_type?: string | unknown;
|
|
2183
|
-
file_size?: number | unknown;
|
|
2184
2194
|
height?: number | unknown;
|
|
2195
|
+
content_type?: string | unknown;
|
|
2196
|
+
num_frames?: number | unknown;
|
|
2197
|
+
url: string;
|
|
2198
|
+
fps?: number | unknown;
|
|
2185
2199
|
width?: number | unknown;
|
|
2200
|
+
file_size?: number | unknown;
|
|
2201
|
+
duration?: number | unknown;
|
|
2186
2202
|
};
|
|
2187
2203
|
}
|
|
2188
2204
|
|
|
2189
2205
|
interface TrimVideoInput {
|
|
2190
|
-
start_time?: number;
|
|
2191
|
-
video_url: string;
|
|
2192
2206
|
duration?: number | unknown;
|
|
2207
|
+
video_url: string;
|
|
2208
|
+
start_time?: number;
|
|
2193
2209
|
end_time?: number | unknown;
|
|
2194
2210
|
options?: {
|
|
2195
2211
|
safety_checks?: {
|
|
@@ -2211,14 +2227,14 @@ interface WorkflowUtilitiesTrimVideoResponse {
|
|
|
2211
2227
|
result: TrimVideoOutput;
|
|
2212
2228
|
}
|
|
2213
2229
|
interface TrimVideoOutput {
|
|
2214
|
-
original_duration: number;
|
|
2215
|
-
trimmed_duration: number;
|
|
2216
2230
|
video: {
|
|
2217
|
-
file_name?: string | unknown;
|
|
2218
2231
|
content_type?: string | unknown;
|
|
2219
|
-
url: string;
|
|
2220
2232
|
file_size?: number | unknown;
|
|
2233
|
+
file_name?: string | unknown;
|
|
2234
|
+
url: string;
|
|
2221
2235
|
};
|
|
2236
|
+
original_duration: number;
|
|
2237
|
+
trimmed_duration: number;
|
|
2222
2238
|
}
|
|
2223
2239
|
|
|
2224
2240
|
interface VideoModerationModel {
|
|
@@ -2251,15 +2267,15 @@ interface VideoFrameNsfw {
|
|
|
2251
2267
|
}
|
|
2252
2268
|
|
|
2253
2269
|
interface ImageExpansionInput {
|
|
2254
|
-
|
|
2270
|
+
prompt?: string;
|
|
2255
2271
|
negative_prompt?: string;
|
|
2256
|
-
|
|
2272
|
+
image_url: string;
|
|
2257
2273
|
sync_mode?: boolean;
|
|
2258
|
-
prompt?: string;
|
|
2259
|
-
aspect_ratio?: "1:1" | "2:3" | "3:2" | "3:4" | "4:3" | "4:5" | "5:4" | "9:16" | "16:9" | unknown;
|
|
2260
2274
|
original_image_location?: number[] | unknown;
|
|
2261
|
-
image_url: string;
|
|
2262
2275
|
seed?: number | unknown;
|
|
2276
|
+
aspect_ratio?: "1:1" | "2:3" | "3:2" | "3:4" | "4:3" | "4:5" | "5:4" | "9:16" | "16:9" | unknown;
|
|
2277
|
+
canvas_size: number[];
|
|
2278
|
+
original_image_size?: number[] | unknown;
|
|
2263
2279
|
options?: {
|
|
2264
2280
|
safety_checks?: {
|
|
2265
2281
|
enabled?: boolean;
|
|
@@ -2280,15 +2296,15 @@ interface BriaExpandResponse {
|
|
|
2280
2296
|
result: ImageExpansionOutput;
|
|
2281
2297
|
}
|
|
2282
2298
|
interface ImageExpansionOutput {
|
|
2299
|
+
seed: number;
|
|
2283
2300
|
image: {
|
|
2301
|
+
height?: number | unknown;
|
|
2302
|
+
content_type?: string | unknown;
|
|
2284
2303
|
url: string;
|
|
2304
|
+
file_name?: string | unknown;
|
|
2285
2305
|
width?: number | unknown;
|
|
2286
|
-
content_type?: string | unknown;
|
|
2287
2306
|
file_size?: number | unknown;
|
|
2288
|
-
height?: number | unknown;
|
|
2289
|
-
file_name?: string | unknown;
|
|
2290
2307
|
};
|
|
2291
|
-
seed: number;
|
|
2292
2308
|
}
|
|
2293
2309
|
|
|
2294
2310
|
interface GeminiV2ImagesCommand {
|
|
@@ -2301,9 +2317,9 @@ interface GeminiV2ImagesCommand {
|
|
|
2301
2317
|
options?: GenAIOptions$2y;
|
|
2302
2318
|
thinkingConfig?: ThinkingConfig$1;
|
|
2303
2319
|
}
|
|
2304
|
-
type AspectRatio$1 = "1:1" | "2:3" | "3:2" | "3:4" | "4:3" | "4:5" | "5:4" | "9:16" | "16:9" | "21:9" | "1:4" | "4:1" | "1:8" | "8:1";
|
|
2320
|
+
type AspectRatio$1 = "auto" | "1:1" | "2:3" | "3:2" | "3:4" | "4:3" | "4:5" | "5:4" | "9:16" | "16:9" | "21:9" | "1:4" | "4:1" | "1:8" | "8:1";
|
|
2305
2321
|
type ImageResolution$1 = "0.5K" | "1K" | "2K" | "4K";
|
|
2306
|
-
type GeminiV2ImageModel = "gemini-2.5-flash-image" | "gemini-3-pro-image" | "gemini-3-pro-image-preview" | "gemini-3.1-flash-image" | "gemini-3.1-flash-lite-image" | "gemini-3.1-flash-image-preview" | "instant-ramen";
|
|
2322
|
+
type GeminiV2ImageModel = "gemini-2.5-flash-image" | "gemini-3-pro-image" | "gemini-3-pro-image-preview" | "gemini-3.1-flash-image" | "gemini-3.1-flash-lite-image" | "gemini-3.1-flash-image-preview" | "instant-ramen" | "spicy-mayo";
|
|
2307
2323
|
interface GenAIOptions$2y {
|
|
2308
2324
|
safety_checks?: SafetyChecksOptions$2y;
|
|
2309
2325
|
drive?: DriveOptions$2y;
|
|
@@ -3263,6 +3279,7 @@ interface VeoVideoGenResult {
|
|
|
3263
3279
|
}
|
|
3264
3280
|
|
|
3265
3281
|
interface HeygenVideoGenerateCommand {
|
|
3282
|
+
engine?: "avatar_iv" | "avatar_v";
|
|
3266
3283
|
avatar_id?: string;
|
|
3267
3284
|
image_url?: string;
|
|
3268
3285
|
image_asset_id?: string;
|
|
@@ -3272,8 +3289,9 @@ interface HeygenVideoGenerateCommand {
|
|
|
3272
3289
|
audio_asset_id?: string;
|
|
3273
3290
|
title?: string;
|
|
3274
3291
|
resolution?: "1080p" | "720p" | "4k";
|
|
3275
|
-
aspect_ratio?: "16:9" | "9:16";
|
|
3292
|
+
aspect_ratio?: "16:9" | "9:16" | "4:5" | "5:4" | "1:1" | "auto";
|
|
3276
3293
|
motion_prompt?: string;
|
|
3294
|
+
reference_look_id?: string;
|
|
3277
3295
|
expressiveness?: "low" | "medium" | "high";
|
|
3278
3296
|
remove_background?: boolean;
|
|
3279
3297
|
background?: BackgroundConfig;
|
|
@@ -3390,6 +3408,7 @@ interface OpenAiSoraExtensionsCommand {
|
|
|
3390
3408
|
interface GenAIOptions$2c {
|
|
3391
3409
|
safety_checks?: SafetyChecksOptions$2c;
|
|
3392
3410
|
drive?: DriveOptions$2c;
|
|
3411
|
+
inputs_transformation?: InputsTransformationOptions$8;
|
|
3393
3412
|
}
|
|
3394
3413
|
interface SafetyChecksOptions$2c {
|
|
3395
3414
|
enabled?: boolean;
|
|
@@ -3403,6 +3422,9 @@ interface DriveFolderOptions$2c {
|
|
|
3403
3422
|
path?: string;
|
|
3404
3423
|
id?: string;
|
|
3405
3424
|
}
|
|
3425
|
+
interface InputsTransformationOptions$8 {
|
|
3426
|
+
downscale_oversized_images?: boolean;
|
|
3427
|
+
}
|
|
3406
3428
|
interface OpenAiSoraExtensionsResponse {
|
|
3407
3429
|
id: string;
|
|
3408
3430
|
status: "ACCEPTED" | "IN_PROGRESS" | "COMPLETED" | "FAILED";
|
|
@@ -3424,6 +3446,7 @@ interface OpenAiSoraEditsCommand {
|
|
|
3424
3446
|
interface GenAIOptions$2b {
|
|
3425
3447
|
safety_checks?: SafetyChecksOptions$2b;
|
|
3426
3448
|
drive?: DriveOptions$2b;
|
|
3449
|
+
inputs_transformation?: InputsTransformationOptions$7;
|
|
3427
3450
|
}
|
|
3428
3451
|
interface SafetyChecksOptions$2b {
|
|
3429
3452
|
enabled?: boolean;
|
|
@@ -3437,6 +3460,9 @@ interface DriveFolderOptions$2b {
|
|
|
3437
3460
|
path?: string;
|
|
3438
3461
|
id?: string;
|
|
3439
3462
|
}
|
|
3463
|
+
interface InputsTransformationOptions$7 {
|
|
3464
|
+
downscale_oversized_images?: boolean;
|
|
3465
|
+
}
|
|
3440
3466
|
interface OpenAiSoraEditsResponse {
|
|
3441
3467
|
id: string;
|
|
3442
3468
|
status: "ACCEPTED" | "IN_PROGRESS" | "COMPLETED" | "FAILED";
|
|
@@ -3469,6 +3495,7 @@ interface SoraCharacterReference {
|
|
|
3469
3495
|
interface GenAIOptions$2a {
|
|
3470
3496
|
safety_checks?: SafetyChecksOptions$2a;
|
|
3471
3497
|
drive?: DriveOptions$2a;
|
|
3498
|
+
inputs_transformation?: InputsTransformationOptions$6;
|
|
3472
3499
|
}
|
|
3473
3500
|
interface SafetyChecksOptions$2a {
|
|
3474
3501
|
enabled?: boolean;
|
|
@@ -3482,6 +3509,9 @@ interface DriveFolderOptions$2a {
|
|
|
3482
3509
|
path?: string;
|
|
3483
3510
|
id?: string;
|
|
3484
3511
|
}
|
|
3512
|
+
interface InputsTransformationOptions$6 {
|
|
3513
|
+
downscale_oversized_images?: boolean;
|
|
3514
|
+
}
|
|
3485
3515
|
interface OpenAiSoraBatchResponse {
|
|
3486
3516
|
id: string;
|
|
3487
3517
|
status: "ACCEPTED" | "IN_PROGRESS" | "COMPLETED" | "FAILED";
|
|
@@ -3820,12 +3850,12 @@ interface WanImagesResult {
|
|
|
3820
3850
|
}
|
|
3821
3851
|
|
|
3822
3852
|
interface LTXV23TextToVideoRequest {
|
|
3823
|
-
resolution?: "1080p" | "1440p" | "2160p";
|
|
3824
|
-
duration?: 6 | 8 | 10;
|
|
3825
|
-
generate_audio?: boolean;
|
|
3826
|
-
prompt: string;
|
|
3827
3853
|
fps?: 24 | 25 | 48 | 50;
|
|
3854
|
+
prompt: string;
|
|
3828
3855
|
aspect_ratio?: "16:9" | "9:16";
|
|
3856
|
+
duration?: 6 | 8 | 10;
|
|
3857
|
+
resolution?: "1080p" | "1440p" | "2160p";
|
|
3858
|
+
generate_audio?: boolean;
|
|
3829
3859
|
options?: {
|
|
3830
3860
|
safety_checks?: {
|
|
3831
3861
|
enabled?: boolean;
|
|
@@ -3847,27 +3877,27 @@ interface Ltx23TextToVideoResponse {
|
|
|
3847
3877
|
}
|
|
3848
3878
|
interface LTXV23TextToVideoResponse {
|
|
3849
3879
|
video: {
|
|
3850
|
-
file_size?: number | unknown;
|
|
3851
|
-
num_frames?: number | unknown;
|
|
3852
3880
|
width?: number | unknown;
|
|
3853
|
-
|
|
3881
|
+
file_name?: string | unknown;
|
|
3882
|
+
file_size?: number | unknown;
|
|
3854
3883
|
url: string;
|
|
3855
|
-
duration?: number | unknown;
|
|
3856
3884
|
content_type?: string | unknown;
|
|
3857
|
-
file_name?: string | unknown;
|
|
3858
3885
|
height?: number | unknown;
|
|
3886
|
+
duration?: number | unknown;
|
|
3887
|
+
num_frames?: number | unknown;
|
|
3888
|
+
fps?: number | unknown;
|
|
3859
3889
|
};
|
|
3860
3890
|
}
|
|
3861
3891
|
|
|
3862
3892
|
interface LTXV23ImageToVideoRequest {
|
|
3863
|
-
image_url: string;
|
|
3864
|
-
end_image_url?: string | unknown;
|
|
3865
3893
|
fps?: 24 | 25 | 48 | 50;
|
|
3866
|
-
aspect_ratio?: "auto" | "16:9" | "9:16";
|
|
3867
3894
|
resolution?: "1080p" | "1440p" | "2160p";
|
|
3868
|
-
generate_audio?: boolean;
|
|
3869
|
-
duration?: 6 | 8 | 10;
|
|
3870
3895
|
prompt: string;
|
|
3896
|
+
aspect_ratio?: "auto" | "16:9" | "9:16";
|
|
3897
|
+
end_image_url?: string | unknown;
|
|
3898
|
+
duration?: 6 | 8 | 10;
|
|
3899
|
+
image_url: string;
|
|
3900
|
+
generate_audio?: boolean;
|
|
3871
3901
|
options?: {
|
|
3872
3902
|
safety_checks?: {
|
|
3873
3903
|
enabled?: boolean;
|
|
@@ -3889,25 +3919,25 @@ interface Ltx23ImageToVideoResponse {
|
|
|
3889
3919
|
}
|
|
3890
3920
|
interface LTXV23ImageToVideoResponse {
|
|
3891
3921
|
video: {
|
|
3892
|
-
file_size?: number | unknown;
|
|
3893
|
-
num_frames?: number | unknown;
|
|
3894
3922
|
width?: number | unknown;
|
|
3895
|
-
|
|
3923
|
+
file_name?: string | unknown;
|
|
3924
|
+
file_size?: number | unknown;
|
|
3896
3925
|
url: string;
|
|
3897
|
-
duration?: number | unknown;
|
|
3898
3926
|
content_type?: string | unknown;
|
|
3899
|
-
file_name?: string | unknown;
|
|
3900
3927
|
height?: number | unknown;
|
|
3928
|
+
duration?: number | unknown;
|
|
3929
|
+
num_frames?: number | unknown;
|
|
3930
|
+
fps?: number | unknown;
|
|
3901
3931
|
};
|
|
3902
3932
|
}
|
|
3903
3933
|
|
|
3904
3934
|
interface LTXV23TextToVideoFastRequest {
|
|
3905
|
-
resolution?: "1080p" | "1440p" | "2160p";
|
|
3906
|
-
duration?: 6 | 8 | 10 | 12 | 14 | 16 | 18 | 20;
|
|
3907
|
-
generate_audio?: boolean;
|
|
3908
|
-
prompt: string;
|
|
3909
3935
|
fps?: 24 | 25 | 48 | 50;
|
|
3936
|
+
prompt: string;
|
|
3910
3937
|
aspect_ratio?: "16:9" | "9:16";
|
|
3938
|
+
duration?: 6 | 8 | 10 | 12 | 14 | 16 | 18 | 20;
|
|
3939
|
+
resolution?: "1080p" | "1440p" | "2160p";
|
|
3940
|
+
generate_audio?: boolean;
|
|
3911
3941
|
options?: {
|
|
3912
3942
|
safety_checks?: {
|
|
3913
3943
|
enabled?: boolean;
|
|
@@ -3929,27 +3959,27 @@ interface Ltx23TextToVideoFastResponse {
|
|
|
3929
3959
|
}
|
|
3930
3960
|
interface LTXV23TextToVideoFastResponse {
|
|
3931
3961
|
video: {
|
|
3932
|
-
file_size?: number | unknown;
|
|
3933
|
-
num_frames?: number | unknown;
|
|
3934
3962
|
width?: number | unknown;
|
|
3935
|
-
|
|
3963
|
+
file_name?: string | unknown;
|
|
3964
|
+
file_size?: number | unknown;
|
|
3936
3965
|
url: string;
|
|
3937
|
-
duration?: number | unknown;
|
|
3938
3966
|
content_type?: string | unknown;
|
|
3939
|
-
file_name?: string | unknown;
|
|
3940
3967
|
height?: number | unknown;
|
|
3968
|
+
duration?: number | unknown;
|
|
3969
|
+
num_frames?: number | unknown;
|
|
3970
|
+
fps?: number | unknown;
|
|
3941
3971
|
};
|
|
3942
3972
|
}
|
|
3943
3973
|
|
|
3944
3974
|
interface LTXV23ImageToVideoFastRequest {
|
|
3945
|
-
image_url: string;
|
|
3946
|
-
end_image_url?: string | unknown;
|
|
3947
3975
|
fps?: 24 | 25 | 48 | 50;
|
|
3948
|
-
aspect_ratio?: "auto" | "16:9" | "9:16";
|
|
3949
3976
|
resolution?: "1080p" | "1440p" | "2160p";
|
|
3950
|
-
generate_audio?: boolean;
|
|
3951
|
-
duration?: 6 | 8 | 10 | 12 | 14 | 16 | 18 | 20;
|
|
3952
3977
|
prompt: string;
|
|
3978
|
+
aspect_ratio?: "auto" | "16:9" | "9:16";
|
|
3979
|
+
end_image_url?: string | unknown;
|
|
3980
|
+
duration?: 6 | 8 | 10 | 12 | 14 | 16 | 18 | 20;
|
|
3981
|
+
image_url: string;
|
|
3982
|
+
generate_audio?: boolean;
|
|
3953
3983
|
options?: {
|
|
3954
3984
|
safety_checks?: {
|
|
3955
3985
|
enabled?: boolean;
|
|
@@ -3971,24 +4001,24 @@ interface Ltx23ImageToVideoFastResponse {
|
|
|
3971
4001
|
}
|
|
3972
4002
|
interface LTXV23ImageToVideoFastResponse {
|
|
3973
4003
|
video: {
|
|
3974
|
-
file_size?: number | unknown;
|
|
3975
|
-
num_frames?: number | unknown;
|
|
3976
4004
|
width?: number | unknown;
|
|
3977
|
-
|
|
4005
|
+
file_name?: string | unknown;
|
|
4006
|
+
file_size?: number | unknown;
|
|
3978
4007
|
url: string;
|
|
3979
|
-
duration?: number | unknown;
|
|
3980
4008
|
content_type?: string | unknown;
|
|
3981
|
-
file_name?: string | unknown;
|
|
3982
4009
|
height?: number | unknown;
|
|
4010
|
+
duration?: number | unknown;
|
|
4011
|
+
num_frames?: number | unknown;
|
|
4012
|
+
fps?: number | unknown;
|
|
3983
4013
|
};
|
|
3984
4014
|
}
|
|
3985
4015
|
|
|
3986
4016
|
interface LTXV23AudioToVideoRequest {
|
|
3987
|
-
image_url?: string | unknown;
|
|
3988
|
-
guidance_scale?: number | unknown;
|
|
3989
|
-
audio_url: string;
|
|
3990
4017
|
prompt?: string | unknown;
|
|
3991
4018
|
aspect_ratio?: "auto" | "16:9" | "9:16";
|
|
4019
|
+
audio_url: string;
|
|
4020
|
+
guidance_scale?: number | unknown;
|
|
4021
|
+
image_url?: string | unknown;
|
|
3992
4022
|
options?: {
|
|
3993
4023
|
safety_checks?: {
|
|
3994
4024
|
enabled?: boolean;
|
|
@@ -4010,24 +4040,24 @@ interface Ltx23AudioToVideoResponse {
|
|
|
4010
4040
|
}
|
|
4011
4041
|
interface LTXV23AudioToVideoResponse {
|
|
4012
4042
|
video: {
|
|
4013
|
-
file_size?: number | unknown;
|
|
4014
|
-
num_frames?: number | unknown;
|
|
4015
4043
|
width?: number | unknown;
|
|
4016
|
-
|
|
4044
|
+
file_name?: string | unknown;
|
|
4045
|
+
file_size?: number | unknown;
|
|
4017
4046
|
url: string;
|
|
4018
|
-
duration?: number | unknown;
|
|
4019
4047
|
content_type?: string | unknown;
|
|
4020
|
-
file_name?: string | unknown;
|
|
4021
4048
|
height?: number | unknown;
|
|
4049
|
+
duration?: number | unknown;
|
|
4050
|
+
num_frames?: number | unknown;
|
|
4051
|
+
fps?: number | unknown;
|
|
4022
4052
|
};
|
|
4023
4053
|
}
|
|
4024
4054
|
|
|
4025
4055
|
interface LTXV23ExtendVideoRequest {
|
|
4056
|
+
prompt?: string | unknown;
|
|
4057
|
+
mode?: "start" | "end";
|
|
4026
4058
|
video_url: string;
|
|
4027
|
-
duration?: number;
|
|
4028
4059
|
context?: number | unknown;
|
|
4029
|
-
|
|
4030
|
-
prompt?: string | unknown;
|
|
4060
|
+
duration?: number;
|
|
4031
4061
|
options?: {
|
|
4032
4062
|
safety_checks?: {
|
|
4033
4063
|
enabled?: boolean;
|
|
@@ -4049,24 +4079,24 @@ interface Ltx23ExtendVideoResponse {
|
|
|
4049
4079
|
}
|
|
4050
4080
|
interface LTXV23ExtendVideoResponse {
|
|
4051
4081
|
video: {
|
|
4052
|
-
file_size?: number | unknown;
|
|
4053
|
-
num_frames?: number | unknown;
|
|
4054
4082
|
width?: number | unknown;
|
|
4055
|
-
|
|
4083
|
+
file_name?: string | unknown;
|
|
4084
|
+
file_size?: number | unknown;
|
|
4056
4085
|
url: string;
|
|
4057
|
-
duration?: number | unknown;
|
|
4058
4086
|
content_type?: string | unknown;
|
|
4059
|
-
file_name?: string | unknown;
|
|
4060
4087
|
height?: number | unknown;
|
|
4088
|
+
duration?: number | unknown;
|
|
4089
|
+
num_frames?: number | unknown;
|
|
4090
|
+
fps?: number | unknown;
|
|
4061
4091
|
};
|
|
4062
4092
|
}
|
|
4063
4093
|
|
|
4064
4094
|
interface LTXV23RetakeVideoRequest {
|
|
4065
|
-
video_url: string;
|
|
4066
|
-
duration?: number;
|
|
4067
|
-
prompt: string;
|
|
4068
4095
|
retake_mode?: "replace_audio" | "replace_video" | "replace_audio_and_video";
|
|
4096
|
+
prompt: string;
|
|
4069
4097
|
start_time?: number;
|
|
4098
|
+
video_url: string;
|
|
4099
|
+
duration?: number;
|
|
4070
4100
|
options?: {
|
|
4071
4101
|
safety_checks?: {
|
|
4072
4102
|
enabled?: boolean;
|
|
@@ -4088,15 +4118,15 @@ interface Ltx23RetakeVideoResponse {
|
|
|
4088
4118
|
}
|
|
4089
4119
|
interface LTXV23RetakeVideoResponse {
|
|
4090
4120
|
video: {
|
|
4091
|
-
file_size?: number | unknown;
|
|
4092
|
-
num_frames?: number | unknown;
|
|
4093
4121
|
width?: number | unknown;
|
|
4094
|
-
|
|
4122
|
+
file_name?: string | unknown;
|
|
4123
|
+
file_size?: number | unknown;
|
|
4095
4124
|
url: string;
|
|
4096
|
-
duration?: number | unknown;
|
|
4097
4125
|
content_type?: string | unknown;
|
|
4098
|
-
file_name?: string | unknown;
|
|
4099
4126
|
height?: number | unknown;
|
|
4127
|
+
duration?: number | unknown;
|
|
4128
|
+
num_frames?: number | unknown;
|
|
4129
|
+
fps?: number | unknown;
|
|
4100
4130
|
};
|
|
4101
4131
|
}
|
|
4102
4132
|
|
|
@@ -4499,36 +4529,36 @@ interface WanImageToVideoFirstAndLastFramesResult {
|
|
|
4499
4529
|
}
|
|
4500
4530
|
|
|
4501
4531
|
interface SingleImageInputModel {
|
|
4502
|
-
|
|
4503
|
-
|
|
4504
|
-
|
|
4505
|
-
|
|
4532
|
+
seed?: number | unknown;
|
|
4533
|
+
shape_slat_guidance_interval_end?: number;
|
|
4534
|
+
remesh?: boolean;
|
|
4535
|
+
remesh_project?: number;
|
|
4506
4536
|
ss_guidance_interval_start?: number;
|
|
4507
4537
|
shape_slat_sampling_steps?: number;
|
|
4508
|
-
|
|
4509
|
-
|
|
4510
|
-
tex_slat_guidance_rescale?: number;
|
|
4511
|
-
shape_slat_guidance_interval_end?: number;
|
|
4512
|
-
shape_slat_guidance_interval_start?: number;
|
|
4538
|
+
tex_slat_rescale_t?: number;
|
|
4539
|
+
tex_slat_guidance_interval_start?: number;
|
|
4513
4540
|
remesh_band?: number;
|
|
4514
|
-
tex_slat_sampling_steps?: number;
|
|
4515
|
-
decimation_target?: number;
|
|
4516
|
-
uv_unwrap_smooth_strength?: number;
|
|
4517
|
-
tex_slat_guidance_strength?: number;
|
|
4518
|
-
ss_guidance_interval_end?: number;
|
|
4519
4541
|
ss_sampling_steps?: number;
|
|
4520
|
-
ss_guidance_strength?: number;
|
|
4521
|
-
remesh?: boolean;
|
|
4522
|
-
tex_slat_rescale_t?: number;
|
|
4523
|
-
shape_slat_rescale_t?: number;
|
|
4524
4542
|
uv_unwrap_refine_iterations?: number;
|
|
4525
4543
|
shape_slat_guidance_strength?: number;
|
|
4544
|
+
ss_guidance_rescale?: number;
|
|
4545
|
+
shape_slat_guidance_interval_start?: number;
|
|
4526
4546
|
resolution?: 512 | 1024 | 1536;
|
|
4527
|
-
|
|
4547
|
+
texture_size?: 1024 | 2048 | 4096;
|
|
4548
|
+
tex_slat_guidance_interval_end?: number;
|
|
4549
|
+
tex_slat_sampling_steps?: number;
|
|
4550
|
+
image_url: string;
|
|
4528
4551
|
shape_slat_guidance_rescale?: number;
|
|
4529
|
-
|
|
4552
|
+
uv_unwrap_smooth_strength?: number;
|
|
4553
|
+
uv_unwrap_angle_threshold_deg?: number;
|
|
4554
|
+
ss_rescale_t?: number;
|
|
4555
|
+
tex_slat_guidance_strength?: number;
|
|
4556
|
+
tex_slat_guidance_rescale?: number;
|
|
4557
|
+
ss_guidance_strength?: number;
|
|
4558
|
+
decimation_target?: number;
|
|
4530
4559
|
uv_unwrap_global_iterations?: number;
|
|
4531
|
-
|
|
4560
|
+
shape_slat_rescale_t?: number;
|
|
4561
|
+
ss_guidance_interval_end?: number;
|
|
4532
4562
|
options?: {
|
|
4533
4563
|
safety_checks?: {
|
|
4534
4564
|
enabled?: boolean;
|
|
@@ -4550,9 +4580,9 @@ interface Trellis2Response {
|
|
|
4550
4580
|
}
|
|
4551
4581
|
interface ObjectOutput {
|
|
4552
4582
|
model_glb: {
|
|
4553
|
-
url: string;
|
|
4554
|
-
file_size?: number | unknown;
|
|
4555
4583
|
file_name?: string | unknown;
|
|
4584
|
+
file_size?: number | unknown;
|
|
4585
|
+
url: string;
|
|
4556
4586
|
content_type?: string | unknown;
|
|
4557
4587
|
};
|
|
4558
4588
|
}
|
|
@@ -4776,18 +4806,18 @@ interface WanV2VideoEditResult {
|
|
|
4776
4806
|
}
|
|
4777
4807
|
|
|
4778
4808
|
interface QwenImage2TextToImageInput {
|
|
4779
|
-
prompt: string;
|
|
4780
4809
|
enable_prompt_expansion?: boolean;
|
|
4781
4810
|
output_format?: "jpeg" | "png" | "webp";
|
|
4782
|
-
|
|
4811
|
+
seed?: number | unknown;
|
|
4812
|
+
negative_prompt?: string | unknown;
|
|
4813
|
+
sync_mode?: boolean;
|
|
4783
4814
|
num_images?: number;
|
|
4815
|
+
enable_safety_checker?: boolean;
|
|
4816
|
+
prompt: string;
|
|
4784
4817
|
image_size?: {
|
|
4785
4818
|
width?: number;
|
|
4786
4819
|
height?: number;
|
|
4787
4820
|
} | "square_hd" | "square" | "portrait_4_3" | "portrait_16_9" | "landscape_4_3" | "landscape_16_9";
|
|
4788
|
-
negative_prompt?: string | unknown;
|
|
4789
|
-
seed?: number | unknown;
|
|
4790
|
-
sync_mode?: boolean;
|
|
4791
4821
|
options?: {
|
|
4792
4822
|
safety_checks?: {
|
|
4793
4823
|
enabled?: boolean;
|
|
@@ -4808,29 +4838,29 @@ interface QwenImage2TextToImageResponse {
|
|
|
4808
4838
|
result: QwenImage2TextToImageOutput;
|
|
4809
4839
|
}
|
|
4810
4840
|
interface QwenImage2TextToImageOutput {
|
|
4841
|
+
seed: number;
|
|
4811
4842
|
images: ({
|
|
4812
|
-
file_name?: string | unknown;
|
|
4813
|
-
file_size?: number | unknown;
|
|
4814
|
-
url: string;
|
|
4815
4843
|
content_type?: string | unknown;
|
|
4844
|
+
url: string;
|
|
4845
|
+
file_size?: number | unknown;
|
|
4846
|
+
file_name?: string | unknown;
|
|
4816
4847
|
})[];
|
|
4817
|
-
seed: number;
|
|
4818
4848
|
}
|
|
4819
4849
|
|
|
4820
4850
|
interface QwenImage2EditInput {
|
|
4821
|
-
prompt: string;
|
|
4822
4851
|
enable_prompt_expansion?: boolean;
|
|
4823
4852
|
output_format?: "jpeg" | "png" | "webp";
|
|
4853
|
+
seed?: number | unknown;
|
|
4854
|
+
negative_prompt?: string | unknown;
|
|
4824
4855
|
image_urls: string[];
|
|
4825
|
-
|
|
4856
|
+
sync_mode?: boolean;
|
|
4826
4857
|
num_images?: number;
|
|
4858
|
+
enable_safety_checker?: boolean;
|
|
4859
|
+
prompt: string;
|
|
4827
4860
|
image_size?: {
|
|
4828
4861
|
width?: number;
|
|
4829
4862
|
height?: number;
|
|
4830
4863
|
} | "square_hd" | "square" | "portrait_4_3" | "portrait_16_9" | "landscape_4_3" | "landscape_16_9" | unknown;
|
|
4831
|
-
negative_prompt?: string | unknown;
|
|
4832
|
-
seed?: number | unknown;
|
|
4833
|
-
sync_mode?: boolean;
|
|
4834
4864
|
options?: {
|
|
4835
4865
|
safety_checks?: {
|
|
4836
4866
|
enabled?: boolean;
|
|
@@ -4851,28 +4881,28 @@ interface QwenImage2EditResponse {
|
|
|
4851
4881
|
result: QwenImage2EditOutput;
|
|
4852
4882
|
}
|
|
4853
4883
|
interface QwenImage2EditOutput {
|
|
4884
|
+
seed: number;
|
|
4854
4885
|
images: ({
|
|
4855
|
-
file_name?: string | unknown;
|
|
4856
|
-
file_size?: number | unknown;
|
|
4857
|
-
url: string;
|
|
4858
4886
|
content_type?: string | unknown;
|
|
4887
|
+
url: string;
|
|
4888
|
+
file_size?: number | unknown;
|
|
4889
|
+
file_name?: string | unknown;
|
|
4859
4890
|
})[];
|
|
4860
|
-
seed: number;
|
|
4861
4891
|
}
|
|
4862
4892
|
|
|
4863
4893
|
interface QwenImage2ProTextToImageInput {
|
|
4864
|
-
prompt: string;
|
|
4865
4894
|
enable_prompt_expansion?: boolean;
|
|
4866
4895
|
output_format?: "jpeg" | "png" | "webp";
|
|
4867
|
-
|
|
4896
|
+
seed?: number | unknown;
|
|
4897
|
+
negative_prompt?: string | unknown;
|
|
4898
|
+
sync_mode?: boolean;
|
|
4868
4899
|
num_images?: number;
|
|
4900
|
+
enable_safety_checker?: boolean;
|
|
4901
|
+
prompt: string;
|
|
4869
4902
|
image_size?: {
|
|
4870
4903
|
width?: number;
|
|
4871
4904
|
height?: number;
|
|
4872
4905
|
} | "square_hd" | "square" | "portrait_4_3" | "portrait_16_9" | "landscape_4_3" | "landscape_16_9";
|
|
4873
|
-
negative_prompt?: string | unknown;
|
|
4874
|
-
seed?: number | unknown;
|
|
4875
|
-
sync_mode?: boolean;
|
|
4876
4906
|
options?: {
|
|
4877
4907
|
safety_checks?: {
|
|
4878
4908
|
enabled?: boolean;
|
|
@@ -4893,29 +4923,29 @@ interface QwenImage2ProTextToImageResponse {
|
|
|
4893
4923
|
result: QwenImage2ProTextToImageOutput;
|
|
4894
4924
|
}
|
|
4895
4925
|
interface QwenImage2ProTextToImageOutput {
|
|
4926
|
+
seed: number;
|
|
4896
4927
|
images: ({
|
|
4897
|
-
file_name?: string | unknown;
|
|
4898
|
-
file_size?: number | unknown;
|
|
4899
|
-
url: string;
|
|
4900
4928
|
content_type?: string | unknown;
|
|
4929
|
+
url: string;
|
|
4930
|
+
file_size?: number | unknown;
|
|
4931
|
+
file_name?: string | unknown;
|
|
4901
4932
|
})[];
|
|
4902
|
-
seed: number;
|
|
4903
4933
|
}
|
|
4904
4934
|
|
|
4905
4935
|
interface QwenImage2ProEditInput {
|
|
4906
|
-
prompt: string;
|
|
4907
4936
|
enable_prompt_expansion?: boolean;
|
|
4908
4937
|
output_format?: "jpeg" | "png" | "webp";
|
|
4938
|
+
seed?: number | unknown;
|
|
4939
|
+
negative_prompt?: string | unknown;
|
|
4909
4940
|
image_urls: string[];
|
|
4910
|
-
|
|
4941
|
+
sync_mode?: boolean;
|
|
4911
4942
|
num_images?: number;
|
|
4943
|
+
enable_safety_checker?: boolean;
|
|
4944
|
+
prompt: string;
|
|
4912
4945
|
image_size?: {
|
|
4913
4946
|
width?: number;
|
|
4914
4947
|
height?: number;
|
|
4915
4948
|
} | "square_hd" | "square" | "portrait_4_3" | "portrait_16_9" | "landscape_4_3" | "landscape_16_9" | unknown;
|
|
4916
|
-
negative_prompt?: string | unknown;
|
|
4917
|
-
seed?: number | unknown;
|
|
4918
|
-
sync_mode?: boolean;
|
|
4919
4949
|
options?: {
|
|
4920
4950
|
safety_checks?: {
|
|
4921
4951
|
enabled?: boolean;
|
|
@@ -4936,13 +4966,13 @@ interface QwenImage2ProEditResponse {
|
|
|
4936
4966
|
result: QwenImage2ProEditOutput;
|
|
4937
4967
|
}
|
|
4938
4968
|
interface QwenImage2ProEditOutput {
|
|
4969
|
+
seed: number;
|
|
4939
4970
|
images: ({
|
|
4940
|
-
file_name?: string | unknown;
|
|
4941
|
-
file_size?: number | unknown;
|
|
4942
|
-
url: string;
|
|
4943
4971
|
content_type?: string | unknown;
|
|
4972
|
+
url: string;
|
|
4973
|
+
file_size?: number | unknown;
|
|
4974
|
+
file_name?: string | unknown;
|
|
4944
4975
|
})[];
|
|
4945
|
-
seed: number;
|
|
4946
4976
|
}
|
|
4947
4977
|
|
|
4948
4978
|
interface FluxOutpaintingCommand {
|
|
@@ -5368,7 +5398,7 @@ interface SeedanceCommand {
|
|
|
5368
5398
|
camerafixed?: boolean;
|
|
5369
5399
|
options?: GenAIOptions$1F;
|
|
5370
5400
|
}
|
|
5371
|
-
type SeedanceModelAlias = "seedance_1_0_pro" | "seedance_1_0_pro_fast" | "seedance_1_5_pro" | "seedance_2_0" | "seedance_2_0_fast" | "seedance_2_0_mini" | "seedance_2_5";
|
|
5401
|
+
type SeedanceModelAlias = "seedance_1_0_pro" | "seedance_1_0_pro_fast" | "seedance_1_5_pro" | "seedance_2_0" | "seedance_2_0_without_moderation" | "seedance_2_0_fast" | "seedance_2_0_mini" | "seedance_2_5" | "seedance_2_5_without_moderation";
|
|
5372
5402
|
interface ContentItem {
|
|
5373
5403
|
type: ContentType;
|
|
5374
5404
|
text?: string;
|
|
@@ -5793,13 +5823,13 @@ interface IdeogramClientData$2 {
|
|
|
5793
5823
|
}
|
|
5794
5824
|
|
|
5795
5825
|
interface Seedance2T2VInput {
|
|
5796
|
-
aspect_ratio?: "auto" | "21:9" | "16:9" | "4:3" | "1:1" | "3:4" | "9:16";
|
|
5797
|
-
end_user_id?: string | unknown;
|
|
5798
5826
|
resolution?: "480p" | "720p" | "1080p" | "4k";
|
|
5827
|
+
end_user_id?: string | unknown;
|
|
5799
5828
|
duration?: "auto" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15";
|
|
5800
5829
|
generate_audio?: boolean;
|
|
5801
5830
|
bitrate_mode?: "standard" | "high";
|
|
5802
5831
|
prompt: string;
|
|
5832
|
+
aspect_ratio?: "auto" | "21:9" | "16:9" | "4:3" | "1:1" | "3:4" | "9:16";
|
|
5803
5833
|
options?: {
|
|
5804
5834
|
safety_checks?: {
|
|
5805
5835
|
enabled?: boolean;
|
|
@@ -5821,24 +5851,24 @@ interface BytedanceSeedance20TextToVideoResponse {
|
|
|
5821
5851
|
}
|
|
5822
5852
|
interface Seedance2VideoOutput$5 {
|
|
5823
5853
|
video: {
|
|
5824
|
-
url: string;
|
|
5825
|
-
file_name?: string | unknown;
|
|
5826
5854
|
content_type?: string | unknown;
|
|
5855
|
+
url: string;
|
|
5827
5856
|
file_size?: number | unknown;
|
|
5857
|
+
file_name?: string | unknown;
|
|
5828
5858
|
};
|
|
5829
5859
|
seed: number;
|
|
5830
5860
|
}
|
|
5831
5861
|
|
|
5832
5862
|
interface Seedance2I2VInput {
|
|
5833
|
-
|
|
5834
|
-
prompt: string;
|
|
5835
|
-
end_image_url?: string | unknown;
|
|
5836
|
-
generate_audio?: boolean;
|
|
5863
|
+
duration?: "auto" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15";
|
|
5837
5864
|
bitrate_mode?: "standard" | "high";
|
|
5865
|
+
generate_audio?: boolean;
|
|
5838
5866
|
end_user_id?: string | unknown;
|
|
5839
|
-
|
|
5840
|
-
|
|
5867
|
+
aspect_ratio?: "auto" | "21:9" | "16:9" | "4:3" | "1:1" | "3:4" | "9:16";
|
|
5868
|
+
prompt: string;
|
|
5841
5869
|
image_url: string;
|
|
5870
|
+
resolution?: "480p" | "720p" | "1080p" | "4k";
|
|
5871
|
+
end_image_url?: string | unknown;
|
|
5842
5872
|
options?: {
|
|
5843
5873
|
safety_checks?: {
|
|
5844
5874
|
enabled?: boolean;
|
|
@@ -5860,22 +5890,22 @@ interface BytedanceSeedance20ImageToVideoResponse {
|
|
|
5860
5890
|
}
|
|
5861
5891
|
interface Seedance2VideoOutput$4 {
|
|
5862
5892
|
video: {
|
|
5863
|
-
url: string;
|
|
5864
|
-
file_name?: string | unknown;
|
|
5865
5893
|
content_type?: string | unknown;
|
|
5894
|
+
url: string;
|
|
5866
5895
|
file_size?: number | unknown;
|
|
5896
|
+
file_name?: string | unknown;
|
|
5867
5897
|
};
|
|
5868
5898
|
seed: number;
|
|
5869
5899
|
}
|
|
5870
5900
|
|
|
5871
5901
|
interface Seedance2T2VFastInput {
|
|
5872
|
-
aspect_ratio?: "auto" | "21:9" | "16:9" | "4:3" | "1:1" | "3:4" | "9:16";
|
|
5873
|
-
end_user_id?: string | unknown;
|
|
5874
5902
|
resolution?: "480p" | "720p";
|
|
5903
|
+
end_user_id?: string | unknown;
|
|
5875
5904
|
duration?: "auto" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15";
|
|
5876
5905
|
generate_audio?: boolean;
|
|
5877
5906
|
bitrate_mode?: "standard" | "high";
|
|
5878
5907
|
prompt: string;
|
|
5908
|
+
aspect_ratio?: "auto" | "21:9" | "16:9" | "4:3" | "1:1" | "3:4" | "9:16";
|
|
5879
5909
|
options?: {
|
|
5880
5910
|
safety_checks?: {
|
|
5881
5911
|
enabled?: boolean;
|
|
@@ -5897,24 +5927,24 @@ interface BytedanceSeedance20FastTextToVideoResponse {
|
|
|
5897
5927
|
}
|
|
5898
5928
|
interface Seedance2VideoOutput$3 {
|
|
5899
5929
|
video: {
|
|
5900
|
-
url: string;
|
|
5901
|
-
file_name?: string | unknown;
|
|
5902
5930
|
content_type?: string | unknown;
|
|
5931
|
+
url: string;
|
|
5903
5932
|
file_size?: number | unknown;
|
|
5933
|
+
file_name?: string | unknown;
|
|
5904
5934
|
};
|
|
5905
5935
|
seed: number;
|
|
5906
5936
|
}
|
|
5907
5937
|
|
|
5908
5938
|
interface Seedance2I2VFastInput {
|
|
5909
|
-
|
|
5910
|
-
prompt: string;
|
|
5911
|
-
end_image_url?: string | unknown;
|
|
5912
|
-
generate_audio?: boolean;
|
|
5939
|
+
duration?: "auto" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15";
|
|
5913
5940
|
bitrate_mode?: "standard" | "high";
|
|
5941
|
+
generate_audio?: boolean;
|
|
5914
5942
|
end_user_id?: string | unknown;
|
|
5915
|
-
|
|
5916
|
-
|
|
5943
|
+
aspect_ratio?: "auto" | "21:9" | "16:9" | "4:3" | "1:1" | "3:4" | "9:16";
|
|
5944
|
+
prompt: string;
|
|
5917
5945
|
image_url: string;
|
|
5946
|
+
resolution?: "480p" | "720p";
|
|
5947
|
+
end_image_url?: string | unknown;
|
|
5918
5948
|
options?: {
|
|
5919
5949
|
safety_checks?: {
|
|
5920
5950
|
enabled?: boolean;
|
|
@@ -5936,25 +5966,25 @@ interface BytedanceSeedance20FastImageToVideoResponse {
|
|
|
5936
5966
|
}
|
|
5937
5967
|
interface Seedance2VideoOutput$2 {
|
|
5938
5968
|
video: {
|
|
5939
|
-
url: string;
|
|
5940
|
-
file_name?: string | unknown;
|
|
5941
5969
|
content_type?: string | unknown;
|
|
5970
|
+
url: string;
|
|
5942
5971
|
file_size?: number | unknown;
|
|
5972
|
+
file_name?: string | unknown;
|
|
5943
5973
|
};
|
|
5944
5974
|
seed: number;
|
|
5945
5975
|
}
|
|
5946
5976
|
|
|
5947
5977
|
interface Seedance2R2VInput {
|
|
5948
|
-
|
|
5949
|
-
image_urls?: string[];
|
|
5950
|
-
video_urls?: string[];
|
|
5951
|
-
generate_audio?: boolean;
|
|
5978
|
+
duration?: "auto" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15";
|
|
5952
5979
|
bitrate_mode?: "standard" | "high";
|
|
5953
|
-
|
|
5980
|
+
generate_audio?: boolean;
|
|
5954
5981
|
end_user_id?: string | unknown;
|
|
5955
|
-
|
|
5956
|
-
duration?: "auto" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15";
|
|
5982
|
+
video_urls?: string[];
|
|
5957
5983
|
aspect_ratio?: "auto" | "21:9" | "16:9" | "4:3" | "1:1" | "3:4" | "9:16";
|
|
5984
|
+
audio_urls?: string[];
|
|
5985
|
+
prompt: string;
|
|
5986
|
+
image_urls?: string[];
|
|
5987
|
+
resolution?: "480p" | "720p" | "1080p" | "4k";
|
|
5958
5988
|
options?: {
|
|
5959
5989
|
safety_checks?: {
|
|
5960
5990
|
enabled?: boolean;
|
|
@@ -5976,25 +6006,25 @@ interface BytedanceSeedance20ReferenceToVideoResponse {
|
|
|
5976
6006
|
}
|
|
5977
6007
|
interface Seedance2VideoOutput$1 {
|
|
5978
6008
|
video: {
|
|
5979
|
-
url: string;
|
|
5980
|
-
file_name?: string | unknown;
|
|
5981
6009
|
content_type?: string | unknown;
|
|
6010
|
+
url: string;
|
|
5982
6011
|
file_size?: number | unknown;
|
|
6012
|
+
file_name?: string | unknown;
|
|
5983
6013
|
};
|
|
5984
6014
|
seed: number;
|
|
5985
6015
|
}
|
|
5986
6016
|
|
|
5987
6017
|
interface Seedance2R2VFastInput {
|
|
5988
|
-
|
|
5989
|
-
image_urls?: string[];
|
|
5990
|
-
video_urls?: string[];
|
|
5991
|
-
generate_audio?: boolean;
|
|
6018
|
+
duration?: "auto" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15";
|
|
5992
6019
|
bitrate_mode?: "standard" | "high";
|
|
5993
|
-
|
|
6020
|
+
generate_audio?: boolean;
|
|
5994
6021
|
end_user_id?: string | unknown;
|
|
5995
|
-
|
|
5996
|
-
duration?: "auto" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15";
|
|
6022
|
+
video_urls?: string[];
|
|
5997
6023
|
aspect_ratio?: "auto" | "21:9" | "16:9" | "4:3" | "1:1" | "3:4" | "9:16";
|
|
6024
|
+
audio_urls?: string[];
|
|
6025
|
+
prompt: string;
|
|
6026
|
+
image_urls?: string[];
|
|
6027
|
+
resolution?: "480p" | "720p";
|
|
5998
6028
|
options?: {
|
|
5999
6029
|
safety_checks?: {
|
|
6000
6030
|
enabled?: boolean;
|
|
@@ -6016,10 +6046,10 @@ interface BytedanceSeedance20FastReferenceToVideoResponse {
|
|
|
6016
6046
|
}
|
|
6017
6047
|
interface Seedance2VideoOutput {
|
|
6018
6048
|
video: {
|
|
6019
|
-
url: string;
|
|
6020
|
-
file_name?: string | unknown;
|
|
6021
6049
|
content_type?: string | unknown;
|
|
6050
|
+
url: string;
|
|
6022
6051
|
file_size?: number | unknown;
|
|
6052
|
+
file_name?: string | unknown;
|
|
6023
6053
|
};
|
|
6024
6054
|
seed: number;
|
|
6025
6055
|
}
|
|
@@ -6412,9 +6442,9 @@ interface DriveFolderOptions$1r {
|
|
|
6412
6442
|
interface QwenImageEditResponse {
|
|
6413
6443
|
id: string;
|
|
6414
6444
|
status: "ACCEPTED" | "IN_PROGRESS" | "COMPLETED" | "FAILED";
|
|
6415
|
-
result: QwenImageEditResultData$
|
|
6445
|
+
result: QwenImageEditResultData$2;
|
|
6416
6446
|
}
|
|
6417
|
-
interface QwenImageEditResultData$
|
|
6447
|
+
interface QwenImageEditResultData$2 {
|
|
6418
6448
|
url: string;
|
|
6419
6449
|
mimeType?: string;
|
|
6420
6450
|
driveFile?: Record<string, unknown>;
|
|
@@ -6885,9 +6915,9 @@ interface DriveFolderOptions$1h {
|
|
|
6885
6915
|
interface QwenMakeupResponse {
|
|
6886
6916
|
id: string;
|
|
6887
6917
|
status: "ACCEPTED" | "IN_PROGRESS" | "COMPLETED" | "FAILED";
|
|
6888
|
-
result: QwenImageEditResultData$
|
|
6918
|
+
result: QwenImageEditResultData$1;
|
|
6889
6919
|
}
|
|
6890
|
-
interface QwenImageEditResultData$
|
|
6920
|
+
interface QwenImageEditResultData$1 {
|
|
6891
6921
|
url: string;
|
|
6892
6922
|
mimeType?: string;
|
|
6893
6923
|
driveFile?: Record<string, unknown>;
|
|
@@ -6948,7 +6978,7 @@ interface PartInlineData {
|
|
|
6948
6978
|
mimeType: string;
|
|
6949
6979
|
data: string;
|
|
6950
6980
|
}
|
|
6951
|
-
type AspectRatio = "1:1" | "2:3" | "3:2" | "3:4" | "4:3" | "4:5" | "5:4" | "9:16" | "16:9" | "21:9" | "1:4" | "4:1" | "1:8" | "8:1";
|
|
6981
|
+
type AspectRatio = "auto" | "1:1" | "2:3" | "3:2" | "3:4" | "4:3" | "4:5" | "5:4" | "9:16" | "16:9" | "21:9" | "1:4" | "4:1" | "1:8" | "8:1";
|
|
6952
6982
|
type ImageResolution = "0.5K" | "1K" | "2K" | "4K";
|
|
6953
6983
|
type GeminiImageModel = "gemini-2.5-flash-image" | "gemini-3-pro-image" | "gemini-3-pro-image-preview" | "gemini-3.1-flash-image" | "gemini-3.1-flash-lite-image" | "gemini-3.1-flash-image-preview";
|
|
6954
6984
|
interface GenAIOptions$1f {
|
|
@@ -7077,7 +7107,7 @@ interface AiExpandCommand {
|
|
|
7077
7107
|
negative_prompt?: string;
|
|
7078
7108
|
upscale_num_timesteps?: number;
|
|
7079
7109
|
upscale_noise_level?: number;
|
|
7080
|
-
model?: "
|
|
7110
|
+
model?: "model-simpleaiexpander-v1" | "model-simpleaiexpander-v2" | "model-simpleaiexpander-v2-1" | "model-simpleaiexpander-v2-2";
|
|
7081
7111
|
options?: GenAIOptions$1c;
|
|
7082
7112
|
}
|
|
7083
7113
|
interface GenAIOptions$1c {
|
|
@@ -7425,7 +7455,7 @@ interface KlingVideoResult {
|
|
|
7425
7455
|
|
|
7426
7456
|
interface SanaSprintCommand {
|
|
7427
7457
|
prompt: string;
|
|
7428
|
-
model: "picsart-sana-sprint-v1"
|
|
7458
|
+
model: "picsart-sana-sprint-v1";
|
|
7429
7459
|
num_inference_steps?: number;
|
|
7430
7460
|
guidance_scale?: number;
|
|
7431
7461
|
width?: number;
|
|
@@ -8431,53 +8461,6 @@ interface Happyhorse11ReferenceToVideoResult {
|
|
|
8431
8461
|
driveFile?: Record<string, unknown>;
|
|
8432
8462
|
}
|
|
8433
8463
|
|
|
8434
|
-
interface QwenImageEditAngleCommand {
|
|
8435
|
-
image: string | string[];
|
|
8436
|
-
prompt?: string;
|
|
8437
|
-
system_prompt?: string;
|
|
8438
|
-
negative_prompt?: string;
|
|
8439
|
-
strength?: number;
|
|
8440
|
-
grag_scale?: number;
|
|
8441
|
-
drop_cond_tokens_prob?: number;
|
|
8442
|
-
seed?: number;
|
|
8443
|
-
output_format?: "JPEG" | "PNG" | "HEIC" | "WEBP";
|
|
8444
|
-
options?: GenAIOptions$J;
|
|
8445
|
-
model?: "preview-model-qwent-image-edit-angle" | "model-qwent-image-edit-angle";
|
|
8446
|
-
lora_params?: QwenAngleLoraParams;
|
|
8447
|
-
num_inference_steps?: number;
|
|
8448
|
-
guidance_scale?: number;
|
|
8449
|
-
}
|
|
8450
|
-
interface GenAIOptions$J {
|
|
8451
|
-
safety_checks?: SafetyChecksOptions$J;
|
|
8452
|
-
drive?: DriveOptions$J;
|
|
8453
|
-
}
|
|
8454
|
-
interface SafetyChecksOptions$J {
|
|
8455
|
-
enabled?: boolean;
|
|
8456
|
-
}
|
|
8457
|
-
interface DriveOptions$J {
|
|
8458
|
-
name: string;
|
|
8459
|
-
attributes?: Record<string, unknown>;
|
|
8460
|
-
folder?: DriveFolderOptions$J;
|
|
8461
|
-
}
|
|
8462
|
-
interface DriveFolderOptions$J {
|
|
8463
|
-
path?: string;
|
|
8464
|
-
id?: string;
|
|
8465
|
-
}
|
|
8466
|
-
interface QwenAngleLoraParams {
|
|
8467
|
-
lora_weights?: Record<string, unknown>;
|
|
8468
|
-
keep_other_weights?: boolean;
|
|
8469
|
-
}
|
|
8470
|
-
interface QwenImageEditAngleResponse {
|
|
8471
|
-
id: string;
|
|
8472
|
-
status: "ACCEPTED" | "IN_PROGRESS" | "COMPLETED" | "FAILED";
|
|
8473
|
-
result: QwenImageEditResultData$1;
|
|
8474
|
-
}
|
|
8475
|
-
interface QwenImageEditResultData$1 {
|
|
8476
|
-
url: string;
|
|
8477
|
-
mimeType?: string;
|
|
8478
|
-
driveFile?: Record<string, unknown>;
|
|
8479
|
-
}
|
|
8480
|
-
|
|
8481
8464
|
interface LamaInpaintingCommand {
|
|
8482
8465
|
image: string;
|
|
8483
8466
|
mask: string;
|
|
@@ -8559,21 +8542,21 @@ interface MusicGenerationCommand {
|
|
|
8559
8542
|
model_id?: "music_v1" | "music_v2";
|
|
8560
8543
|
force_instrumental?: boolean;
|
|
8561
8544
|
output_format?: "mp3_22050_32" | "mp3_44100_32" | "mp3_44100_64" | "mp3_44100_96" | "mp3_44100_128" | "mp3_44100_192" | "mp3_48000_192" | "pcm_16000" | "pcm_22050" | "pcm_24000" | "pcm_44100" | "pcm_48000";
|
|
8562
|
-
options?: GenAIOptions$
|
|
8545
|
+
options?: GenAIOptions$J;
|
|
8563
8546
|
}
|
|
8564
|
-
interface GenAIOptions$
|
|
8565
|
-
safety_checks?: SafetyChecksOptions$
|
|
8566
|
-
drive?: DriveOptions$
|
|
8547
|
+
interface GenAIOptions$J {
|
|
8548
|
+
safety_checks?: SafetyChecksOptions$J;
|
|
8549
|
+
drive?: DriveOptions$J;
|
|
8567
8550
|
}
|
|
8568
|
-
interface SafetyChecksOptions$
|
|
8551
|
+
interface SafetyChecksOptions$J {
|
|
8569
8552
|
enabled?: boolean;
|
|
8570
8553
|
}
|
|
8571
|
-
interface DriveOptions$
|
|
8554
|
+
interface DriveOptions$J {
|
|
8572
8555
|
name: string;
|
|
8573
8556
|
attributes?: Record<string, unknown>;
|
|
8574
|
-
folder?: DriveFolderOptions$
|
|
8557
|
+
folder?: DriveFolderOptions$J;
|
|
8575
8558
|
}
|
|
8576
|
-
interface DriveFolderOptions$
|
|
8559
|
+
interface DriveFolderOptions$J {
|
|
8577
8560
|
path?: string;
|
|
8578
8561
|
id?: string;
|
|
8579
8562
|
}
|
|
@@ -8593,21 +8576,21 @@ interface EffectsCommand {
|
|
|
8593
8576
|
effect_name: string;
|
|
8594
8577
|
style_image_url?: string;
|
|
8595
8578
|
skip_upsample?: boolean;
|
|
8596
|
-
options?: GenAIOptions$
|
|
8579
|
+
options?: GenAIOptions$I;
|
|
8597
8580
|
}
|
|
8598
|
-
interface GenAIOptions$
|
|
8599
|
-
safety_checks?: SafetyChecksOptions$
|
|
8600
|
-
drive?: DriveOptions$
|
|
8581
|
+
interface GenAIOptions$I {
|
|
8582
|
+
safety_checks?: SafetyChecksOptions$I;
|
|
8583
|
+
drive?: DriveOptions$I;
|
|
8601
8584
|
}
|
|
8602
|
-
interface SafetyChecksOptions$
|
|
8585
|
+
interface SafetyChecksOptions$I {
|
|
8603
8586
|
enabled?: boolean;
|
|
8604
8587
|
}
|
|
8605
|
-
interface DriveOptions$
|
|
8588
|
+
interface DriveOptions$I {
|
|
8606
8589
|
name: string;
|
|
8607
8590
|
attributes?: Record<string, unknown>;
|
|
8608
|
-
folder?: DriveFolderOptions$
|
|
8591
|
+
folder?: DriveFolderOptions$I;
|
|
8609
8592
|
}
|
|
8610
|
-
interface DriveFolderOptions$
|
|
8593
|
+
interface DriveFolderOptions$I {
|
|
8611
8594
|
path?: string;
|
|
8612
8595
|
id?: string;
|
|
8613
8596
|
}
|
|
@@ -8638,21 +8621,21 @@ interface ImageCaptioningCommand {
|
|
|
8638
8621
|
model?: "preview-picsart-image-captioning-v1" | "picsart-image-captioning-v1";
|
|
8639
8622
|
caption_model?: "blip2" | "moondream";
|
|
8640
8623
|
prompt?: string;
|
|
8641
|
-
options?: GenAIOptions$
|
|
8624
|
+
options?: GenAIOptions$H;
|
|
8642
8625
|
}
|
|
8643
|
-
interface GenAIOptions$
|
|
8644
|
-
safety_checks?: SafetyChecksOptions$
|
|
8645
|
-
drive?: DriveOptions$
|
|
8626
|
+
interface GenAIOptions$H {
|
|
8627
|
+
safety_checks?: SafetyChecksOptions$H;
|
|
8628
|
+
drive?: DriveOptions$H;
|
|
8646
8629
|
}
|
|
8647
|
-
interface SafetyChecksOptions$
|
|
8630
|
+
interface SafetyChecksOptions$H {
|
|
8648
8631
|
enabled?: boolean;
|
|
8649
8632
|
}
|
|
8650
|
-
interface DriveOptions$
|
|
8633
|
+
interface DriveOptions$H {
|
|
8651
8634
|
name: string;
|
|
8652
8635
|
attributes?: Record<string, unknown>;
|
|
8653
|
-
folder?: DriveFolderOptions$
|
|
8636
|
+
folder?: DriveFolderOptions$H;
|
|
8654
8637
|
}
|
|
8655
|
-
interface DriveFolderOptions$
|
|
8638
|
+
interface DriveFolderOptions$H {
|
|
8656
8639
|
path?: string;
|
|
8657
8640
|
id?: string;
|
|
8658
8641
|
}
|
|
@@ -8672,21 +8655,21 @@ interface QwenHaircutsCommand {
|
|
|
8672
8655
|
system_prompt?: string;
|
|
8673
8656
|
negative_prompt?: string;
|
|
8674
8657
|
metadata?: Record<string, unknown>;
|
|
8675
|
-
options?: GenAIOptions$
|
|
8658
|
+
options?: GenAIOptions$G;
|
|
8676
8659
|
}
|
|
8677
|
-
interface GenAIOptions$
|
|
8678
|
-
safety_checks?: SafetyChecksOptions$
|
|
8679
|
-
drive?: DriveOptions$
|
|
8660
|
+
interface GenAIOptions$G {
|
|
8661
|
+
safety_checks?: SafetyChecksOptions$G;
|
|
8662
|
+
drive?: DriveOptions$G;
|
|
8680
8663
|
}
|
|
8681
|
-
interface SafetyChecksOptions$
|
|
8664
|
+
interface SafetyChecksOptions$G {
|
|
8682
8665
|
enabled?: boolean;
|
|
8683
8666
|
}
|
|
8684
|
-
interface DriveOptions$
|
|
8667
|
+
interface DriveOptions$G {
|
|
8685
8668
|
name: string;
|
|
8686
8669
|
attributes?: Record<string, unknown>;
|
|
8687
|
-
folder?: DriveFolderOptions$
|
|
8670
|
+
folder?: DriveFolderOptions$G;
|
|
8688
8671
|
}
|
|
8689
|
-
interface DriveFolderOptions$
|
|
8672
|
+
interface DriveFolderOptions$G {
|
|
8690
8673
|
path?: string;
|
|
8691
8674
|
id?: string;
|
|
8692
8675
|
}
|
|
@@ -8721,22 +8704,22 @@ interface AvatarGenerationCommand {
|
|
|
8721
8704
|
skin_fix?: boolean;
|
|
8722
8705
|
model: "dreamshaper-sfw" | "3d-cartoon" | "yamers-anime";
|
|
8723
8706
|
num_outputs?: number;
|
|
8724
|
-
options?: GenAIOptions$
|
|
8707
|
+
options?: GenAIOptions$F;
|
|
8725
8708
|
model_execution_mode?: string;
|
|
8726
8709
|
}
|
|
8727
|
-
interface GenAIOptions$
|
|
8728
|
-
safety_checks?: SafetyChecksOptions$
|
|
8729
|
-
drive?: DriveOptions$
|
|
8710
|
+
interface GenAIOptions$F {
|
|
8711
|
+
safety_checks?: SafetyChecksOptions$F;
|
|
8712
|
+
drive?: DriveOptions$F;
|
|
8730
8713
|
}
|
|
8731
|
-
interface SafetyChecksOptions$
|
|
8714
|
+
interface SafetyChecksOptions$F {
|
|
8732
8715
|
enabled?: boolean;
|
|
8733
8716
|
}
|
|
8734
|
-
interface DriveOptions$
|
|
8717
|
+
interface DriveOptions$F {
|
|
8735
8718
|
name: string;
|
|
8736
8719
|
attributes?: Record<string, unknown>;
|
|
8737
|
-
folder?: DriveFolderOptions$
|
|
8720
|
+
folder?: DriveFolderOptions$F;
|
|
8738
8721
|
}
|
|
8739
|
-
interface DriveFolderOptions$
|
|
8722
|
+
interface DriveFolderOptions$F {
|
|
8740
8723
|
path?: string;
|
|
8741
8724
|
id?: string;
|
|
8742
8725
|
}
|
|
@@ -8758,25 +8741,25 @@ interface QwenChatCommand {
|
|
|
8758
8741
|
top_p?: number;
|
|
8759
8742
|
seed?: number;
|
|
8760
8743
|
enable_thinking?: boolean;
|
|
8761
|
-
options?: GenAIOptions$
|
|
8744
|
+
options?: GenAIOptions$E;
|
|
8762
8745
|
}
|
|
8763
8746
|
interface QwenChatMessage {
|
|
8764
8747
|
role: "system" | "user" | "assistant";
|
|
8765
8748
|
content: string | unknown[];
|
|
8766
8749
|
}
|
|
8767
|
-
interface GenAIOptions$
|
|
8768
|
-
safety_checks?: SafetyChecksOptions$
|
|
8769
|
-
drive?: DriveOptions$
|
|
8750
|
+
interface GenAIOptions$E {
|
|
8751
|
+
safety_checks?: SafetyChecksOptions$E;
|
|
8752
|
+
drive?: DriveOptions$E;
|
|
8770
8753
|
}
|
|
8771
|
-
interface SafetyChecksOptions$
|
|
8754
|
+
interface SafetyChecksOptions$E {
|
|
8772
8755
|
enabled?: boolean;
|
|
8773
8756
|
}
|
|
8774
|
-
interface DriveOptions$
|
|
8757
|
+
interface DriveOptions$E {
|
|
8775
8758
|
name: string;
|
|
8776
8759
|
attributes?: Record<string, unknown>;
|
|
8777
|
-
folder?: DriveFolderOptions$
|
|
8760
|
+
folder?: DriveFolderOptions$E;
|
|
8778
8761
|
}
|
|
8779
|
-
interface DriveFolderOptions$
|
|
8762
|
+
interface DriveFolderOptions$E {
|
|
8780
8763
|
path?: string;
|
|
8781
8764
|
id?: string;
|
|
8782
8765
|
}
|
|
@@ -8817,23 +8800,23 @@ interface Flux3VideoCommand {
|
|
|
8817
8800
|
safetyTolerance?: number;
|
|
8818
8801
|
webhookUrl?: string;
|
|
8819
8802
|
draft?: boolean;
|
|
8820
|
-
options?: GenAIOptions$
|
|
8803
|
+
options?: GenAIOptions$D;
|
|
8821
8804
|
}
|
|
8822
8805
|
type Flux3VideoAspectRatio = "auto" | "21:9" | "2:1" | "16:9" | "4:3" | "1:1" | "3:4" | "9:16";
|
|
8823
8806
|
type Flux3VideoResolution = "hd" | "fhd";
|
|
8824
|
-
interface GenAIOptions$
|
|
8825
|
-
safety_checks?: SafetyChecksOptions$
|
|
8826
|
-
drive?: DriveOptions$
|
|
8807
|
+
interface GenAIOptions$D {
|
|
8808
|
+
safety_checks?: SafetyChecksOptions$D;
|
|
8809
|
+
drive?: DriveOptions$D;
|
|
8827
8810
|
}
|
|
8828
|
-
interface SafetyChecksOptions$
|
|
8811
|
+
interface SafetyChecksOptions$D {
|
|
8829
8812
|
enabled?: boolean;
|
|
8830
8813
|
}
|
|
8831
|
-
interface DriveOptions$
|
|
8814
|
+
interface DriveOptions$D {
|
|
8832
8815
|
name: string;
|
|
8833
8816
|
attributes?: Record<string, unknown>;
|
|
8834
|
-
folder?: DriveFolderOptions$
|
|
8817
|
+
folder?: DriveFolderOptions$D;
|
|
8835
8818
|
}
|
|
8836
|
-
interface DriveFolderOptions$
|
|
8819
|
+
interface DriveFolderOptions$D {
|
|
8837
8820
|
path?: string;
|
|
8838
8821
|
id?: string;
|
|
8839
8822
|
}
|
|
@@ -8856,21 +8839,21 @@ interface PapHaircutsCommand {
|
|
|
8856
8839
|
prompt?: string;
|
|
8857
8840
|
negative_prompt?: string;
|
|
8858
8841
|
metadata?: Record<string, unknown>;
|
|
8859
|
-
options?: GenAIOptions$
|
|
8842
|
+
options?: GenAIOptions$C;
|
|
8860
8843
|
}
|
|
8861
|
-
interface GenAIOptions$
|
|
8862
|
-
safety_checks?: SafetyChecksOptions$
|
|
8863
|
-
drive?: DriveOptions$
|
|
8844
|
+
interface GenAIOptions$C {
|
|
8845
|
+
safety_checks?: SafetyChecksOptions$C;
|
|
8846
|
+
drive?: DriveOptions$C;
|
|
8864
8847
|
}
|
|
8865
|
-
interface SafetyChecksOptions$
|
|
8848
|
+
interface SafetyChecksOptions$C {
|
|
8866
8849
|
enabled?: boolean;
|
|
8867
8850
|
}
|
|
8868
|
-
interface DriveOptions$
|
|
8851
|
+
interface DriveOptions$C {
|
|
8869
8852
|
name: string;
|
|
8870
8853
|
attributes?: Record<string, unknown>;
|
|
8871
|
-
folder?: DriveFolderOptions$
|
|
8854
|
+
folder?: DriveFolderOptions$C;
|
|
8872
8855
|
}
|
|
8873
|
-
interface DriveFolderOptions$
|
|
8856
|
+
interface DriveFolderOptions$C {
|
|
8874
8857
|
path?: string;
|
|
8875
8858
|
id?: string;
|
|
8876
8859
|
}
|
|
@@ -8893,7 +8876,7 @@ interface SeedAudioCommand {
|
|
|
8893
8876
|
references?: ReferenceResource[];
|
|
8894
8877
|
audio_config?: AudioConfig;
|
|
8895
8878
|
watermark?: Watermark;
|
|
8896
|
-
options?: GenAIOptions$
|
|
8879
|
+
options?: GenAIOptions$B;
|
|
8897
8880
|
}
|
|
8898
8881
|
interface ReferenceResource {
|
|
8899
8882
|
speaker?: string;
|
|
@@ -8921,20 +8904,20 @@ interface AigcMetadata {
|
|
|
8921
8904
|
content_propagator?: string;
|
|
8922
8905
|
propagate_id?: string;
|
|
8923
8906
|
}
|
|
8924
|
-
interface GenAIOptions$
|
|
8925
|
-
safety_checks?: SafetyChecksOptions$
|
|
8926
|
-
drive?: DriveOptions$
|
|
8907
|
+
interface GenAIOptions$B {
|
|
8908
|
+
safety_checks?: SafetyChecksOptions$B;
|
|
8909
|
+
drive?: DriveOptions$B;
|
|
8927
8910
|
inputs_transformation?: InputsTransformationOptions$3;
|
|
8928
8911
|
}
|
|
8929
|
-
interface SafetyChecksOptions$
|
|
8912
|
+
interface SafetyChecksOptions$B {
|
|
8930
8913
|
enabled?: boolean;
|
|
8931
8914
|
}
|
|
8932
|
-
interface DriveOptions$
|
|
8915
|
+
interface DriveOptions$B {
|
|
8933
8916
|
name: string;
|
|
8934
8917
|
attributes?: Record<string, unknown>;
|
|
8935
|
-
folder?: DriveFolderOptions$
|
|
8918
|
+
folder?: DriveFolderOptions$B;
|
|
8936
8919
|
}
|
|
8937
|
-
interface DriveFolderOptions$
|
|
8920
|
+
interface DriveFolderOptions$B {
|
|
8938
8921
|
path?: string;
|
|
8939
8922
|
id?: string;
|
|
8940
8923
|
}
|
|
@@ -8956,25 +8939,25 @@ interface IdeogramPImageGenerateCommand {
|
|
|
8956
8939
|
resolution?: "2048x2048" | "1440x2880" | "2880x1440" | "1664x2496" | "2496x1664" | "1792x2240" | "2240x1792" | "1440x2560" | "2560x1440" | "1600x2560" | "2560x1600" | "1728x2304" | "2304x1728" | "1296x3168" | "3168x1296" | "1152x2944" | "2944x1152" | "1248x3328" | "3328x1248" | "1280x3072" | "3072x1280" | "1024x3072" | "3072x1024" | "1024x1024" | "896x1120" | "1120x896" | "864x1152" | "1152x864" | "832x1248" | "1248x832" | "800x1280" | "1280x800" | "720x1280" | "1280x720" | "720x1440" | "1440x720";
|
|
8957
8940
|
rendering_speed?: IdeogramPImageRenderingSpeed;
|
|
8958
8941
|
storage?: StorageParam;
|
|
8959
|
-
options?: GenAIOptions$
|
|
8942
|
+
options?: GenAIOptions$A;
|
|
8960
8943
|
}
|
|
8961
8944
|
type IdeogramPImageRenderingSpeed = "very-low" | "low" | "medium" | "high";
|
|
8962
8945
|
interface StorageParam {
|
|
8963
8946
|
destination: string;
|
|
8964
8947
|
}
|
|
8965
|
-
interface GenAIOptions$
|
|
8966
|
-
safety_checks?: SafetyChecksOptions$
|
|
8967
|
-
drive?: DriveOptions$
|
|
8948
|
+
interface GenAIOptions$A {
|
|
8949
|
+
safety_checks?: SafetyChecksOptions$A;
|
|
8950
|
+
drive?: DriveOptions$A;
|
|
8968
8951
|
}
|
|
8969
|
-
interface SafetyChecksOptions$
|
|
8952
|
+
interface SafetyChecksOptions$A {
|
|
8970
8953
|
enabled?: boolean;
|
|
8971
8954
|
}
|
|
8972
|
-
interface DriveOptions$
|
|
8955
|
+
interface DriveOptions$A {
|
|
8973
8956
|
name: string;
|
|
8974
8957
|
attributes?: Record<string, unknown>;
|
|
8975
|
-
folder?: DriveFolderOptions$
|
|
8958
|
+
folder?: DriveFolderOptions$A;
|
|
8976
8959
|
}
|
|
8977
|
-
interface DriveFolderOptions$
|
|
8960
|
+
interface DriveFolderOptions$A {
|
|
8978
8961
|
path?: string;
|
|
8979
8962
|
id?: string;
|
|
8980
8963
|
}
|
|
@@ -9002,21 +8985,21 @@ interface HidreamT2ICommand {
|
|
|
9002
8985
|
aspectRatio?: string;
|
|
9003
8986
|
seed?: number;
|
|
9004
8987
|
model?: "picsart-hidream-t2i" | "preview-picsart-hidream-t2i";
|
|
9005
|
-
options?: GenAIOptions$
|
|
8988
|
+
options?: GenAIOptions$z;
|
|
9006
8989
|
}
|
|
9007
|
-
interface GenAIOptions$
|
|
9008
|
-
safety_checks?: SafetyChecksOptions$
|
|
9009
|
-
drive?: DriveOptions$
|
|
8990
|
+
interface GenAIOptions$z {
|
|
8991
|
+
safety_checks?: SafetyChecksOptions$z;
|
|
8992
|
+
drive?: DriveOptions$z;
|
|
9010
8993
|
}
|
|
9011
|
-
interface SafetyChecksOptions$
|
|
8994
|
+
interface SafetyChecksOptions$z {
|
|
9012
8995
|
enabled?: boolean;
|
|
9013
8996
|
}
|
|
9014
|
-
interface DriveOptions$
|
|
8997
|
+
interface DriveOptions$z {
|
|
9015
8998
|
name: string;
|
|
9016
8999
|
attributes?: Record<string, unknown>;
|
|
9017
|
-
folder?: DriveFolderOptions$
|
|
9000
|
+
folder?: DriveFolderOptions$z;
|
|
9018
9001
|
}
|
|
9019
|
-
interface DriveFolderOptions$
|
|
9002
|
+
interface DriveFolderOptions$z {
|
|
9020
9003
|
path?: string;
|
|
9021
9004
|
id?: string;
|
|
9022
9005
|
}
|
|
@@ -9039,26 +9022,26 @@ interface EnhanceVideoCommand {
|
|
|
9039
9022
|
resolution_limit?: number;
|
|
9040
9023
|
bitrate_level?: BitrateLevel;
|
|
9041
9024
|
fps?: number;
|
|
9042
|
-
options?: GenAIOptions$
|
|
9025
|
+
options?: GenAIOptions$y;
|
|
9043
9026
|
}
|
|
9044
9027
|
type ToolVersion = "standard" | "professional";
|
|
9045
9028
|
type Scene = "common" | "ugc" | "short_series" | "aigc" | "old_film";
|
|
9046
9029
|
type EnhanceResolution = "720p" | "1080p" | "2k" | "4k" | "8k";
|
|
9047
9030
|
type BitrateLevel = "low" | "medium" | "high";
|
|
9048
|
-
interface GenAIOptions$
|
|
9049
|
-
safety_checks?: SafetyChecksOptions$
|
|
9050
|
-
drive?: DriveOptions$
|
|
9031
|
+
interface GenAIOptions$y {
|
|
9032
|
+
safety_checks?: SafetyChecksOptions$y;
|
|
9033
|
+
drive?: DriveOptions$y;
|
|
9051
9034
|
inputs_transformation?: InputsTransformationOptions$2;
|
|
9052
9035
|
}
|
|
9053
|
-
interface SafetyChecksOptions$
|
|
9036
|
+
interface SafetyChecksOptions$y {
|
|
9054
9037
|
enabled?: boolean;
|
|
9055
9038
|
}
|
|
9056
|
-
interface DriveOptions$
|
|
9039
|
+
interface DriveOptions$y {
|
|
9057
9040
|
name: string;
|
|
9058
9041
|
attributes?: Record<string, unknown>;
|
|
9059
|
-
folder?: DriveFolderOptions$
|
|
9042
|
+
folder?: DriveFolderOptions$y;
|
|
9060
9043
|
}
|
|
9061
|
-
interface DriveFolderOptions$
|
|
9044
|
+
interface DriveFolderOptions$y {
|
|
9062
9045
|
path?: string;
|
|
9063
9046
|
id?: string;
|
|
9064
9047
|
}
|
|
@@ -9081,12 +9064,12 @@ interface GeneratedEnhancedVideoResult {
|
|
|
9081
9064
|
interface MinimaxVideoGenerationCommand {
|
|
9082
9065
|
model?: "MiniMax-H3";
|
|
9083
9066
|
content: MinimaxContentItem[];
|
|
9084
|
-
resolution?:
|
|
9067
|
+
resolution?: "768P" | "2K" | "768p" | "2k";
|
|
9085
9068
|
duration: number;
|
|
9086
9069
|
ratio?: "adaptive" | "21:9" | "16:9" | "4:3" | "1:1" | "3:4" | "9:16";
|
|
9087
9070
|
aigc_watermark?: boolean;
|
|
9088
9071
|
callback_url?: string;
|
|
9089
|
-
options?: GenAIOptions$
|
|
9072
|
+
options?: GenAIOptions$x;
|
|
9090
9073
|
}
|
|
9091
9074
|
interface MinimaxContentItem {
|
|
9092
9075
|
type: "text" | "image_url" | "video_url" | "audio_url";
|
|
@@ -9099,19 +9082,19 @@ interface MinimaxContentItem {
|
|
|
9099
9082
|
interface MinimaxMediaUrl {
|
|
9100
9083
|
url: string;
|
|
9101
9084
|
}
|
|
9102
|
-
interface GenAIOptions$
|
|
9103
|
-
safety_checks?: SafetyChecksOptions$
|
|
9104
|
-
drive?: DriveOptions$
|
|
9085
|
+
interface GenAIOptions$x {
|
|
9086
|
+
safety_checks?: SafetyChecksOptions$x;
|
|
9087
|
+
drive?: DriveOptions$x;
|
|
9105
9088
|
}
|
|
9106
|
-
interface SafetyChecksOptions$
|
|
9089
|
+
interface SafetyChecksOptions$x {
|
|
9107
9090
|
enabled?: boolean;
|
|
9108
9091
|
}
|
|
9109
|
-
interface DriveOptions$
|
|
9092
|
+
interface DriveOptions$x {
|
|
9110
9093
|
name: string;
|
|
9111
9094
|
attributes?: Record<string, unknown>;
|
|
9112
|
-
folder?: DriveFolderOptions$
|
|
9095
|
+
folder?: DriveFolderOptions$x;
|
|
9113
9096
|
}
|
|
9114
|
-
interface DriveFolderOptions$
|
|
9097
|
+
interface DriveFolderOptions$x {
|
|
9115
9098
|
path?: string;
|
|
9116
9099
|
id?: string;
|
|
9117
9100
|
}
|
|
@@ -9185,21 +9168,21 @@ interface ImageSegmentationCommand {
|
|
|
9185
9168
|
image_url: string;
|
|
9186
9169
|
model: "picsart-multimatting-v13" | "picsart-sky-v1" | "preview-picsart-multimatting-v13" | "preview-picsart-sky-v1";
|
|
9187
9170
|
segmentation_class?: "all" | "background" | "hair" | "skin" | "lips" | "eyes" | "clothes" | "glasses" | "teeth" | "foreground";
|
|
9188
|
-
options?: GenAIOptions$
|
|
9171
|
+
options?: GenAIOptions$w;
|
|
9189
9172
|
}
|
|
9190
|
-
interface GenAIOptions$
|
|
9191
|
-
safety_checks?: SafetyChecksOptions$
|
|
9192
|
-
drive?: DriveOptions$
|
|
9173
|
+
interface GenAIOptions$w {
|
|
9174
|
+
safety_checks?: SafetyChecksOptions$w;
|
|
9175
|
+
drive?: DriveOptions$w;
|
|
9193
9176
|
}
|
|
9194
|
-
interface SafetyChecksOptions$
|
|
9177
|
+
interface SafetyChecksOptions$w {
|
|
9195
9178
|
enabled?: boolean;
|
|
9196
9179
|
}
|
|
9197
|
-
interface DriveOptions$
|
|
9180
|
+
interface DriveOptions$w {
|
|
9198
9181
|
name: string;
|
|
9199
9182
|
attributes?: Record<string, unknown>;
|
|
9200
|
-
folder?: DriveFolderOptions$
|
|
9183
|
+
folder?: DriveFolderOptions$w;
|
|
9201
9184
|
}
|
|
9202
|
-
interface DriveFolderOptions$
|
|
9185
|
+
interface DriveFolderOptions$w {
|
|
9203
9186
|
path?: string;
|
|
9204
9187
|
id?: string;
|
|
9205
9188
|
}
|
|
@@ -9223,25 +9206,25 @@ interface WanV3VideoCommand {
|
|
|
9223
9206
|
enable_thinking?: boolean;
|
|
9224
9207
|
watermark?: boolean;
|
|
9225
9208
|
seed?: number;
|
|
9226
|
-
options?: GenAIOptions$
|
|
9209
|
+
options?: GenAIOptions$v;
|
|
9227
9210
|
}
|
|
9228
9211
|
interface WanV3MediaItem {
|
|
9229
9212
|
type: "reference_image" | "reference_video" | "reference_audio" | "first_frame" | "last_frame" | "file" | "link";
|
|
9230
9213
|
url: string;
|
|
9231
9214
|
}
|
|
9232
|
-
interface GenAIOptions$
|
|
9233
|
-
safety_checks?: SafetyChecksOptions$
|
|
9234
|
-
drive?: DriveOptions$
|
|
9215
|
+
interface GenAIOptions$v {
|
|
9216
|
+
safety_checks?: SafetyChecksOptions$v;
|
|
9217
|
+
drive?: DriveOptions$v;
|
|
9235
9218
|
}
|
|
9236
|
-
interface SafetyChecksOptions$
|
|
9219
|
+
interface SafetyChecksOptions$v {
|
|
9237
9220
|
enabled?: boolean;
|
|
9238
9221
|
}
|
|
9239
|
-
interface DriveOptions$
|
|
9222
|
+
interface DriveOptions$v {
|
|
9240
9223
|
name: string;
|
|
9241
9224
|
attributes?: Record<string, unknown>;
|
|
9242
|
-
folder?: DriveFolderOptions$
|
|
9225
|
+
folder?: DriveFolderOptions$v;
|
|
9243
9226
|
}
|
|
9244
|
-
interface DriveFolderOptions$
|
|
9227
|
+
interface DriveFolderOptions$v {
|
|
9245
9228
|
path?: string;
|
|
9246
9229
|
id?: string;
|
|
9247
9230
|
}
|
|
@@ -9462,21 +9445,21 @@ interface PhotoAdjustCommand {
|
|
|
9462
9445
|
output_format?: string;
|
|
9463
9446
|
model?: string;
|
|
9464
9447
|
metadata?: Record<string, unknown>;
|
|
9465
|
-
options?: GenAIOptions$
|
|
9448
|
+
options?: GenAIOptions$u;
|
|
9466
9449
|
}
|
|
9467
|
-
interface GenAIOptions$
|
|
9468
|
-
safety_checks?: SafetyChecksOptions$
|
|
9469
|
-
drive?: DriveOptions$
|
|
9450
|
+
interface GenAIOptions$u {
|
|
9451
|
+
safety_checks?: SafetyChecksOptions$u;
|
|
9452
|
+
drive?: DriveOptions$u;
|
|
9470
9453
|
}
|
|
9471
|
-
interface SafetyChecksOptions$
|
|
9454
|
+
interface SafetyChecksOptions$u {
|
|
9472
9455
|
enabled?: boolean;
|
|
9473
9456
|
}
|
|
9474
|
-
interface DriveOptions$
|
|
9457
|
+
interface DriveOptions$u {
|
|
9475
9458
|
name: string;
|
|
9476
9459
|
attributes?: Record<string, unknown>;
|
|
9477
|
-
folder?: DriveFolderOptions$
|
|
9460
|
+
folder?: DriveFolderOptions$u;
|
|
9478
9461
|
}
|
|
9479
|
-
interface DriveFolderOptions$
|
|
9462
|
+
interface DriveFolderOptions$u {
|
|
9480
9463
|
path?: string;
|
|
9481
9464
|
id?: string;
|
|
9482
9465
|
}
|
|
@@ -9523,6 +9506,7 @@ interface KlingTemplateMeta {
|
|
|
9523
9506
|
|
|
9524
9507
|
interface ChargeCommand {
|
|
9525
9508
|
requests: ChargeRequestModel[];
|
|
9509
|
+
trackCost?: boolean;
|
|
9526
9510
|
}
|
|
9527
9511
|
interface ChargeRequestModel {
|
|
9528
9512
|
toolId?: string;
|
|
@@ -9532,7 +9516,7 @@ interface ChargeRequestModel {
|
|
|
9532
9516
|
}
|
|
9533
9517
|
interface ModelInfoModel {
|
|
9534
9518
|
modelId: string;
|
|
9535
|
-
useCase: "text-to-image" | "image-to-image" | "text-to-video" | "image-to-video" | "video-to-video" | "video-to-image" | "text-to-speech" | "text-to-audio" | "speech-to-text" | "image-to-audio" | "audio-to-audio" | "speech-to-speech" | "chat-completions" | "audio-to-video" | "video-to-audio";
|
|
9519
|
+
useCase: "text-to-image" | "image-to-image" | "text-to-video" | "image-to-video" | "video-to-video" | "video-to-image" | "text-to-speech" | "text-to-audio" | "speech-to-text" | "image-to-audio" | "audio-to-audio" | "speech-to-speech" | "chat-completions" | "audio-to-video" | "video-to-audio" | "request";
|
|
9536
9520
|
quality?: string;
|
|
9537
9521
|
audio?: boolean;
|
|
9538
9522
|
}
|
|
@@ -9543,7 +9527,7 @@ interface ChargeResponse {
|
|
|
9543
9527
|
}
|
|
9544
9528
|
interface ChargeResultModel {
|
|
9545
9529
|
toolId: string;
|
|
9546
|
-
unit: "generation" | "megapixel" | "second" | "30_second" | "minute" | "1k_characters" | "input_tokens" | "input_text_tokens" | "input_cached_tokens" | "cache_write_5m_tokens" | "cache_write_1h_tokens" | "input_image_tokens" | "output_image_tokens" | "output_audio_tokens" | "output_text_tokens" | "input_megapixel" | "output_megapixel" | "output_megapixel_additional" | "1k_output_video_tokens";
|
|
9530
|
+
unit: "generation" | "megapixel" | "second" | "30_second" | "minute" | "1k_characters" | "input_tokens" | "input_text_tokens" | "input_cached_tokens" | "cache_write_5m_tokens" | "cache_write_1h_tokens" | "input_image_tokens" | "output_tokens" | "output_image_tokens" | "output_audio_tokens" | "output_text_tokens" | "input_megapixel" | "output_megapixel" | "output_megapixel_additional" | "1k_output_video_tokens";
|
|
9547
9531
|
amount: number;
|
|
9548
9532
|
operationId?: string;
|
|
9549
9533
|
rawCredits: number;
|
|
@@ -9557,21 +9541,21 @@ interface Hailuo02ProTextToVideoCommand {
|
|
|
9557
9541
|
prompt: string;
|
|
9558
9542
|
prompt_optimizer?: boolean;
|
|
9559
9543
|
callback_url?: string;
|
|
9560
|
-
options?: GenAIOptions$
|
|
9544
|
+
options?: GenAIOptions$t;
|
|
9561
9545
|
}
|
|
9562
|
-
interface GenAIOptions$
|
|
9563
|
-
safety_checks?: SafetyChecksOptions$
|
|
9564
|
-
drive?: DriveOptions$
|
|
9546
|
+
interface GenAIOptions$t {
|
|
9547
|
+
safety_checks?: SafetyChecksOptions$t;
|
|
9548
|
+
drive?: DriveOptions$t;
|
|
9565
9549
|
}
|
|
9566
|
-
interface SafetyChecksOptions$
|
|
9550
|
+
interface SafetyChecksOptions$t {
|
|
9567
9551
|
enabled?: boolean;
|
|
9568
9552
|
}
|
|
9569
|
-
interface DriveOptions$
|
|
9553
|
+
interface DriveOptions$t {
|
|
9570
9554
|
name: string;
|
|
9571
9555
|
attributes?: Record<string, unknown>;
|
|
9572
|
-
folder?: DriveFolderOptions$
|
|
9556
|
+
folder?: DriveFolderOptions$t;
|
|
9573
9557
|
}
|
|
9574
|
-
interface DriveFolderOptions$
|
|
9558
|
+
interface DriveFolderOptions$t {
|
|
9575
9559
|
path?: string;
|
|
9576
9560
|
id?: string;
|
|
9577
9561
|
}
|
|
@@ -9592,23 +9576,23 @@ interface Hailuo02ProImageToVideoCommand {
|
|
|
9592
9576
|
prompt: string;
|
|
9593
9577
|
prompt_optimizer?: boolean;
|
|
9594
9578
|
callback_url?: string;
|
|
9595
|
-
options?: GenAIOptions$
|
|
9579
|
+
options?: GenAIOptions$s;
|
|
9596
9580
|
image_url: string;
|
|
9597
9581
|
end_image_url?: string;
|
|
9598
9582
|
}
|
|
9599
|
-
interface GenAIOptions$
|
|
9600
|
-
safety_checks?: SafetyChecksOptions$
|
|
9601
|
-
drive?: DriveOptions$
|
|
9583
|
+
interface GenAIOptions$s {
|
|
9584
|
+
safety_checks?: SafetyChecksOptions$s;
|
|
9585
|
+
drive?: DriveOptions$s;
|
|
9602
9586
|
}
|
|
9603
|
-
interface SafetyChecksOptions$
|
|
9587
|
+
interface SafetyChecksOptions$s {
|
|
9604
9588
|
enabled?: boolean;
|
|
9605
9589
|
}
|
|
9606
|
-
interface DriveOptions$
|
|
9590
|
+
interface DriveOptions$s {
|
|
9607
9591
|
name: string;
|
|
9608
9592
|
attributes?: Record<string, unknown>;
|
|
9609
|
-
folder?: DriveFolderOptions$
|
|
9593
|
+
folder?: DriveFolderOptions$s;
|
|
9610
9594
|
}
|
|
9611
|
-
interface DriveFolderOptions$
|
|
9595
|
+
interface DriveFolderOptions$s {
|
|
9612
9596
|
path?: string;
|
|
9613
9597
|
id?: string;
|
|
9614
9598
|
}
|
|
@@ -9629,22 +9613,22 @@ interface Hailuo23StandardTextToVideoCommand {
|
|
|
9629
9613
|
prompt: string;
|
|
9630
9614
|
prompt_optimizer?: boolean;
|
|
9631
9615
|
callback_url?: string;
|
|
9632
|
-
options?: GenAIOptions$
|
|
9616
|
+
options?: GenAIOptions$r;
|
|
9633
9617
|
duration?: 6 | 10;
|
|
9634
9618
|
}
|
|
9635
|
-
interface GenAIOptions$
|
|
9636
|
-
safety_checks?: SafetyChecksOptions$
|
|
9637
|
-
drive?: DriveOptions$
|
|
9619
|
+
interface GenAIOptions$r {
|
|
9620
|
+
safety_checks?: SafetyChecksOptions$r;
|
|
9621
|
+
drive?: DriveOptions$r;
|
|
9638
9622
|
}
|
|
9639
|
-
interface SafetyChecksOptions$
|
|
9623
|
+
interface SafetyChecksOptions$r {
|
|
9640
9624
|
enabled?: boolean;
|
|
9641
9625
|
}
|
|
9642
|
-
interface DriveOptions$
|
|
9626
|
+
interface DriveOptions$r {
|
|
9643
9627
|
name: string;
|
|
9644
9628
|
attributes?: Record<string, unknown>;
|
|
9645
|
-
folder?: DriveFolderOptions$
|
|
9629
|
+
folder?: DriveFolderOptions$r;
|
|
9646
9630
|
}
|
|
9647
|
-
interface DriveFolderOptions$
|
|
9631
|
+
interface DriveFolderOptions$r {
|
|
9648
9632
|
path?: string;
|
|
9649
9633
|
id?: string;
|
|
9650
9634
|
}
|
|
@@ -9665,23 +9649,23 @@ interface Hailuo23StandardImageToVideoCommand {
|
|
|
9665
9649
|
prompt: string;
|
|
9666
9650
|
prompt_optimizer?: boolean;
|
|
9667
9651
|
callback_url?: string;
|
|
9668
|
-
options?: GenAIOptions$
|
|
9652
|
+
options?: GenAIOptions$q;
|
|
9669
9653
|
image_url: string;
|
|
9670
9654
|
duration?: 6 | 10;
|
|
9671
9655
|
}
|
|
9672
|
-
interface GenAIOptions$
|
|
9673
|
-
safety_checks?: SafetyChecksOptions$
|
|
9674
|
-
drive?: DriveOptions$
|
|
9656
|
+
interface GenAIOptions$q {
|
|
9657
|
+
safety_checks?: SafetyChecksOptions$q;
|
|
9658
|
+
drive?: DriveOptions$q;
|
|
9675
9659
|
}
|
|
9676
|
-
interface SafetyChecksOptions$
|
|
9660
|
+
interface SafetyChecksOptions$q {
|
|
9677
9661
|
enabled?: boolean;
|
|
9678
9662
|
}
|
|
9679
|
-
interface DriveOptions$
|
|
9663
|
+
interface DriveOptions$q {
|
|
9680
9664
|
name: string;
|
|
9681
9665
|
attributes?: Record<string, unknown>;
|
|
9682
|
-
folder?: DriveFolderOptions$
|
|
9666
|
+
folder?: DriveFolderOptions$q;
|
|
9683
9667
|
}
|
|
9684
|
-
interface DriveFolderOptions$
|
|
9668
|
+
interface DriveFolderOptions$q {
|
|
9685
9669
|
path?: string;
|
|
9686
9670
|
id?: string;
|
|
9687
9671
|
}
|
|
@@ -9702,21 +9686,21 @@ interface Hailuo23ProTextToVideoCommand {
|
|
|
9702
9686
|
prompt: string;
|
|
9703
9687
|
prompt_optimizer?: boolean;
|
|
9704
9688
|
callback_url?: string;
|
|
9705
|
-
options?: GenAIOptions$
|
|
9689
|
+
options?: GenAIOptions$p;
|
|
9706
9690
|
}
|
|
9707
|
-
interface GenAIOptions$
|
|
9708
|
-
safety_checks?: SafetyChecksOptions$
|
|
9709
|
-
drive?: DriveOptions$
|
|
9691
|
+
interface GenAIOptions$p {
|
|
9692
|
+
safety_checks?: SafetyChecksOptions$p;
|
|
9693
|
+
drive?: DriveOptions$p;
|
|
9710
9694
|
}
|
|
9711
|
-
interface SafetyChecksOptions$
|
|
9695
|
+
interface SafetyChecksOptions$p {
|
|
9712
9696
|
enabled?: boolean;
|
|
9713
9697
|
}
|
|
9714
|
-
interface DriveOptions$
|
|
9698
|
+
interface DriveOptions$p {
|
|
9715
9699
|
name: string;
|
|
9716
9700
|
attributes?: Record<string, unknown>;
|
|
9717
|
-
folder?: DriveFolderOptions$
|
|
9701
|
+
folder?: DriveFolderOptions$p;
|
|
9718
9702
|
}
|
|
9719
|
-
interface DriveFolderOptions$
|
|
9703
|
+
interface DriveFolderOptions$p {
|
|
9720
9704
|
path?: string;
|
|
9721
9705
|
id?: string;
|
|
9722
9706
|
}
|
|
@@ -9737,22 +9721,22 @@ interface Hailuo23ProImageToVideoCommand {
|
|
|
9737
9721
|
prompt: string;
|
|
9738
9722
|
prompt_optimizer?: boolean;
|
|
9739
9723
|
callback_url?: string;
|
|
9740
|
-
options?: GenAIOptions$
|
|
9724
|
+
options?: GenAIOptions$o;
|
|
9741
9725
|
image_url: string;
|
|
9742
9726
|
}
|
|
9743
|
-
interface GenAIOptions$
|
|
9744
|
-
safety_checks?: SafetyChecksOptions$
|
|
9745
|
-
drive?: DriveOptions$
|
|
9727
|
+
interface GenAIOptions$o {
|
|
9728
|
+
safety_checks?: SafetyChecksOptions$o;
|
|
9729
|
+
drive?: DriveOptions$o;
|
|
9746
9730
|
}
|
|
9747
|
-
interface SafetyChecksOptions$
|
|
9731
|
+
interface SafetyChecksOptions$o {
|
|
9748
9732
|
enabled?: boolean;
|
|
9749
9733
|
}
|
|
9750
|
-
interface DriveOptions$
|
|
9734
|
+
interface DriveOptions$o {
|
|
9751
9735
|
name: string;
|
|
9752
9736
|
attributes?: Record<string, unknown>;
|
|
9753
|
-
folder?: DriveFolderOptions$
|
|
9737
|
+
folder?: DriveFolderOptions$o;
|
|
9754
9738
|
}
|
|
9755
|
-
interface DriveFolderOptions$
|
|
9739
|
+
interface DriveFolderOptions$o {
|
|
9756
9740
|
path?: string;
|
|
9757
9741
|
id?: string;
|
|
9758
9742
|
}
|
|
@@ -9773,23 +9757,23 @@ interface Hailuo23FastStandardImageToVideoCommand {
|
|
|
9773
9757
|
prompt: string;
|
|
9774
9758
|
prompt_optimizer?: boolean;
|
|
9775
9759
|
callback_url?: string;
|
|
9776
|
-
options?: GenAIOptions$
|
|
9760
|
+
options?: GenAIOptions$n;
|
|
9777
9761
|
image_url: string;
|
|
9778
9762
|
duration?: 6 | 10;
|
|
9779
9763
|
}
|
|
9780
|
-
interface GenAIOptions$
|
|
9781
|
-
safety_checks?: SafetyChecksOptions$
|
|
9782
|
-
drive?: DriveOptions$
|
|
9764
|
+
interface GenAIOptions$n {
|
|
9765
|
+
safety_checks?: SafetyChecksOptions$n;
|
|
9766
|
+
drive?: DriveOptions$n;
|
|
9783
9767
|
}
|
|
9784
|
-
interface SafetyChecksOptions$
|
|
9768
|
+
interface SafetyChecksOptions$n {
|
|
9785
9769
|
enabled?: boolean;
|
|
9786
9770
|
}
|
|
9787
|
-
interface DriveOptions$
|
|
9771
|
+
interface DriveOptions$n {
|
|
9788
9772
|
name: string;
|
|
9789
9773
|
attributes?: Record<string, unknown>;
|
|
9790
|
-
folder?: DriveFolderOptions$
|
|
9774
|
+
folder?: DriveFolderOptions$n;
|
|
9791
9775
|
}
|
|
9792
|
-
interface DriveFolderOptions$
|
|
9776
|
+
interface DriveFolderOptions$n {
|
|
9793
9777
|
path?: string;
|
|
9794
9778
|
id?: string;
|
|
9795
9779
|
}
|
|
@@ -9810,22 +9794,22 @@ interface Hailuo23FastProImageToVideoCommand {
|
|
|
9810
9794
|
prompt: string;
|
|
9811
9795
|
prompt_optimizer?: boolean;
|
|
9812
9796
|
callback_url?: string;
|
|
9813
|
-
options?: GenAIOptions$
|
|
9797
|
+
options?: GenAIOptions$m;
|
|
9814
9798
|
image_url: string;
|
|
9815
9799
|
}
|
|
9816
|
-
interface GenAIOptions$
|
|
9817
|
-
safety_checks?: SafetyChecksOptions$
|
|
9818
|
-
drive?: DriveOptions$
|
|
9800
|
+
interface GenAIOptions$m {
|
|
9801
|
+
safety_checks?: SafetyChecksOptions$m;
|
|
9802
|
+
drive?: DriveOptions$m;
|
|
9819
9803
|
}
|
|
9820
|
-
interface SafetyChecksOptions$
|
|
9804
|
+
interface SafetyChecksOptions$m {
|
|
9821
9805
|
enabled?: boolean;
|
|
9822
9806
|
}
|
|
9823
|
-
interface DriveOptions$
|
|
9807
|
+
interface DriveOptions$m {
|
|
9824
9808
|
name: string;
|
|
9825
9809
|
attributes?: Record<string, unknown>;
|
|
9826
|
-
folder?: DriveFolderOptions$
|
|
9810
|
+
folder?: DriveFolderOptions$m;
|
|
9827
9811
|
}
|
|
9828
|
-
interface DriveFolderOptions$
|
|
9812
|
+
interface DriveFolderOptions$m {
|
|
9829
9813
|
path?: string;
|
|
9830
9814
|
id?: string;
|
|
9831
9815
|
}
|
|
@@ -9848,26 +9832,26 @@ interface MinimaxMusicV2Command {
|
|
|
9848
9832
|
audio_setting?: MinimaxMusicAudioSettingDto$1;
|
|
9849
9833
|
lyrics_optimizer?: boolean;
|
|
9850
9834
|
is_instrumental?: boolean;
|
|
9851
|
-
options?: GenAIOptions$
|
|
9835
|
+
options?: GenAIOptions$l;
|
|
9852
9836
|
}
|
|
9853
9837
|
interface MinimaxMusicAudioSettingDto$1 {
|
|
9854
9838
|
sample_rate?: 16000 | 24000 | 32000 | 44100;
|
|
9855
9839
|
bitrate?: 32000 | 64000 | 128000 | 256000;
|
|
9856
9840
|
format?: "mp3" | "wav" | "pcm";
|
|
9857
9841
|
}
|
|
9858
|
-
interface GenAIOptions$
|
|
9859
|
-
safety_checks?: SafetyChecksOptions$
|
|
9860
|
-
drive?: DriveOptions$
|
|
9842
|
+
interface GenAIOptions$l {
|
|
9843
|
+
safety_checks?: SafetyChecksOptions$l;
|
|
9844
|
+
drive?: DriveOptions$l;
|
|
9861
9845
|
}
|
|
9862
|
-
interface SafetyChecksOptions$
|
|
9846
|
+
interface SafetyChecksOptions$l {
|
|
9863
9847
|
enabled?: boolean;
|
|
9864
9848
|
}
|
|
9865
|
-
interface DriveOptions$
|
|
9849
|
+
interface DriveOptions$l {
|
|
9866
9850
|
name: string;
|
|
9867
9851
|
attributes?: Record<string, unknown>;
|
|
9868
|
-
folder?: DriveFolderOptions$
|
|
9852
|
+
folder?: DriveFolderOptions$l;
|
|
9869
9853
|
}
|
|
9870
|
-
interface DriveFolderOptions$
|
|
9854
|
+
interface DriveFolderOptions$l {
|
|
9871
9855
|
path?: string;
|
|
9872
9856
|
id?: string;
|
|
9873
9857
|
}
|
|
@@ -9888,26 +9872,26 @@ interface MinimaxMusicV3Command {
|
|
|
9888
9872
|
audio_setting?: MinimaxMusicAudioSettingDto;
|
|
9889
9873
|
lyrics_optimizer?: boolean;
|
|
9890
9874
|
is_instrumental?: boolean;
|
|
9891
|
-
options?: GenAIOptions$
|
|
9875
|
+
options?: GenAIOptions$k;
|
|
9892
9876
|
}
|
|
9893
9877
|
interface MinimaxMusicAudioSettingDto {
|
|
9894
9878
|
sample_rate?: 16000 | 24000 | 32000 | 44100;
|
|
9895
9879
|
bitrate?: 32000 | 64000 | 128000 | 256000;
|
|
9896
9880
|
format?: "mp3" | "wav" | "pcm";
|
|
9897
9881
|
}
|
|
9898
|
-
interface GenAIOptions$
|
|
9899
|
-
safety_checks?: SafetyChecksOptions$
|
|
9900
|
-
drive?: DriveOptions$
|
|
9882
|
+
interface GenAIOptions$k {
|
|
9883
|
+
safety_checks?: SafetyChecksOptions$k;
|
|
9884
|
+
drive?: DriveOptions$k;
|
|
9901
9885
|
}
|
|
9902
|
-
interface SafetyChecksOptions$
|
|
9886
|
+
interface SafetyChecksOptions$k {
|
|
9903
9887
|
enabled?: boolean;
|
|
9904
9888
|
}
|
|
9905
|
-
interface DriveOptions$
|
|
9889
|
+
interface DriveOptions$k {
|
|
9906
9890
|
name: string;
|
|
9907
9891
|
attributes?: Record<string, unknown>;
|
|
9908
|
-
folder?: DriveFolderOptions$
|
|
9892
|
+
folder?: DriveFolderOptions$k;
|
|
9909
9893
|
}
|
|
9910
|
-
interface DriveFolderOptions$
|
|
9894
|
+
interface DriveFolderOptions$k {
|
|
9911
9895
|
path?: string;
|
|
9912
9896
|
id?: string;
|
|
9913
9897
|
}
|
|
@@ -9927,23 +9911,23 @@ interface SeedreamLayerSeparationCommand {
|
|
|
9927
9911
|
prompt?: string;
|
|
9928
9912
|
resolution?: SeedreamLayerSeparationResolution;
|
|
9929
9913
|
watermark?: boolean;
|
|
9930
|
-
options?: GenAIOptions$
|
|
9914
|
+
options?: GenAIOptions$j;
|
|
9931
9915
|
}
|
|
9932
9916
|
type SeedreamLayerSeparationResolution = "1K" | "2K";
|
|
9933
|
-
interface GenAIOptions$
|
|
9934
|
-
safety_checks?: SafetyChecksOptions$
|
|
9935
|
-
drive?: DriveOptions$
|
|
9917
|
+
interface GenAIOptions$j {
|
|
9918
|
+
safety_checks?: SafetyChecksOptions$j;
|
|
9919
|
+
drive?: DriveOptions$j;
|
|
9936
9920
|
inputs_transformation?: InputsTransformationOptions$1;
|
|
9937
9921
|
}
|
|
9938
|
-
interface SafetyChecksOptions$
|
|
9922
|
+
interface SafetyChecksOptions$j {
|
|
9939
9923
|
enabled?: boolean;
|
|
9940
9924
|
}
|
|
9941
|
-
interface DriveOptions$
|
|
9925
|
+
interface DriveOptions$j {
|
|
9942
9926
|
name: string;
|
|
9943
9927
|
attributes?: Record<string, unknown>;
|
|
9944
|
-
folder?: DriveFolderOptions$
|
|
9928
|
+
folder?: DriveFolderOptions$j;
|
|
9945
9929
|
}
|
|
9946
|
-
interface DriveFolderOptions$
|
|
9930
|
+
interface DriveFolderOptions$j {
|
|
9947
9931
|
path?: string;
|
|
9948
9932
|
id?: string;
|
|
9949
9933
|
}
|
|
@@ -9980,21 +9964,21 @@ interface RecraftStylesCommand {
|
|
|
9980
9964
|
source_style_weights?: number[];
|
|
9981
9965
|
prompt?: string;
|
|
9982
9966
|
mix_policy?: "PaletteMatch" | "MaxWeight";
|
|
9983
|
-
options?: GenAIOptions$
|
|
9967
|
+
options?: GenAIOptions$i;
|
|
9984
9968
|
}
|
|
9985
|
-
interface GenAIOptions$
|
|
9986
|
-
safety_checks?: SafetyChecksOptions$
|
|
9987
|
-
drive?: DriveOptions$
|
|
9969
|
+
interface GenAIOptions$i {
|
|
9970
|
+
safety_checks?: SafetyChecksOptions$i;
|
|
9971
|
+
drive?: DriveOptions$i;
|
|
9988
9972
|
}
|
|
9989
|
-
interface SafetyChecksOptions$
|
|
9973
|
+
interface SafetyChecksOptions$i {
|
|
9990
9974
|
enabled?: boolean;
|
|
9991
9975
|
}
|
|
9992
|
-
interface DriveOptions$
|
|
9976
|
+
interface DriveOptions$i {
|
|
9993
9977
|
name: string;
|
|
9994
9978
|
attributes?: Record<string, unknown>;
|
|
9995
|
-
folder?: DriveFolderOptions$
|
|
9979
|
+
folder?: DriveFolderOptions$i;
|
|
9996
9980
|
}
|
|
9997
|
-
interface DriveFolderOptions$
|
|
9981
|
+
interface DriveFolderOptions$i {
|
|
9998
9982
|
path?: string;
|
|
9999
9983
|
id?: string;
|
|
10000
9984
|
}
|
|
@@ -10052,22 +10036,22 @@ interface FlowTemplateTextItem {
|
|
|
10052
10036
|
interface PicsartFlowEffectsCommand {
|
|
10053
10037
|
template: string;
|
|
10054
10038
|
imageUrls: string[];
|
|
10055
|
-
options?: GenAIOptions$
|
|
10039
|
+
options?: GenAIOptions$h;
|
|
10056
10040
|
moderationLevel?: "none" | "low" | "medium" | "high";
|
|
10057
10041
|
}
|
|
10058
|
-
interface GenAIOptions$
|
|
10059
|
-
safety_checks?: SafetyChecksOptions$
|
|
10060
|
-
drive?: DriveOptions$
|
|
10042
|
+
interface GenAIOptions$h {
|
|
10043
|
+
safety_checks?: SafetyChecksOptions$h;
|
|
10044
|
+
drive?: DriveOptions$h;
|
|
10061
10045
|
}
|
|
10062
|
-
interface SafetyChecksOptions$
|
|
10046
|
+
interface SafetyChecksOptions$h {
|
|
10063
10047
|
enabled?: boolean;
|
|
10064
10048
|
}
|
|
10065
|
-
interface DriveOptions$
|
|
10049
|
+
interface DriveOptions$h {
|
|
10066
10050
|
name: string;
|
|
10067
10051
|
attributes?: Record<string, unknown>;
|
|
10068
|
-
folder?: DriveFolderOptions$
|
|
10052
|
+
folder?: DriveFolderOptions$h;
|
|
10069
10053
|
}
|
|
10070
|
-
interface DriveFolderOptions$
|
|
10054
|
+
interface DriveFolderOptions$h {
|
|
10071
10055
|
path?: string;
|
|
10072
10056
|
id?: string;
|
|
10073
10057
|
}
|
|
@@ -10096,23 +10080,23 @@ interface OmniHumanCommand {
|
|
|
10096
10080
|
turbo_mode?: boolean;
|
|
10097
10081
|
mask_url?: string | string[];
|
|
10098
10082
|
seed?: number;
|
|
10099
|
-
options?: GenAIOptions$
|
|
10083
|
+
options?: GenAIOptions$g;
|
|
10100
10084
|
}
|
|
10101
10085
|
type OmniHumanResolution = "720p" | "1080p";
|
|
10102
|
-
interface GenAIOptions$
|
|
10103
|
-
safety_checks?: SafetyChecksOptions$
|
|
10104
|
-
drive?: DriveOptions$
|
|
10086
|
+
interface GenAIOptions$g {
|
|
10087
|
+
safety_checks?: SafetyChecksOptions$g;
|
|
10088
|
+
drive?: DriveOptions$g;
|
|
10105
10089
|
inputs_transformation?: InputsTransformationOptions;
|
|
10106
10090
|
}
|
|
10107
|
-
interface SafetyChecksOptions$
|
|
10091
|
+
interface SafetyChecksOptions$g {
|
|
10108
10092
|
enabled?: boolean;
|
|
10109
10093
|
}
|
|
10110
|
-
interface DriveOptions$
|
|
10094
|
+
interface DriveOptions$g {
|
|
10111
10095
|
name: string;
|
|
10112
10096
|
attributes?: Record<string, unknown>;
|
|
10113
|
-
folder?: DriveFolderOptions$
|
|
10097
|
+
folder?: DriveFolderOptions$g;
|
|
10114
10098
|
}
|
|
10115
|
-
interface DriveFolderOptions$
|
|
10099
|
+
interface DriveFolderOptions$g {
|
|
10116
10100
|
path?: string;
|
|
10117
10101
|
id?: string;
|
|
10118
10102
|
}
|
|
@@ -10142,7 +10126,7 @@ interface BflFlux2Command {
|
|
|
10142
10126
|
outputFormat?: "jpeg" | "png";
|
|
10143
10127
|
promptUpsampling?: boolean;
|
|
10144
10128
|
safetyTolerance?: number;
|
|
10145
|
-
options?: GenAIOptions$
|
|
10129
|
+
options?: GenAIOptions$f;
|
|
10146
10130
|
model: FluxV2Model;
|
|
10147
10131
|
steps?: number;
|
|
10148
10132
|
guidance?: number;
|
|
@@ -10152,19 +10136,19 @@ interface BflFlux2Command {
|
|
|
10152
10136
|
resolution?: FluxResolution;
|
|
10153
10137
|
count?: number;
|
|
10154
10138
|
}
|
|
10155
|
-
interface GenAIOptions$
|
|
10156
|
-
safety_checks?: SafetyChecksOptions$
|
|
10157
|
-
drive?: DriveOptions$
|
|
10139
|
+
interface GenAIOptions$f {
|
|
10140
|
+
safety_checks?: SafetyChecksOptions$f;
|
|
10141
|
+
drive?: DriveOptions$f;
|
|
10158
10142
|
}
|
|
10159
|
-
interface SafetyChecksOptions$
|
|
10143
|
+
interface SafetyChecksOptions$f {
|
|
10160
10144
|
enabled?: boolean;
|
|
10161
10145
|
}
|
|
10162
|
-
interface DriveOptions$
|
|
10146
|
+
interface DriveOptions$f {
|
|
10163
10147
|
name: string;
|
|
10164
10148
|
attributes?: Record<string, unknown>;
|
|
10165
|
-
folder?: DriveFolderOptions$
|
|
10149
|
+
folder?: DriveFolderOptions$f;
|
|
10166
10150
|
}
|
|
10167
|
-
interface DriveFolderOptions$
|
|
10151
|
+
interface DriveFolderOptions$f {
|
|
10168
10152
|
path?: string;
|
|
10169
10153
|
id?: string;
|
|
10170
10154
|
}
|
|
@@ -10189,24 +10173,24 @@ interface BflFluxKontextCommand {
|
|
|
10189
10173
|
outputFormat?: "jpeg" | "png";
|
|
10190
10174
|
promptUpsampling?: boolean;
|
|
10191
10175
|
safetyTolerance?: number;
|
|
10192
|
-
options?: GenAIOptions$
|
|
10176
|
+
options?: GenAIOptions$e;
|
|
10193
10177
|
model: FluxKontextModel;
|
|
10194
10178
|
imageUrls?: string[];
|
|
10195
10179
|
count?: number;
|
|
10196
10180
|
}
|
|
10197
|
-
interface GenAIOptions$
|
|
10198
|
-
safety_checks?: SafetyChecksOptions$
|
|
10199
|
-
drive?: DriveOptions$
|
|
10181
|
+
interface GenAIOptions$e {
|
|
10182
|
+
safety_checks?: SafetyChecksOptions$e;
|
|
10183
|
+
drive?: DriveOptions$e;
|
|
10200
10184
|
}
|
|
10201
|
-
interface SafetyChecksOptions$
|
|
10185
|
+
interface SafetyChecksOptions$e {
|
|
10202
10186
|
enabled?: boolean;
|
|
10203
10187
|
}
|
|
10204
|
-
interface DriveOptions$
|
|
10188
|
+
interface DriveOptions$e {
|
|
10205
10189
|
name: string;
|
|
10206
10190
|
attributes?: Record<string, unknown>;
|
|
10207
|
-
folder?: DriveFolderOptions$
|
|
10191
|
+
folder?: DriveFolderOptions$e;
|
|
10208
10192
|
}
|
|
10209
|
-
interface DriveFolderOptions$
|
|
10193
|
+
interface DriveFolderOptions$e {
|
|
10210
10194
|
path?: string;
|
|
10211
10195
|
id?: string;
|
|
10212
10196
|
}
|
|
@@ -10242,21 +10226,21 @@ interface ParakeetSliceResultData {
|
|
|
10242
10226
|
interface ParakeetUnifiedEnCommand {
|
|
10243
10227
|
url: string;
|
|
10244
10228
|
model?: "preview-model-parakeet-unified-en-v1" | "model-parakeet-unified-en-v1";
|
|
10245
|
-
options?: GenAIOptions$
|
|
10229
|
+
options?: GenAIOptions$d;
|
|
10246
10230
|
}
|
|
10247
|
-
interface GenAIOptions$
|
|
10248
|
-
safety_checks?: SafetyChecksOptions$
|
|
10249
|
-
drive?: DriveOptions$
|
|
10231
|
+
interface GenAIOptions$d {
|
|
10232
|
+
safety_checks?: SafetyChecksOptions$d;
|
|
10233
|
+
drive?: DriveOptions$d;
|
|
10250
10234
|
}
|
|
10251
|
-
interface SafetyChecksOptions$
|
|
10235
|
+
interface SafetyChecksOptions$d {
|
|
10252
10236
|
enabled?: boolean;
|
|
10253
10237
|
}
|
|
10254
|
-
interface DriveOptions$
|
|
10238
|
+
interface DriveOptions$d {
|
|
10255
10239
|
name: string;
|
|
10256
10240
|
attributes?: Record<string, unknown>;
|
|
10257
|
-
folder?: DriveFolderOptions$
|
|
10241
|
+
folder?: DriveFolderOptions$d;
|
|
10258
10242
|
}
|
|
10259
|
-
interface DriveFolderOptions$
|
|
10243
|
+
interface DriveFolderOptions$d {
|
|
10260
10244
|
path?: string;
|
|
10261
10245
|
id?: string;
|
|
10262
10246
|
}
|
|
@@ -10284,21 +10268,21 @@ interface CreativeEnhancementCommand {
|
|
|
10284
10268
|
creative_conditioning_strength?: number;
|
|
10285
10269
|
creative_processing_size?: number;
|
|
10286
10270
|
output_format?: "JPEG" | "PNG" | "HEIC" | "WEBP";
|
|
10287
|
-
options?: GenAIOptions$
|
|
10271
|
+
options?: GenAIOptions$c;
|
|
10288
10272
|
}
|
|
10289
|
-
interface GenAIOptions$
|
|
10290
|
-
safety_checks?: SafetyChecksOptions$
|
|
10291
|
-
drive?: DriveOptions$
|
|
10273
|
+
interface GenAIOptions$c {
|
|
10274
|
+
safety_checks?: SafetyChecksOptions$c;
|
|
10275
|
+
drive?: DriveOptions$c;
|
|
10292
10276
|
}
|
|
10293
|
-
interface SafetyChecksOptions$
|
|
10277
|
+
interface SafetyChecksOptions$c {
|
|
10294
10278
|
enabled?: boolean;
|
|
10295
10279
|
}
|
|
10296
|
-
interface DriveOptions$
|
|
10280
|
+
interface DriveOptions$c {
|
|
10297
10281
|
name: string;
|
|
10298
10282
|
attributes?: Record<string, unknown>;
|
|
10299
|
-
folder?: DriveFolderOptions$
|
|
10283
|
+
folder?: DriveFolderOptions$c;
|
|
10300
10284
|
}
|
|
10301
|
-
interface DriveFolderOptions$
|
|
10285
|
+
interface DriveFolderOptions$c {
|
|
10302
10286
|
path?: string;
|
|
10303
10287
|
id?: string;
|
|
10304
10288
|
}
|
|
@@ -10325,21 +10309,21 @@ interface FaceCollageCommand {
|
|
|
10325
10309
|
variant?: number;
|
|
10326
10310
|
decoration?: number;
|
|
10327
10311
|
model?: "preview-model-face-collage-v1" | "model-face-collage-v1";
|
|
10328
|
-
options?: GenAIOptions$
|
|
10312
|
+
options?: GenAIOptions$b;
|
|
10329
10313
|
}
|
|
10330
|
-
interface GenAIOptions$
|
|
10331
|
-
safety_checks?: SafetyChecksOptions$
|
|
10332
|
-
drive?: DriveOptions$
|
|
10314
|
+
interface GenAIOptions$b {
|
|
10315
|
+
safety_checks?: SafetyChecksOptions$b;
|
|
10316
|
+
drive?: DriveOptions$b;
|
|
10333
10317
|
}
|
|
10334
|
-
interface SafetyChecksOptions$
|
|
10318
|
+
interface SafetyChecksOptions$b {
|
|
10335
10319
|
enabled?: boolean;
|
|
10336
10320
|
}
|
|
10337
|
-
interface DriveOptions$
|
|
10321
|
+
interface DriveOptions$b {
|
|
10338
10322
|
name: string;
|
|
10339
10323
|
attributes?: Record<string, unknown>;
|
|
10340
|
-
folder?: DriveFolderOptions$
|
|
10324
|
+
folder?: DriveFolderOptions$b;
|
|
10341
10325
|
}
|
|
10342
|
-
interface DriveFolderOptions$
|
|
10326
|
+
interface DriveFolderOptions$b {
|
|
10343
10327
|
path?: string;
|
|
10344
10328
|
id?: string;
|
|
10345
10329
|
}
|
|
@@ -10421,24 +10405,24 @@ interface CaptionsAiVideosCaptionsCommand {
|
|
|
10421
10405
|
video: CaptionsAiVideoUrl;
|
|
10422
10406
|
caption_template_id: string;
|
|
10423
10407
|
background?: "black" | "video";
|
|
10424
|
-
options?: GenAIOptions$
|
|
10408
|
+
options?: GenAIOptions$a;
|
|
10425
10409
|
}
|
|
10426
10410
|
interface CaptionsAiVideoUrl {
|
|
10427
10411
|
url: string;
|
|
10428
10412
|
}
|
|
10429
|
-
interface GenAIOptions$
|
|
10430
|
-
safety_checks?: SafetyChecksOptions$
|
|
10431
|
-
drive?: DriveOptions$
|
|
10413
|
+
interface GenAIOptions$a {
|
|
10414
|
+
safety_checks?: SafetyChecksOptions$a;
|
|
10415
|
+
drive?: DriveOptions$a;
|
|
10432
10416
|
}
|
|
10433
|
-
interface SafetyChecksOptions$
|
|
10417
|
+
interface SafetyChecksOptions$a {
|
|
10434
10418
|
enabled?: boolean;
|
|
10435
10419
|
}
|
|
10436
|
-
interface DriveOptions$
|
|
10420
|
+
interface DriveOptions$a {
|
|
10437
10421
|
name: string;
|
|
10438
10422
|
attributes?: Record<string, unknown>;
|
|
10439
|
-
folder?: DriveFolderOptions$
|
|
10423
|
+
folder?: DriveFolderOptions$a;
|
|
10440
10424
|
}
|
|
10441
|
-
interface DriveFolderOptions$
|
|
10425
|
+
interface DriveFolderOptions$a {
|
|
10442
10426
|
path?: string;
|
|
10443
10427
|
id?: string;
|
|
10444
10428
|
}
|
|
@@ -10486,21 +10470,21 @@ interface FluxVideoUpscaleCommand {
|
|
|
10486
10470
|
prompt?: string;
|
|
10487
10471
|
safetyTolerance?: number;
|
|
10488
10472
|
webhookUrl?: string;
|
|
10489
|
-
options?: GenAIOptions$
|
|
10473
|
+
options?: GenAIOptions$9;
|
|
10490
10474
|
}
|
|
10491
|
-
interface GenAIOptions$
|
|
10492
|
-
safety_checks?: SafetyChecksOptions$
|
|
10493
|
-
drive?: DriveOptions$
|
|
10475
|
+
interface GenAIOptions$9 {
|
|
10476
|
+
safety_checks?: SafetyChecksOptions$9;
|
|
10477
|
+
drive?: DriveOptions$9;
|
|
10494
10478
|
}
|
|
10495
|
-
interface SafetyChecksOptions$
|
|
10479
|
+
interface SafetyChecksOptions$9 {
|
|
10496
10480
|
enabled?: boolean;
|
|
10497
10481
|
}
|
|
10498
|
-
interface DriveOptions$
|
|
10482
|
+
interface DriveOptions$9 {
|
|
10499
10483
|
name: string;
|
|
10500
10484
|
attributes?: Record<string, unknown>;
|
|
10501
|
-
folder?: DriveFolderOptions$
|
|
10485
|
+
folder?: DriveFolderOptions$9;
|
|
10502
10486
|
}
|
|
10503
|
-
interface DriveFolderOptions$
|
|
10487
|
+
interface DriveFolderOptions$9 {
|
|
10504
10488
|
path?: string;
|
|
10505
10489
|
id?: string;
|
|
10506
10490
|
}
|
|
@@ -10520,21 +10504,21 @@ interface VoiceCreateCommand {
|
|
|
10520
10504
|
voice_description: string;
|
|
10521
10505
|
labels?: Record<string, string>;
|
|
10522
10506
|
played_not_selected_voice_ids?: string[];
|
|
10523
|
-
options?: GenAIOptions$
|
|
10507
|
+
options?: GenAIOptions$8;
|
|
10524
10508
|
}
|
|
10525
|
-
interface GenAIOptions$
|
|
10526
|
-
safety_checks?: SafetyChecksOptions$
|
|
10527
|
-
drive?: DriveOptions$
|
|
10509
|
+
interface GenAIOptions$8 {
|
|
10510
|
+
safety_checks?: SafetyChecksOptions$8;
|
|
10511
|
+
drive?: DriveOptions$8;
|
|
10528
10512
|
}
|
|
10529
|
-
interface SafetyChecksOptions$
|
|
10513
|
+
interface SafetyChecksOptions$8 {
|
|
10530
10514
|
enabled?: boolean;
|
|
10531
10515
|
}
|
|
10532
|
-
interface DriveOptions$
|
|
10516
|
+
interface DriveOptions$8 {
|
|
10533
10517
|
name: string;
|
|
10534
10518
|
attributes?: Record<string, unknown>;
|
|
10535
|
-
folder?: DriveFolderOptions$
|
|
10519
|
+
folder?: DriveFolderOptions$8;
|
|
10536
10520
|
}
|
|
10537
|
-
interface DriveFolderOptions$
|
|
10521
|
+
interface DriveFolderOptions$8 {
|
|
10538
10522
|
path?: string;
|
|
10539
10523
|
id?: string;
|
|
10540
10524
|
}
|
|
@@ -10559,21 +10543,21 @@ interface VoiceCloneCommand {
|
|
|
10559
10543
|
description?: string;
|
|
10560
10544
|
labels?: Record<string, string>;
|
|
10561
10545
|
remove_background_noise?: boolean;
|
|
10562
|
-
options?: GenAIOptions$
|
|
10546
|
+
options?: GenAIOptions$7;
|
|
10563
10547
|
}
|
|
10564
|
-
interface GenAIOptions$
|
|
10565
|
-
safety_checks?: SafetyChecksOptions$
|
|
10566
|
-
drive?: DriveOptions$
|
|
10548
|
+
interface GenAIOptions$7 {
|
|
10549
|
+
safety_checks?: SafetyChecksOptions$7;
|
|
10550
|
+
drive?: DriveOptions$7;
|
|
10567
10551
|
}
|
|
10568
|
-
interface SafetyChecksOptions$
|
|
10552
|
+
interface SafetyChecksOptions$7 {
|
|
10569
10553
|
enabled?: boolean;
|
|
10570
10554
|
}
|
|
10571
|
-
interface DriveOptions$
|
|
10555
|
+
interface DriveOptions$7 {
|
|
10572
10556
|
name: string;
|
|
10573
10557
|
attributes?: Record<string, unknown>;
|
|
10574
|
-
folder?: DriveFolderOptions$
|
|
10558
|
+
folder?: DriveFolderOptions$7;
|
|
10575
10559
|
}
|
|
10576
|
-
interface DriveFolderOptions$
|
|
10560
|
+
interface DriveFolderOptions$7 {
|
|
10577
10561
|
path?: string;
|
|
10578
10562
|
id?: string;
|
|
10579
10563
|
}
|
|
@@ -10607,14 +10591,14 @@ interface VoiceDeleteResult {
|
|
|
10607
10591
|
}
|
|
10608
10592
|
|
|
10609
10593
|
interface TurboTextToVideoHailuo03Input$1 {
|
|
10610
|
-
enable_safety_checker?: boolean;
|
|
10611
10594
|
duration?: number;
|
|
10612
|
-
aspect_ratio?: "21:9" | "16:9" | "4:3" | "1:1" | "3:4" | "9:16";
|
|
10613
10595
|
sync_mode?: boolean;
|
|
10614
|
-
|
|
10596
|
+
enable_safety_checker?: boolean;
|
|
10615
10597
|
prompt: string;
|
|
10616
10598
|
seed?: number | unknown;
|
|
10617
|
-
|
|
10599
|
+
aspect_ratio?: "21:9" | "16:9" | "4:3" | "1:1" | "3:4" | "9:16";
|
|
10600
|
+
prompt_expansion_mode: string;
|
|
10601
|
+
resolution?: "480P" | "768P" | "1080P";
|
|
10618
10602
|
options?: {
|
|
10619
10603
|
safety_checks?: {
|
|
10620
10604
|
enabled?: boolean;
|
|
@@ -10635,26 +10619,26 @@ interface MinimaxH3MaxTextToVideoResponse {
|
|
|
10635
10619
|
result: TurboTextToVideoHailuo03Output$1;
|
|
10636
10620
|
}
|
|
10637
10621
|
interface TurboTextToVideoHailuo03Output$1 {
|
|
10638
|
-
|
|
10622
|
+
expanded_prompt?: string | unknown;
|
|
10639
10623
|
video: {
|
|
10640
10624
|
content_type?: string | unknown;
|
|
10641
10625
|
url: string;
|
|
10642
10626
|
file_size?: number | unknown;
|
|
10643
10627
|
file_name?: string | unknown;
|
|
10644
10628
|
};
|
|
10645
|
-
|
|
10629
|
+
timings?: Record<string, number> | unknown;
|
|
10646
10630
|
}
|
|
10647
10631
|
|
|
10648
10632
|
interface TurboImageToVideoHailuo03Input$1 {
|
|
10649
|
-
end_image_url?: string | unknown;
|
|
10650
|
-
enable_safety_checker?: boolean;
|
|
10651
10633
|
duration?: number;
|
|
10652
|
-
image_url?: string | unknown;
|
|
10653
10634
|
sync_mode?: boolean;
|
|
10654
|
-
|
|
10635
|
+
enable_safety_checker?: boolean;
|
|
10655
10636
|
prompt: string;
|
|
10656
10637
|
seed?: number | unknown;
|
|
10657
|
-
|
|
10638
|
+
prompt_expansion_mode: string;
|
|
10639
|
+
image_url?: string | unknown;
|
|
10640
|
+
resolution?: "480P" | "768P" | "1080P";
|
|
10641
|
+
end_image_url?: string | unknown;
|
|
10658
10642
|
options?: {
|
|
10659
10643
|
safety_checks?: {
|
|
10660
10644
|
enabled?: boolean;
|
|
@@ -10675,14 +10659,14 @@ interface MinimaxH3MaxImageToVideoResponse {
|
|
|
10675
10659
|
result: TurboImageToVideoHailuo03Output$1;
|
|
10676
10660
|
}
|
|
10677
10661
|
interface TurboImageToVideoHailuo03Output$1 {
|
|
10678
|
-
|
|
10662
|
+
expanded_prompt?: string | unknown;
|
|
10679
10663
|
video: {
|
|
10680
10664
|
content_type?: string | unknown;
|
|
10681
10665
|
url: string;
|
|
10682
10666
|
file_size?: number | unknown;
|
|
10683
10667
|
file_name?: string | unknown;
|
|
10684
10668
|
};
|
|
10685
|
-
|
|
10669
|
+
timings?: Record<string, number> | unknown;
|
|
10686
10670
|
}
|
|
10687
10671
|
|
|
10688
10672
|
interface MetaImagesGenerationsCommand {
|
|
@@ -10694,26 +10678,26 @@ interface MetaImagesGenerationsCommand {
|
|
|
10694
10678
|
reasoning_strength?: "low" | "high";
|
|
10695
10679
|
moderation?: "auto" | "low" | "none";
|
|
10696
10680
|
tool_enablement?: MetaImageToolEnablement$1;
|
|
10697
|
-
options?: GenAIOptions$
|
|
10681
|
+
options?: GenAIOptions$6;
|
|
10698
10682
|
}
|
|
10699
10683
|
interface MetaImageToolEnablement$1 {
|
|
10700
10684
|
enable_image_search?: boolean;
|
|
10701
10685
|
enable_web_search?: boolean;
|
|
10702
10686
|
enable_shell?: boolean;
|
|
10703
10687
|
}
|
|
10704
|
-
interface GenAIOptions$
|
|
10705
|
-
safety_checks?: SafetyChecksOptions$
|
|
10706
|
-
drive?: DriveOptions$
|
|
10688
|
+
interface GenAIOptions$6 {
|
|
10689
|
+
safety_checks?: SafetyChecksOptions$6;
|
|
10690
|
+
drive?: DriveOptions$6;
|
|
10707
10691
|
}
|
|
10708
|
-
interface SafetyChecksOptions$
|
|
10692
|
+
interface SafetyChecksOptions$6 {
|
|
10709
10693
|
enabled?: boolean;
|
|
10710
10694
|
}
|
|
10711
|
-
interface DriveOptions$
|
|
10695
|
+
interface DriveOptions$6 {
|
|
10712
10696
|
name: string;
|
|
10713
10697
|
attributes?: Record<string, unknown>;
|
|
10714
|
-
folder?: DriveFolderOptions$
|
|
10698
|
+
folder?: DriveFolderOptions$6;
|
|
10715
10699
|
}
|
|
10716
|
-
interface DriveFolderOptions$
|
|
10700
|
+
interface DriveFolderOptions$6 {
|
|
10717
10701
|
path?: string;
|
|
10718
10702
|
id?: string;
|
|
10719
10703
|
}
|
|
@@ -10741,26 +10725,26 @@ interface MetaImagesEditsCommand {
|
|
|
10741
10725
|
reasoning_strength?: "low" | "high";
|
|
10742
10726
|
moderation?: "auto" | "low" | "none";
|
|
10743
10727
|
tool_enablement?: MetaImageToolEnablement;
|
|
10744
|
-
options?: GenAIOptions$
|
|
10728
|
+
options?: GenAIOptions$5;
|
|
10745
10729
|
}
|
|
10746
10730
|
interface MetaImageToolEnablement {
|
|
10747
10731
|
enable_image_search?: boolean;
|
|
10748
10732
|
enable_web_search?: boolean;
|
|
10749
10733
|
enable_shell?: boolean;
|
|
10750
10734
|
}
|
|
10751
|
-
interface GenAIOptions$
|
|
10752
|
-
safety_checks?: SafetyChecksOptions$
|
|
10753
|
-
drive?: DriveOptions$
|
|
10735
|
+
interface GenAIOptions$5 {
|
|
10736
|
+
safety_checks?: SafetyChecksOptions$5;
|
|
10737
|
+
drive?: DriveOptions$5;
|
|
10754
10738
|
}
|
|
10755
|
-
interface SafetyChecksOptions$
|
|
10739
|
+
interface SafetyChecksOptions$5 {
|
|
10756
10740
|
enabled?: boolean;
|
|
10757
10741
|
}
|
|
10758
|
-
interface DriveOptions$
|
|
10742
|
+
interface DriveOptions$5 {
|
|
10759
10743
|
name: string;
|
|
10760
10744
|
attributes?: Record<string, unknown>;
|
|
10761
|
-
folder?: DriveFolderOptions$
|
|
10745
|
+
folder?: DriveFolderOptions$5;
|
|
10762
10746
|
}
|
|
10763
|
-
interface DriveFolderOptions$
|
|
10747
|
+
interface DriveFolderOptions$5 {
|
|
10764
10748
|
path?: string;
|
|
10765
10749
|
id?: string;
|
|
10766
10750
|
}
|
|
@@ -10779,17 +10763,17 @@ interface MetaGeneratedImage {
|
|
|
10779
10763
|
}
|
|
10780
10764
|
|
|
10781
10765
|
interface TurboReferenceToVideoHailuo03Input {
|
|
10782
|
-
reference_video_urls?: string[];
|
|
10783
|
-
reference_image_urls?: string[];
|
|
10784
|
-
enable_safety_checker?: boolean;
|
|
10785
10766
|
duration?: number;
|
|
10786
|
-
aspect_ratio?: "adaptive" | "21:9" | "16:9" | "4:3" | "1:1" | "3:4" | "9:16";
|
|
10787
10767
|
sync_mode?: boolean;
|
|
10788
|
-
|
|
10768
|
+
reference_audio_urls?: string[];
|
|
10769
|
+
enable_safety_checker?: boolean;
|
|
10789
10770
|
prompt: string;
|
|
10771
|
+
aspect_ratio?: "adaptive" | "21:9" | "16:9" | "4:3" | "1:1" | "3:4" | "9:16";
|
|
10790
10772
|
seed?: number | unknown;
|
|
10791
|
-
|
|
10792
|
-
|
|
10773
|
+
prompt_expansion_mode: string;
|
|
10774
|
+
reference_image_urls?: string[];
|
|
10775
|
+
reference_video_urls?: string[];
|
|
10776
|
+
resolution?: "480P" | "768P" | "1080P";
|
|
10793
10777
|
options?: {
|
|
10794
10778
|
safety_checks?: {
|
|
10795
10779
|
enabled?: boolean;
|
|
@@ -10810,36 +10794,36 @@ interface MinimaxH3MaxReferenceToVideoResponse {
|
|
|
10810
10794
|
result: TurboReferenceToVideoHailuo03Output;
|
|
10811
10795
|
}
|
|
10812
10796
|
interface TurboReferenceToVideoHailuo03Output {
|
|
10813
|
-
|
|
10814
|
-
seed: number;
|
|
10797
|
+
expanded_prompt?: string | unknown;
|
|
10815
10798
|
video: {
|
|
10816
10799
|
content_type?: string | unknown;
|
|
10817
10800
|
url: string;
|
|
10818
10801
|
file_size?: number | unknown;
|
|
10819
10802
|
file_name?: string | unknown;
|
|
10820
10803
|
};
|
|
10821
|
-
|
|
10804
|
+
timings?: Record<string, number> | unknown;
|
|
10805
|
+
seed: number;
|
|
10822
10806
|
}
|
|
10823
10807
|
|
|
10824
10808
|
interface VideoEffectsCommand {
|
|
10825
10809
|
videoUri: string;
|
|
10826
10810
|
promptText?: string;
|
|
10827
10811
|
effect?: "spotlight" | "warm-light" | "blue-light" | "paparazzi" | "rainbow" | "backlight" | "police" | "lens-flare" | "blinds" | "high-noon" | "early-evening" | "twilight" | "night" | "midnight" | "early-morning" | "snow" | "sunny" | "rain" | "thunder" | "fog" | "wind" | "dark" | "smoke";
|
|
10828
|
-
options?: GenAIOptions$
|
|
10812
|
+
options?: GenAIOptions$4;
|
|
10829
10813
|
}
|
|
10830
|
-
interface GenAIOptions$
|
|
10831
|
-
safety_checks?: SafetyChecksOptions$
|
|
10832
|
-
drive?: DriveOptions$
|
|
10814
|
+
interface GenAIOptions$4 {
|
|
10815
|
+
safety_checks?: SafetyChecksOptions$4;
|
|
10816
|
+
drive?: DriveOptions$4;
|
|
10833
10817
|
}
|
|
10834
|
-
interface SafetyChecksOptions$
|
|
10818
|
+
interface SafetyChecksOptions$4 {
|
|
10835
10819
|
enabled?: boolean;
|
|
10836
10820
|
}
|
|
10837
|
-
interface DriveOptions$
|
|
10821
|
+
interface DriveOptions$4 {
|
|
10838
10822
|
name: string;
|
|
10839
10823
|
attributes?: Record<string, unknown>;
|
|
10840
|
-
folder?: DriveFolderOptions$
|
|
10824
|
+
folder?: DriveFolderOptions$4;
|
|
10841
10825
|
}
|
|
10842
|
-
interface DriveFolderOptions$
|
|
10826
|
+
interface DriveFolderOptions$4 {
|
|
10843
10827
|
path?: string;
|
|
10844
10828
|
id?: string;
|
|
10845
10829
|
}
|
|
@@ -10884,25 +10868,25 @@ interface CatalogPreviewResult {
|
|
|
10884
10868
|
}
|
|
10885
10869
|
|
|
10886
10870
|
interface MultipleAnglesInput {
|
|
10887
|
-
guidance_scale?: number;
|
|
10888
10871
|
lora_scale?: number;
|
|
10889
|
-
|
|
10890
|
-
|
|
10872
|
+
acceleration?: "none" | "regular";
|
|
10873
|
+
negative_prompt?: string;
|
|
10891
10874
|
zoom?: number;
|
|
10892
|
-
vertical_angle?: number;
|
|
10893
|
-
horizontal_angle?: number;
|
|
10894
|
-
sync_mode?: boolean;
|
|
10895
|
-
image_urls: string[];
|
|
10896
|
-
output_format?: "png" | "jpeg" | "webp";
|
|
10897
|
-
enable_safety_checker?: boolean;
|
|
10898
10875
|
image_size?: {
|
|
10899
|
-
height?: number;
|
|
10900
10876
|
width?: number;
|
|
10877
|
+
height?: number;
|
|
10901
10878
|
} | "square_hd" | "square" | "portrait_4_3" | "portrait_16_9" | "landscape_4_3" | "landscape_16_9" | unknown;
|
|
10902
|
-
negative_prompt?: string;
|
|
10903
10879
|
seed?: number | unknown;
|
|
10880
|
+
enable_safety_checker?: boolean;
|
|
10881
|
+
additional_prompt?: string | unknown;
|
|
10882
|
+
horizontal_angle?: number;
|
|
10883
|
+
vertical_angle?: number;
|
|
10884
|
+
guidance_scale?: number;
|
|
10885
|
+
num_images?: number;
|
|
10886
|
+
sync_mode?: boolean;
|
|
10904
10887
|
num_inference_steps?: number;
|
|
10905
|
-
|
|
10888
|
+
image_urls: string[];
|
|
10889
|
+
output_format?: "png" | "jpeg" | "webp";
|
|
10906
10890
|
options?: {
|
|
10907
10891
|
safety_checks?: {
|
|
10908
10892
|
enabled?: boolean;
|
|
@@ -10923,27 +10907,27 @@ interface QwenImageEdit2511MultipleAnglesResponse {
|
|
|
10923
10907
|
result: MultipleAnglesOutput;
|
|
10924
10908
|
}
|
|
10925
10909
|
interface MultipleAnglesOutput {
|
|
10910
|
+
seed: number;
|
|
10926
10911
|
images: ({
|
|
10927
|
-
url: string;
|
|
10928
|
-
height?: number | unknown;
|
|
10929
10912
|
content_type?: string | unknown;
|
|
10930
10913
|
file_size?: number | unknown;
|
|
10914
|
+
url: string;
|
|
10931
10915
|
width?: number | unknown;
|
|
10932
10916
|
file_name?: string | unknown;
|
|
10917
|
+
height?: number | unknown;
|
|
10933
10918
|
})[];
|
|
10934
|
-
seed: number;
|
|
10935
10919
|
prompt: string;
|
|
10936
10920
|
}
|
|
10937
10921
|
|
|
10938
10922
|
interface TurboTextToVideoHailuo03Input {
|
|
10939
|
-
enable_safety_checker?: boolean;
|
|
10940
10923
|
duration?: number;
|
|
10941
|
-
aspect_ratio?: "21:9" | "16:9" | "4:3" | "1:1" | "3:4" | "9:16";
|
|
10942
10924
|
sync_mode?: boolean;
|
|
10943
|
-
|
|
10925
|
+
enable_safety_checker?: boolean;
|
|
10944
10926
|
prompt: string;
|
|
10945
10927
|
seed?: number | unknown;
|
|
10946
|
-
|
|
10928
|
+
aspect_ratio?: "21:9" | "16:9" | "4:3" | "1:1" | "3:4" | "9:16";
|
|
10929
|
+
prompt_expansion_mode: string;
|
|
10930
|
+
resolution?: "480P" | "768P" | "1080P";
|
|
10947
10931
|
options?: {
|
|
10948
10932
|
safety_checks?: {
|
|
10949
10933
|
enabled?: boolean;
|
|
@@ -10964,26 +10948,26 @@ interface MinimaxH3MaxTurboTextToVideoResponse {
|
|
|
10964
10948
|
result: TurboTextToVideoHailuo03Output;
|
|
10965
10949
|
}
|
|
10966
10950
|
interface TurboTextToVideoHailuo03Output {
|
|
10967
|
-
|
|
10951
|
+
expanded_prompt?: string | unknown;
|
|
10968
10952
|
video: {
|
|
10969
10953
|
content_type?: string | unknown;
|
|
10970
10954
|
url: string;
|
|
10971
10955
|
file_size?: number | unknown;
|
|
10972
10956
|
file_name?: string | unknown;
|
|
10973
10957
|
};
|
|
10974
|
-
|
|
10958
|
+
timings?: Record<string, number> | unknown;
|
|
10975
10959
|
}
|
|
10976
10960
|
|
|
10977
10961
|
interface TurboImageToVideoHailuo03Input {
|
|
10978
|
-
end_image_url?: string | unknown;
|
|
10979
|
-
enable_safety_checker?: boolean;
|
|
10980
10962
|
duration?: number;
|
|
10981
|
-
image_url?: string | unknown;
|
|
10982
10963
|
sync_mode?: boolean;
|
|
10983
|
-
|
|
10964
|
+
enable_safety_checker?: boolean;
|
|
10984
10965
|
prompt: string;
|
|
10985
10966
|
seed?: number | unknown;
|
|
10986
|
-
|
|
10967
|
+
prompt_expansion_mode: string;
|
|
10968
|
+
image_url?: string | unknown;
|
|
10969
|
+
resolution?: "480P" | "768P" | "1080P";
|
|
10970
|
+
end_image_url?: string | unknown;
|
|
10987
10971
|
options?: {
|
|
10988
10972
|
safety_checks?: {
|
|
10989
10973
|
enabled?: boolean;
|
|
@@ -11004,14 +10988,14 @@ interface MinimaxH3MaxTurboImageToVideoResponse {
|
|
|
11004
10988
|
result: TurboImageToVideoHailuo03Output;
|
|
11005
10989
|
}
|
|
11006
10990
|
interface TurboImageToVideoHailuo03Output {
|
|
11007
|
-
|
|
10991
|
+
expanded_prompt?: string | unknown;
|
|
11008
10992
|
video: {
|
|
11009
10993
|
content_type?: string | unknown;
|
|
11010
10994
|
url: string;
|
|
11011
10995
|
file_size?: number | unknown;
|
|
11012
10996
|
file_name?: string | unknown;
|
|
11013
10997
|
};
|
|
11014
|
-
|
|
10998
|
+
timings?: Record<string, number> | unknown;
|
|
11015
10999
|
}
|
|
11016
11000
|
|
|
11017
11001
|
interface AifiltersCommand {
|
|
@@ -11024,22 +11008,22 @@ interface AifiltersCommand {
|
|
|
11024
11008
|
drop_cond_tokens_prob?: number;
|
|
11025
11009
|
seed?: number;
|
|
11026
11010
|
output_format?: "JPEG" | "PNG" | "HEIC" | "WEBP";
|
|
11027
|
-
options?: GenAIOptions$
|
|
11011
|
+
options?: GenAIOptions$3;
|
|
11028
11012
|
model?: "model-qwent-image-edit-lightning-aifilters";
|
|
11029
11013
|
}
|
|
11030
|
-
interface GenAIOptions$
|
|
11031
|
-
safety_checks?: SafetyChecksOptions$
|
|
11032
|
-
drive?: DriveOptions$
|
|
11014
|
+
interface GenAIOptions$3 {
|
|
11015
|
+
safety_checks?: SafetyChecksOptions$3;
|
|
11016
|
+
drive?: DriveOptions$3;
|
|
11033
11017
|
}
|
|
11034
|
-
interface SafetyChecksOptions$
|
|
11018
|
+
interface SafetyChecksOptions$3 {
|
|
11035
11019
|
enabled?: boolean;
|
|
11036
11020
|
}
|
|
11037
|
-
interface DriveOptions$
|
|
11021
|
+
interface DriveOptions$3 {
|
|
11038
11022
|
name: string;
|
|
11039
11023
|
attributes?: Record<string, unknown>;
|
|
11040
|
-
folder?: DriveFolderOptions$
|
|
11024
|
+
folder?: DriveFolderOptions$3;
|
|
11041
11025
|
}
|
|
11042
|
-
interface DriveFolderOptions$
|
|
11026
|
+
interface DriveFolderOptions$3 {
|
|
11043
11027
|
path?: string;
|
|
11044
11028
|
id?: string;
|
|
11045
11029
|
}
|
|
@@ -11067,21 +11051,21 @@ interface MinimaxH3MaxVideoGenerationCommand {
|
|
|
11067
11051
|
reference_audio_urls?: string[];
|
|
11068
11052
|
seed?: number;
|
|
11069
11053
|
enable_safety_checker?: boolean;
|
|
11070
|
-
options?: GenAIOptions$
|
|
11054
|
+
options?: GenAIOptions$2;
|
|
11071
11055
|
}
|
|
11072
|
-
interface GenAIOptions$
|
|
11073
|
-
safety_checks?: SafetyChecksOptions$
|
|
11074
|
-
drive?: DriveOptions$
|
|
11056
|
+
interface GenAIOptions$2 {
|
|
11057
|
+
safety_checks?: SafetyChecksOptions$2;
|
|
11058
|
+
drive?: DriveOptions$2;
|
|
11075
11059
|
}
|
|
11076
|
-
interface SafetyChecksOptions$
|
|
11060
|
+
interface SafetyChecksOptions$2 {
|
|
11077
11061
|
enabled?: boolean;
|
|
11078
11062
|
}
|
|
11079
|
-
interface DriveOptions$
|
|
11063
|
+
interface DriveOptions$2 {
|
|
11080
11064
|
name: string;
|
|
11081
11065
|
attributes?: Record<string, unknown>;
|
|
11082
|
-
folder?: DriveFolderOptions$
|
|
11066
|
+
folder?: DriveFolderOptions$2;
|
|
11083
11067
|
}
|
|
11084
|
-
interface DriveFolderOptions$
|
|
11068
|
+
interface DriveFolderOptions$2 {
|
|
11085
11069
|
path?: string;
|
|
11086
11070
|
id?: string;
|
|
11087
11071
|
}
|
|
@@ -11101,8 +11085,69 @@ interface FluxVideoEditCommand {
|
|
|
11101
11085
|
videoUrl: string;
|
|
11102
11086
|
prompt: string;
|
|
11103
11087
|
safetyTolerance?: number;
|
|
11088
|
+
options?: GenAIOptions$1;
|
|
11089
|
+
}
|
|
11090
|
+
interface GenAIOptions$1 {
|
|
11091
|
+
safety_checks?: SafetyChecksOptions$1;
|
|
11092
|
+
drive?: DriveOptions$1;
|
|
11093
|
+
}
|
|
11094
|
+
interface SafetyChecksOptions$1 {
|
|
11095
|
+
enabled?: boolean;
|
|
11096
|
+
}
|
|
11097
|
+
interface DriveOptions$1 {
|
|
11098
|
+
name: string;
|
|
11099
|
+
attributes?: Record<string, unknown>;
|
|
11100
|
+
folder?: DriveFolderOptions$1;
|
|
11101
|
+
}
|
|
11102
|
+
interface DriveFolderOptions$1 {
|
|
11103
|
+
path?: string;
|
|
11104
|
+
id?: string;
|
|
11105
|
+
}
|
|
11106
|
+
interface FluxVideoEditResult {
|
|
11107
|
+
result: EditedVideoResult;
|
|
11108
|
+
}
|
|
11109
|
+
interface EditedVideoResult {
|
|
11110
|
+
url: string;
|
|
11111
|
+
mimeType?: string;
|
|
11112
|
+
driveFile?: Record<string, unknown>;
|
|
11113
|
+
}
|
|
11114
|
+
|
|
11115
|
+
interface AvatarFaceDetectionCommand {
|
|
11116
|
+
images: string[];
|
|
11117
|
+
}
|
|
11118
|
+
interface AvatarFaceDetectionResponse {
|
|
11119
|
+
id: string;
|
|
11120
|
+
status: "ACCEPTED" | "IN_PROGRESS" | "COMPLETED" | "FAILED";
|
|
11121
|
+
result: AvatarFaceDetectionResultData;
|
|
11122
|
+
}
|
|
11123
|
+
interface AvatarFaceDetectionResultData {
|
|
11124
|
+
status: "VALID" | "IMAGE_NOT_VALID";
|
|
11125
|
+
num_faces: number;
|
|
11126
|
+
error_message?: string;
|
|
11127
|
+
}
|
|
11128
|
+
|
|
11129
|
+
interface VideoEnhanceCommand {
|
|
11130
|
+
video_url: string;
|
|
11131
|
+
trim?: VideoEnhanceTrim;
|
|
11132
|
+
output_resolution?: "no_upscale" | "source_size" | "480p" | "720p" | "1080p" | "4k";
|
|
11133
|
+
upscale_quality?: "standard" | "high";
|
|
11134
|
+
smooth_motion?: VideoEnhanceSmoothMotion;
|
|
11135
|
+
face_enhance?: VideoEnhanceFace;
|
|
11136
|
+
model?: "picsart-video-enhance" | "preview-picsart-video-enhance";
|
|
11104
11137
|
options?: GenAIOptions;
|
|
11105
11138
|
}
|
|
11139
|
+
interface VideoEnhanceTrim {
|
|
11140
|
+
start_s?: number;
|
|
11141
|
+
end_s: number;
|
|
11142
|
+
}
|
|
11143
|
+
interface VideoEnhanceSmoothMotion {
|
|
11144
|
+
target_fps?: number;
|
|
11145
|
+
slow_motion_factor?: number;
|
|
11146
|
+
}
|
|
11147
|
+
interface VideoEnhanceFace {
|
|
11148
|
+
mode?: "enhance" | "enhance_v14" | "blemish_removal" | "eye_bag_removal" | "skin_smoothing" | "wrinkle_removal";
|
|
11149
|
+
strength?: number;
|
|
11150
|
+
}
|
|
11106
11151
|
interface GenAIOptions {
|
|
11107
11152
|
safety_checks?: SafetyChecksOptions;
|
|
11108
11153
|
drive?: DriveOptions;
|
|
@@ -11119,12 +11164,15 @@ interface DriveFolderOptions {
|
|
|
11119
11164
|
path?: string;
|
|
11120
11165
|
id?: string;
|
|
11121
11166
|
}
|
|
11122
|
-
interface
|
|
11123
|
-
|
|
11167
|
+
interface VideoEnhanceResponse {
|
|
11168
|
+
id: string;
|
|
11169
|
+
status: "ACCEPTED" | "IN_PROGRESS" | "COMPLETED" | "FAILED";
|
|
11170
|
+
result: VideoEnhanceResultData;
|
|
11124
11171
|
}
|
|
11125
|
-
interface
|
|
11172
|
+
interface VideoEnhanceResultData {
|
|
11126
11173
|
url: string;
|
|
11127
|
-
|
|
11174
|
+
output_fps?: number;
|
|
11175
|
+
output_resolution?: string;
|
|
11128
11176
|
driveFile?: Record<string, unknown>;
|
|
11129
11177
|
}
|
|
11130
11178
|
|
|
@@ -11913,10 +11961,6 @@ interface WorkflowTypes {
|
|
|
11913
11961
|
params: Happyhorse11ReferenceToVideoCommand;
|
|
11914
11962
|
result: Happyhorse11ReferenceToVideoResponse;
|
|
11915
11963
|
};
|
|
11916
|
-
'pcp/v1/qwen-image-edit-angle': {
|
|
11917
|
-
params: QwenImageEditAngleCommand;
|
|
11918
|
-
result: QwenImageEditAngleResponse;
|
|
11919
|
-
};
|
|
11920
11964
|
'pcp/v1/lama-inpainting': {
|
|
11921
11965
|
params: LamaInpaintingCommand;
|
|
11922
11966
|
result: LamaInpaintingResponse;
|
|
@@ -12205,6 +12249,14 @@ interface WorkflowTypes {
|
|
|
12205
12249
|
params: FluxVideoEditCommand;
|
|
12206
12250
|
result: FluxVideoEditResult;
|
|
12207
12251
|
};
|
|
12252
|
+
'pcp/v1/avatar/face-detection': {
|
|
12253
|
+
params: AvatarFaceDetectionCommand;
|
|
12254
|
+
result: AvatarFaceDetectionResponse;
|
|
12255
|
+
};
|
|
12256
|
+
'pcp/v1/video-enhance': {
|
|
12257
|
+
params: VideoEnhanceCommand;
|
|
12258
|
+
result: VideoEnhanceResponse;
|
|
12259
|
+
};
|
|
12208
12260
|
}
|
|
12209
12261
|
|
|
12210
12262
|
export type { WorkflowTypes };
|