magic_hour 0.9.5__py3-none-any.whl → 0.44.0__py3-none-any.whl
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.
- magic_hour/README.md +34 -0
- magic_hour/__init__.py +1 -1
- magic_hour/client.py +8 -17
- magic_hour/environment.py +13 -1
- magic_hour/helpers/__init__.py +4 -0
- magic_hour/helpers/download.py +77 -0
- magic_hour/helpers/logger.py +8 -0
- magic_hour/resources/v1/README.md +32 -0
- magic_hour/resources/v1/ai_clothes_changer/README.md +94 -5
- magic_hour/resources/v1/ai_clothes_changer/client.py +161 -16
- magic_hour/resources/v1/ai_face_editor/README.md +195 -0
- magic_hour/resources/v1/ai_face_editor/__init__.py +4 -0
- magic_hour/resources/v1/ai_face_editor/client.py +324 -0
- magic_hour/resources/v1/ai_gif_generator/README.md +116 -0
- magic_hour/resources/v1/ai_gif_generator/__init__.py +4 -0
- magic_hour/resources/v1/ai_gif_generator/client.py +257 -0
- magic_hour/resources/v1/ai_headshot_generator/README.md +81 -3
- magic_hour/resources/v1/ai_headshot_generator/client.py +167 -18
- magic_hour/resources/v1/ai_image_editor/README.md +125 -0
- magic_hour/resources/v1/ai_image_editor/__init__.py +4 -0
- magic_hour/resources/v1/ai_image_editor/client.py +290 -0
- magic_hour/resources/v1/ai_image_generator/README.md +99 -5
- magic_hour/resources/v1/ai_image_generator/client.py +170 -24
- magic_hour/resources/v1/ai_image_upscaler/README.md +89 -3
- magic_hour/resources/v1/ai_image_upscaler/client.py +173 -20
- magic_hour/resources/v1/ai_meme_generator/README.md +129 -0
- magic_hour/resources/v1/ai_meme_generator/__init__.py +4 -0
- magic_hour/resources/v1/ai_meme_generator/client.py +253 -0
- magic_hour/resources/v1/ai_photo_editor/README.md +119 -4
- magic_hour/resources/v1/ai_photo_editor/client.py +199 -18
- magic_hour/resources/v1/ai_qr_code_generator/README.md +84 -3
- magic_hour/resources/v1/ai_qr_code_generator/client.py +140 -18
- magic_hour/resources/v1/ai_talking_photo/README.md +137 -0
- magic_hour/resources/v1/ai_talking_photo/__init__.py +4 -0
- magic_hour/resources/v1/ai_talking_photo/client.py +326 -0
- magic_hour/resources/v1/ai_voice_cloner/README.md +62 -0
- magic_hour/resources/v1/ai_voice_cloner/__init__.py +4 -0
- magic_hour/resources/v1/ai_voice_cloner/client.py +272 -0
- magic_hour/resources/v1/ai_voice_generator/README.md +112 -0
- magic_hour/resources/v1/ai_voice_generator/__init__.py +4 -0
- magic_hour/resources/v1/ai_voice_generator/client.py +241 -0
- magic_hour/resources/v1/animation/README.md +128 -6
- magic_hour/resources/v1/animation/client.py +247 -22
- magic_hour/resources/v1/audio_projects/README.md +135 -0
- magic_hour/resources/v1/audio_projects/__init__.py +12 -0
- magic_hour/resources/v1/audio_projects/client.py +310 -0
- magic_hour/resources/v1/audio_projects/client_test.py +520 -0
- magic_hour/resources/v1/auto_subtitle_generator/README.md +128 -0
- magic_hour/resources/v1/auto_subtitle_generator/__init__.py +4 -0
- magic_hour/resources/v1/auto_subtitle_generator/client.py +346 -0
- magic_hour/resources/v1/client.py +75 -1
- magic_hour/resources/v1/face_detection/README.md +157 -0
- magic_hour/resources/v1/face_detection/__init__.py +12 -0
- magic_hour/resources/v1/face_detection/client.py +380 -0
- magic_hour/resources/v1/face_swap/README.md +137 -9
- magic_hour/resources/v1/face_swap/client.py +329 -38
- magic_hour/resources/v1/face_swap_photo/README.md +118 -3
- magic_hour/resources/v1/face_swap_photo/client.py +199 -14
- magic_hour/resources/v1/files/README.md +39 -0
- magic_hour/resources/v1/files/client.py +351 -1
- magic_hour/resources/v1/files/client_test.py +414 -0
- magic_hour/resources/v1/files/upload_urls/README.md +38 -17
- magic_hour/resources/v1/files/upload_urls/client.py +38 -34
- magic_hour/resources/v1/image_background_remover/README.md +96 -5
- magic_hour/resources/v1/image_background_remover/client.py +151 -16
- magic_hour/resources/v1/image_projects/README.md +82 -10
- magic_hour/resources/v1/image_projects/__init__.py +10 -2
- magic_hour/resources/v1/image_projects/client.py +154 -16
- magic_hour/resources/v1/image_projects/client_test.py +527 -0
- magic_hour/resources/v1/image_to_video/README.md +96 -11
- magic_hour/resources/v1/image_to_video/client.py +282 -38
- magic_hour/resources/v1/lip_sync/README.md +112 -9
- magic_hour/resources/v1/lip_sync/client.py +288 -34
- magic_hour/resources/v1/photo_colorizer/README.md +107 -0
- magic_hour/resources/v1/photo_colorizer/__init__.py +4 -0
- magic_hour/resources/v1/photo_colorizer/client.py +248 -0
- magic_hour/resources/v1/text_to_video/README.md +96 -7
- magic_hour/resources/v1/text_to_video/client.py +204 -18
- magic_hour/resources/v1/video_projects/README.md +81 -9
- magic_hour/resources/v1/video_projects/__init__.py +10 -2
- magic_hour/resources/v1/video_projects/client.py +151 -14
- magic_hour/resources/v1/video_projects/client_test.py +527 -0
- magic_hour/resources/v1/video_to_video/README.md +119 -15
- magic_hour/resources/v1/video_to_video/client.py +299 -46
- magic_hour/types/models/__init__.py +92 -56
- magic_hour/types/models/v1_ai_clothes_changer_create_response.py +33 -0
- magic_hour/types/models/v1_ai_face_editor_create_response.py +33 -0
- magic_hour/types/models/v1_ai_gif_generator_create_response.py +33 -0
- magic_hour/types/models/v1_ai_headshot_generator_create_response.py +33 -0
- magic_hour/types/models/v1_ai_image_editor_create_response.py +33 -0
- magic_hour/types/models/v1_ai_image_generator_create_response.py +33 -0
- magic_hour/types/models/v1_ai_image_upscaler_create_response.py +33 -0
- magic_hour/types/models/v1_ai_meme_generator_create_response.py +33 -0
- magic_hour/types/models/v1_ai_photo_editor_create_response.py +33 -0
- magic_hour/types/models/v1_ai_qr_code_generator_create_response.py +33 -0
- magic_hour/types/models/v1_ai_talking_photo_create_response.py +35 -0
- magic_hour/types/models/v1_ai_voice_cloner_create_response.py +27 -0
- magic_hour/types/models/v1_ai_voice_generator_create_response.py +27 -0
- magic_hour/types/models/v1_animation_create_response.py +35 -0
- magic_hour/types/models/v1_audio_projects_get_response.py +72 -0
- magic_hour/types/models/v1_audio_projects_get_response_downloads_item.py +19 -0
- magic_hour/types/models/{get_v1_image_projects_id_response_error.py → v1_audio_projects_get_response_error.py} +2 -2
- magic_hour/types/models/v1_auto_subtitle_generator_create_response.py +35 -0
- magic_hour/types/models/v1_face_detection_create_response.py +25 -0
- magic_hour/types/models/v1_face_detection_get_response.py +45 -0
- magic_hour/types/models/v1_face_detection_get_response_faces_item.py +25 -0
- magic_hour/types/models/v1_face_swap_create_response.py +35 -0
- magic_hour/types/models/v1_face_swap_photo_create_response.py +33 -0
- magic_hour/types/models/v1_files_upload_urls_create_response.py +24 -0
- magic_hour/types/models/{post_v1_files_upload_urls_response_items_item.py → v1_files_upload_urls_create_response_items_item.py} +2 -2
- magic_hour/types/models/v1_image_background_remover_create_response.py +33 -0
- magic_hour/types/models/{get_v1_image_projects_id_response.py → v1_image_projects_get_response.py} +20 -18
- magic_hour/types/models/{get_v1_video_projects_id_response_downloads_item.py → v1_image_projects_get_response_downloads_item.py} +1 -1
- magic_hour/types/models/{get_v1_video_projects_id_response_error.py → v1_image_projects_get_response_error.py} +2 -2
- magic_hour/types/models/v1_image_to_video_create_response.py +35 -0
- magic_hour/types/models/v1_lip_sync_create_response.py +35 -0
- magic_hour/types/models/v1_photo_colorizer_create_response.py +33 -0
- magic_hour/types/models/v1_text_to_video_create_response.py +35 -0
- magic_hour/types/models/{get_v1_video_projects_id_response.py → v1_video_projects_get_response.py} +26 -23
- magic_hour/types/models/{get_v1_video_projects_id_response_download.py → v1_video_projects_get_response_download.py} +1 -1
- magic_hour/types/models/{get_v1_image_projects_id_response_downloads_item.py → v1_video_projects_get_response_downloads_item.py} +1 -1
- magic_hour/types/models/v1_video_projects_get_response_error.py +25 -0
- magic_hour/types/models/v1_video_to_video_create_response.py +35 -0
- magic_hour/types/params/__init__.py +422 -176
- magic_hour/types/params/v1_ai_clothes_changer_create_body.py +40 -0
- magic_hour/types/params/v1_ai_clothes_changer_create_body_assets.py +58 -0
- magic_hour/types/params/v1_ai_clothes_changer_generate_body_assets.py +33 -0
- magic_hour/types/params/v1_ai_face_editor_create_body.py +52 -0
- magic_hour/types/params/v1_ai_face_editor_create_body_assets.py +33 -0
- magic_hour/types/params/v1_ai_face_editor_create_body_style.py +137 -0
- magic_hour/types/params/v1_ai_face_editor_generate_body_assets.py +17 -0
- magic_hour/types/params/v1_ai_gif_generator_create_body.py +47 -0
- magic_hour/types/params/{post_v1_ai_image_generator_body_style.py → v1_ai_gif_generator_create_body_style.py} +5 -5
- magic_hour/types/params/v1_ai_headshot_generator_create_body.py +49 -0
- magic_hour/types/params/v1_ai_headshot_generator_create_body_assets.py +33 -0
- magic_hour/types/params/v1_ai_headshot_generator_create_body_style.py +27 -0
- magic_hour/types/params/v1_ai_headshot_generator_generate_body_assets.py +17 -0
- magic_hour/types/params/v1_ai_image_editor_create_body.py +49 -0
- magic_hour/types/params/v1_ai_image_editor_create_body_assets.py +47 -0
- magic_hour/types/params/v1_ai_image_editor_create_body_style.py +41 -0
- magic_hour/types/params/v1_ai_image_editor_generate_body_assets.py +28 -0
- magic_hour/types/params/{post_v1_ai_image_generator_body.py → v1_ai_image_generator_create_body.py} +17 -11
- magic_hour/types/params/v1_ai_image_generator_create_body_style.py +127 -0
- magic_hour/types/params/v1_ai_image_upscaler_create_body.py +59 -0
- magic_hour/types/params/v1_ai_image_upscaler_create_body_assets.py +33 -0
- magic_hour/types/params/{post_v1_ai_image_upscaler_body_style.py → v1_ai_image_upscaler_create_body_style.py} +4 -4
- magic_hour/types/params/v1_ai_image_upscaler_generate_body_assets.py +17 -0
- magic_hour/types/params/v1_ai_meme_generator_create_body.py +37 -0
- magic_hour/types/params/v1_ai_meme_generator_create_body_style.py +73 -0
- magic_hour/types/params/{post_v1_ai_photo_editor_body.py → v1_ai_photo_editor_create_body.py} +15 -15
- magic_hour/types/params/v1_ai_photo_editor_create_body_assets.py +33 -0
- magic_hour/types/params/{post_v1_ai_photo_editor_body_style.py → v1_ai_photo_editor_create_body_style.py} +20 -4
- magic_hour/types/params/v1_ai_photo_editor_generate_body_assets.py +17 -0
- magic_hour/types/params/v1_ai_qr_code_generator_create_body.py +45 -0
- magic_hour/types/params/{post_v1_ai_qr_code_generator_body_style.py → v1_ai_qr_code_generator_create_body_style.py} +4 -4
- magic_hour/types/params/v1_ai_talking_photo_create_body.py +68 -0
- magic_hour/types/params/v1_ai_talking_photo_create_body_assets.py +46 -0
- magic_hour/types/params/v1_ai_talking_photo_create_body_style.py +44 -0
- magic_hour/types/params/v1_ai_talking_photo_generate_body_assets.py +26 -0
- magic_hour/types/params/v1_ai_voice_cloner_create_body.py +49 -0
- magic_hour/types/params/v1_ai_voice_cloner_create_body_assets.py +33 -0
- magic_hour/types/params/v1_ai_voice_cloner_create_body_style.py +28 -0
- magic_hour/types/params/v1_ai_voice_cloner_generate_body_assets.py +28 -0
- magic_hour/types/params/v1_ai_voice_generator_create_body.py +40 -0
- magic_hour/types/params/v1_ai_voice_generator_create_body_style.py +440 -0
- magic_hour/types/params/{post_v1_animation_body.py → v1_animation_create_body.py} +16 -16
- magic_hour/types/params/{post_v1_animation_body_assets.py → v1_animation_create_body_assets.py} +15 -5
- magic_hour/types/params/{post_v1_animation_body_style.py → v1_animation_create_body_style.py} +13 -10
- magic_hour/types/params/v1_animation_generate_body_assets.py +39 -0
- magic_hour/types/params/v1_auto_subtitle_generator_create_body.py +78 -0
- magic_hour/types/params/v1_auto_subtitle_generator_create_body_assets.py +33 -0
- magic_hour/types/params/v1_auto_subtitle_generator_create_body_style.py +56 -0
- magic_hour/types/params/v1_auto_subtitle_generator_create_body_style_custom_config.py +86 -0
- magic_hour/types/params/v1_auto_subtitle_generator_generate_body_assets.py +17 -0
- magic_hour/types/params/v1_face_detection_create_body.py +44 -0
- magic_hour/types/params/v1_face_detection_create_body_assets.py +33 -0
- magic_hour/types/params/v1_face_detection_generate_body_assets.py +17 -0
- magic_hour/types/params/v1_face_swap_create_body.py +92 -0
- magic_hour/types/params/v1_face_swap_create_body_assets.py +91 -0
- magic_hour/types/params/v1_face_swap_create_body_assets_face_mappings_item.py +44 -0
- magic_hour/types/params/v1_face_swap_create_body_style.py +33 -0
- magic_hour/types/params/v1_face_swap_generate_body_assets.py +56 -0
- magic_hour/types/params/v1_face_swap_generate_body_assets_face_mappings_item.py +25 -0
- magic_hour/types/params/v1_face_swap_photo_create_body.py +40 -0
- magic_hour/types/params/v1_face_swap_photo_create_body_assets.py +76 -0
- magic_hour/types/params/v1_face_swap_photo_create_body_assets_face_mappings_item.py +44 -0
- magic_hour/types/params/v1_face_swap_photo_generate_body_assets.py +47 -0
- magic_hour/types/params/v1_face_swap_photo_generate_body_assets_face_mappings_item.py +25 -0
- magic_hour/types/params/v1_files_upload_urls_create_body.py +36 -0
- magic_hour/types/params/v1_files_upload_urls_create_body_items_item.py +38 -0
- magic_hour/types/params/v1_image_background_remover_create_body.py +40 -0
- magic_hour/types/params/v1_image_background_remover_create_body_assets.py +49 -0
- magic_hour/types/params/v1_image_background_remover_generate_body_assets.py +27 -0
- magic_hour/types/params/v1_image_to_video_create_body.py +101 -0
- magic_hour/types/params/v1_image_to_video_create_body_assets.py +33 -0
- magic_hour/types/params/v1_image_to_video_create_body_style.py +53 -0
- magic_hour/types/params/v1_image_to_video_generate_body_assets.py +17 -0
- magic_hour/types/params/v1_lip_sync_create_body.py +100 -0
- magic_hour/types/params/{post_v1_lip_sync_body_assets.py → v1_lip_sync_create_body_assets.py} +15 -5
- magic_hour/types/params/v1_lip_sync_create_body_style.py +37 -0
- magic_hour/types/params/v1_lip_sync_generate_body_assets.py +36 -0
- magic_hour/types/params/v1_photo_colorizer_create_body.py +40 -0
- magic_hour/types/params/v1_photo_colorizer_create_body_assets.py +33 -0
- magic_hour/types/params/v1_photo_colorizer_generate_body_assets.py +17 -0
- magic_hour/types/params/v1_text_to_video_create_body.py +78 -0
- magic_hour/types/params/v1_text_to_video_create_body_style.py +43 -0
- magic_hour/types/params/v1_video_to_video_create_body.py +101 -0
- magic_hour/types/params/{post_v1_video_to_video_body_assets.py → v1_video_to_video_create_body_assets.py} +9 -4
- magic_hour/types/params/{post_v1_video_to_video_body_style.py → v1_video_to_video_create_body_style.py} +68 -26
- magic_hour/types/params/v1_video_to_video_generate_body_assets.py +27 -0
- magic_hour-0.44.0.dist-info/METADATA +328 -0
- magic_hour-0.44.0.dist-info/RECORD +231 -0
- magic_hour/core/__init__.py +0 -52
- magic_hour/core/api_error.py +0 -56
- magic_hour/core/auth.py +0 -314
- magic_hour/core/base_client.py +0 -618
- magic_hour/core/binary_response.py +0 -23
- magic_hour/core/query.py +0 -106
- magic_hour/core/request.py +0 -156
- magic_hour/core/response.py +0 -293
- magic_hour/core/type_utils.py +0 -28
- magic_hour/core/utils.py +0 -55
- magic_hour/types/models/post_v1_ai_clothes_changer_response.py +0 -25
- magic_hour/types/models/post_v1_ai_headshot_generator_response.py +0 -25
- magic_hour/types/models/post_v1_ai_image_generator_response.py +0 -25
- magic_hour/types/models/post_v1_ai_image_upscaler_response.py +0 -25
- magic_hour/types/models/post_v1_ai_photo_editor_response.py +0 -25
- magic_hour/types/models/post_v1_ai_qr_code_generator_response.py +0 -25
- magic_hour/types/models/post_v1_animation_response.py +0 -25
- magic_hour/types/models/post_v1_face_swap_photo_response.py +0 -25
- magic_hour/types/models/post_v1_face_swap_response.py +0 -25
- magic_hour/types/models/post_v1_files_upload_urls_response.py +0 -21
- magic_hour/types/models/post_v1_image_background_remover_response.py +0 -25
- magic_hour/types/models/post_v1_image_to_video_response.py +0 -25
- magic_hour/types/models/post_v1_lip_sync_response.py +0 -25
- magic_hour/types/models/post_v1_text_to_video_response.py +0 -25
- magic_hour/types/models/post_v1_video_to_video_response.py +0 -25
- magic_hour/types/params/post_v1_ai_clothes_changer_body.py +0 -40
- magic_hour/types/params/post_v1_ai_clothes_changer_body_assets.py +0 -45
- magic_hour/types/params/post_v1_ai_headshot_generator_body.py +0 -40
- magic_hour/types/params/post_v1_ai_headshot_generator_body_assets.py +0 -28
- magic_hour/types/params/post_v1_ai_image_upscaler_body.py +0 -57
- magic_hour/types/params/post_v1_ai_image_upscaler_body_assets.py +0 -28
- magic_hour/types/params/post_v1_ai_photo_editor_body_assets.py +0 -28
- magic_hour/types/params/post_v1_ai_qr_code_generator_body.py +0 -45
- magic_hour/types/params/post_v1_face_swap_body.py +0 -72
- magic_hour/types/params/post_v1_face_swap_body_assets.py +0 -52
- magic_hour/types/params/post_v1_face_swap_photo_body.py +0 -40
- magic_hour/types/params/post_v1_face_swap_photo_body_assets.py +0 -36
- magic_hour/types/params/post_v1_files_upload_urls_body.py +0 -31
- magic_hour/types/params/post_v1_files_upload_urls_body_items_item.py +0 -38
- magic_hour/types/params/post_v1_image_background_remover_body.py +0 -40
- magic_hour/types/params/post_v1_image_background_remover_body_assets.py +0 -28
- magic_hour/types/params/post_v1_image_to_video_body.py +0 -73
- magic_hour/types/params/post_v1_image_to_video_body_assets.py +0 -28
- magic_hour/types/params/post_v1_image_to_video_body_style.py +0 -37
- magic_hour/types/params/post_v1_lip_sync_body.py +0 -80
- magic_hour/types/params/post_v1_text_to_video_body.py +0 -57
- magic_hour/types/params/post_v1_text_to_video_body_style.py +0 -28
- magic_hour/types/params/post_v1_video_to_video_body.py +0 -93
- magic_hour-0.9.5.dist-info/METADATA +0 -133
- magic_hour-0.9.5.dist-info/RECORD +0 -132
- {magic_hour-0.9.5.dist-info → magic_hour-0.44.0.dist-info}/LICENSE +0 -0
- {magic_hour-0.9.5.dist-info → magic_hour-0.44.0.dist-info}/WHEEL +0 -0
|
@@ -1,205 +1,451 @@
|
|
|
1
|
-
from .
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
)
|
|
5
|
-
from .post_v1_ai_clothes_changer_body_assets import (
|
|
6
|
-
PostV1AiClothesChangerBodyAssets,
|
|
7
|
-
_SerializerPostV1AiClothesChangerBodyAssets,
|
|
8
|
-
)
|
|
9
|
-
from .post_v1_ai_headshot_generator_body import (
|
|
10
|
-
PostV1AiHeadshotGeneratorBody,
|
|
11
|
-
_SerializerPostV1AiHeadshotGeneratorBody,
|
|
12
|
-
)
|
|
13
|
-
from .post_v1_ai_headshot_generator_body_assets import (
|
|
14
|
-
PostV1AiHeadshotGeneratorBodyAssets,
|
|
15
|
-
_SerializerPostV1AiHeadshotGeneratorBodyAssets,
|
|
16
|
-
)
|
|
17
|
-
from .post_v1_ai_image_generator_body import (
|
|
18
|
-
PostV1AiImageGeneratorBody,
|
|
19
|
-
_SerializerPostV1AiImageGeneratorBody,
|
|
20
|
-
)
|
|
21
|
-
from .post_v1_ai_image_generator_body_style import (
|
|
22
|
-
PostV1AiImageGeneratorBodyStyle,
|
|
23
|
-
_SerializerPostV1AiImageGeneratorBodyStyle,
|
|
24
|
-
)
|
|
25
|
-
from .post_v1_ai_image_upscaler_body import (
|
|
26
|
-
PostV1AiImageUpscalerBody,
|
|
27
|
-
_SerializerPostV1AiImageUpscalerBody,
|
|
28
|
-
)
|
|
29
|
-
from .post_v1_ai_image_upscaler_body_assets import (
|
|
30
|
-
PostV1AiImageUpscalerBodyAssets,
|
|
31
|
-
_SerializerPostV1AiImageUpscalerBodyAssets,
|
|
1
|
+
from .v1_ai_clothes_changer_create_body import (
|
|
2
|
+
V1AiClothesChangerCreateBody,
|
|
3
|
+
_SerializerV1AiClothesChangerCreateBody,
|
|
32
4
|
)
|
|
33
|
-
from .
|
|
34
|
-
|
|
35
|
-
|
|
5
|
+
from .v1_ai_clothes_changer_create_body_assets import (
|
|
6
|
+
V1AiClothesChangerCreateBodyAssets,
|
|
7
|
+
_SerializerV1AiClothesChangerCreateBodyAssets,
|
|
36
8
|
)
|
|
37
|
-
from .
|
|
38
|
-
|
|
39
|
-
_SerializerPostV1AiPhotoEditorBody,
|
|
9
|
+
from .v1_ai_clothes_changer_generate_body_assets import (
|
|
10
|
+
V1AiClothesChangerGenerateBodyAssets,
|
|
40
11
|
)
|
|
41
|
-
from .
|
|
42
|
-
|
|
43
|
-
|
|
12
|
+
from .v1_ai_face_editor_create_body import (
|
|
13
|
+
V1AiFaceEditorCreateBody,
|
|
14
|
+
_SerializerV1AiFaceEditorCreateBody,
|
|
44
15
|
)
|
|
45
|
-
from .
|
|
46
|
-
|
|
47
|
-
|
|
16
|
+
from .v1_ai_face_editor_create_body_assets import (
|
|
17
|
+
V1AiFaceEditorCreateBodyAssets,
|
|
18
|
+
_SerializerV1AiFaceEditorCreateBodyAssets,
|
|
48
19
|
)
|
|
49
|
-
from .
|
|
50
|
-
|
|
51
|
-
|
|
20
|
+
from .v1_ai_face_editor_create_body_style import (
|
|
21
|
+
V1AiFaceEditorCreateBodyStyle,
|
|
22
|
+
_SerializerV1AiFaceEditorCreateBodyStyle,
|
|
52
23
|
)
|
|
53
|
-
from .
|
|
54
|
-
|
|
55
|
-
|
|
24
|
+
from .v1_ai_face_editor_generate_body_assets import V1AiFaceEditorGenerateBodyAssets
|
|
25
|
+
from .v1_ai_gif_generator_create_body import (
|
|
26
|
+
V1AiGifGeneratorCreateBody,
|
|
27
|
+
_SerializerV1AiGifGeneratorCreateBody,
|
|
28
|
+
)
|
|
29
|
+
from .v1_ai_gif_generator_create_body_style import (
|
|
30
|
+
V1AiGifGeneratorCreateBodyStyle,
|
|
31
|
+
_SerializerV1AiGifGeneratorCreateBodyStyle,
|
|
32
|
+
)
|
|
33
|
+
from .v1_ai_headshot_generator_create_body import (
|
|
34
|
+
V1AiHeadshotGeneratorCreateBody,
|
|
35
|
+
_SerializerV1AiHeadshotGeneratorCreateBody,
|
|
36
|
+
)
|
|
37
|
+
from .v1_ai_headshot_generator_create_body_assets import (
|
|
38
|
+
V1AiHeadshotGeneratorCreateBodyAssets,
|
|
39
|
+
_SerializerV1AiHeadshotGeneratorCreateBodyAssets,
|
|
40
|
+
)
|
|
41
|
+
from .v1_ai_headshot_generator_create_body_style import (
|
|
42
|
+
V1AiHeadshotGeneratorCreateBodyStyle,
|
|
43
|
+
_SerializerV1AiHeadshotGeneratorCreateBodyStyle,
|
|
44
|
+
)
|
|
45
|
+
from .v1_ai_headshot_generator_generate_body_assets import (
|
|
46
|
+
V1AiHeadshotGeneratorGenerateBodyAssets,
|
|
56
47
|
)
|
|
57
|
-
from .
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
_SerializerPostV1AnimationBodyAssets,
|
|
48
|
+
from .v1_ai_image_editor_create_body import (
|
|
49
|
+
V1AiImageEditorCreateBody,
|
|
50
|
+
_SerializerV1AiImageEditorCreateBody,
|
|
61
51
|
)
|
|
62
|
-
from .
|
|
63
|
-
|
|
64
|
-
|
|
52
|
+
from .v1_ai_image_editor_create_body_assets import (
|
|
53
|
+
V1AiImageEditorCreateBodyAssets,
|
|
54
|
+
_SerializerV1AiImageEditorCreateBodyAssets,
|
|
65
55
|
)
|
|
66
|
-
from .
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
_SerializerPostV1FaceSwapBodyAssets,
|
|
56
|
+
from .v1_ai_image_editor_create_body_style import (
|
|
57
|
+
V1AiImageEditorCreateBodyStyle,
|
|
58
|
+
_SerializerV1AiImageEditorCreateBodyStyle,
|
|
70
59
|
)
|
|
71
|
-
from .
|
|
72
|
-
|
|
73
|
-
|
|
60
|
+
from .v1_ai_image_editor_generate_body_assets import V1AiImageEditorGenerateBodyAssets
|
|
61
|
+
from .v1_ai_image_generator_create_body import (
|
|
62
|
+
V1AiImageGeneratorCreateBody,
|
|
63
|
+
_SerializerV1AiImageGeneratorCreateBody,
|
|
64
|
+
)
|
|
65
|
+
from .v1_ai_image_generator_create_body_style import (
|
|
66
|
+
V1AiImageGeneratorCreateBodyStyle,
|
|
67
|
+
_SerializerV1AiImageGeneratorCreateBodyStyle,
|
|
68
|
+
)
|
|
69
|
+
from .v1_ai_image_upscaler_create_body import (
|
|
70
|
+
V1AiImageUpscalerCreateBody,
|
|
71
|
+
_SerializerV1AiImageUpscalerCreateBody,
|
|
72
|
+
)
|
|
73
|
+
from .v1_ai_image_upscaler_create_body_assets import (
|
|
74
|
+
V1AiImageUpscalerCreateBodyAssets,
|
|
75
|
+
_SerializerV1AiImageUpscalerCreateBodyAssets,
|
|
76
|
+
)
|
|
77
|
+
from .v1_ai_image_upscaler_create_body_style import (
|
|
78
|
+
V1AiImageUpscalerCreateBodyStyle,
|
|
79
|
+
_SerializerV1AiImageUpscalerCreateBodyStyle,
|
|
80
|
+
)
|
|
81
|
+
from .v1_ai_image_upscaler_generate_body_assets import (
|
|
82
|
+
V1AiImageUpscalerGenerateBodyAssets,
|
|
74
83
|
)
|
|
75
|
-
from .
|
|
76
|
-
|
|
77
|
-
|
|
84
|
+
from .v1_ai_meme_generator_create_body import (
|
|
85
|
+
V1AiMemeGeneratorCreateBody,
|
|
86
|
+
_SerializerV1AiMemeGeneratorCreateBody,
|
|
78
87
|
)
|
|
79
|
-
from .
|
|
80
|
-
|
|
81
|
-
|
|
88
|
+
from .v1_ai_meme_generator_create_body_style import (
|
|
89
|
+
V1AiMemeGeneratorCreateBodyStyle,
|
|
90
|
+
_SerializerV1AiMemeGeneratorCreateBodyStyle,
|
|
82
91
|
)
|
|
83
|
-
from .
|
|
84
|
-
|
|
85
|
-
|
|
92
|
+
from .v1_ai_photo_editor_create_body import (
|
|
93
|
+
V1AiPhotoEditorCreateBody,
|
|
94
|
+
_SerializerV1AiPhotoEditorCreateBody,
|
|
86
95
|
)
|
|
87
|
-
from .
|
|
88
|
-
|
|
89
|
-
|
|
96
|
+
from .v1_ai_photo_editor_create_body_assets import (
|
|
97
|
+
V1AiPhotoEditorCreateBodyAssets,
|
|
98
|
+
_SerializerV1AiPhotoEditorCreateBodyAssets,
|
|
90
99
|
)
|
|
91
|
-
from .
|
|
92
|
-
|
|
93
|
-
|
|
100
|
+
from .v1_ai_photo_editor_create_body_style import (
|
|
101
|
+
V1AiPhotoEditorCreateBodyStyle,
|
|
102
|
+
_SerializerV1AiPhotoEditorCreateBodyStyle,
|
|
94
103
|
)
|
|
95
|
-
from .
|
|
96
|
-
|
|
97
|
-
|
|
104
|
+
from .v1_ai_photo_editor_generate_body_assets import V1AiPhotoEditorGenerateBodyAssets
|
|
105
|
+
from .v1_ai_qr_code_generator_create_body import (
|
|
106
|
+
V1AiQrCodeGeneratorCreateBody,
|
|
107
|
+
_SerializerV1AiQrCodeGeneratorCreateBody,
|
|
98
108
|
)
|
|
99
|
-
from .
|
|
100
|
-
|
|
101
|
-
|
|
109
|
+
from .v1_ai_qr_code_generator_create_body_style import (
|
|
110
|
+
V1AiQrCodeGeneratorCreateBodyStyle,
|
|
111
|
+
_SerializerV1AiQrCodeGeneratorCreateBodyStyle,
|
|
112
|
+
)
|
|
113
|
+
from .v1_ai_talking_photo_create_body import (
|
|
114
|
+
V1AiTalkingPhotoCreateBody,
|
|
115
|
+
_SerializerV1AiTalkingPhotoCreateBody,
|
|
116
|
+
)
|
|
117
|
+
from .v1_ai_talking_photo_create_body_assets import (
|
|
118
|
+
V1AiTalkingPhotoCreateBodyAssets,
|
|
119
|
+
_SerializerV1AiTalkingPhotoCreateBodyAssets,
|
|
120
|
+
)
|
|
121
|
+
from .v1_ai_talking_photo_create_body_style import (
|
|
122
|
+
V1AiTalkingPhotoCreateBodyStyle,
|
|
123
|
+
_SerializerV1AiTalkingPhotoCreateBodyStyle,
|
|
124
|
+
)
|
|
125
|
+
from .v1_ai_talking_photo_generate_body_assets import V1AiTalkingPhotoGenerateBodyAssets
|
|
126
|
+
from .v1_ai_voice_cloner_create_body import (
|
|
127
|
+
V1AiVoiceClonerCreateBody,
|
|
128
|
+
_SerializerV1AiVoiceClonerCreateBody,
|
|
129
|
+
)
|
|
130
|
+
from .v1_ai_voice_cloner_create_body_assets import (
|
|
131
|
+
V1AiVoiceClonerCreateBodyAssets,
|
|
132
|
+
_SerializerV1AiVoiceClonerCreateBodyAssets,
|
|
133
|
+
)
|
|
134
|
+
from .v1_ai_voice_cloner_create_body_style import (
|
|
135
|
+
V1AiVoiceClonerCreateBodyStyle,
|
|
136
|
+
_SerializerV1AiVoiceClonerCreateBodyStyle,
|
|
137
|
+
)
|
|
138
|
+
from .v1_ai_voice_cloner_generate_body_assets import V1AiVoiceClonerGenerateBodyAssets
|
|
139
|
+
from .v1_ai_voice_generator_create_body import (
|
|
140
|
+
V1AiVoiceGeneratorCreateBody,
|
|
141
|
+
_SerializerV1AiVoiceGeneratorCreateBody,
|
|
102
142
|
)
|
|
103
|
-
from .
|
|
104
|
-
|
|
105
|
-
|
|
143
|
+
from .v1_ai_voice_generator_create_body_style import (
|
|
144
|
+
V1AiVoiceGeneratorCreateBodyStyle,
|
|
145
|
+
_SerializerV1AiVoiceGeneratorCreateBodyStyle,
|
|
106
146
|
)
|
|
107
|
-
from .
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
_SerializerPostV1LipSyncBodyAssets,
|
|
147
|
+
from .v1_animation_create_body import (
|
|
148
|
+
V1AnimationCreateBody,
|
|
149
|
+
_SerializerV1AnimationCreateBody,
|
|
111
150
|
)
|
|
112
|
-
from .
|
|
113
|
-
|
|
114
|
-
|
|
151
|
+
from .v1_animation_create_body_assets import (
|
|
152
|
+
V1AnimationCreateBodyAssets,
|
|
153
|
+
_SerializerV1AnimationCreateBodyAssets,
|
|
115
154
|
)
|
|
116
|
-
from .
|
|
117
|
-
|
|
118
|
-
|
|
155
|
+
from .v1_animation_create_body_style import (
|
|
156
|
+
V1AnimationCreateBodyStyle,
|
|
157
|
+
_SerializerV1AnimationCreateBodyStyle,
|
|
158
|
+
)
|
|
159
|
+
from .v1_animation_generate_body_assets import V1AnimationGenerateBodyAssets
|
|
160
|
+
from .v1_auto_subtitle_generator_create_body import (
|
|
161
|
+
V1AutoSubtitleGeneratorCreateBody,
|
|
162
|
+
_SerializerV1AutoSubtitleGeneratorCreateBody,
|
|
163
|
+
)
|
|
164
|
+
from .v1_auto_subtitle_generator_create_body_assets import (
|
|
165
|
+
V1AutoSubtitleGeneratorCreateBodyAssets,
|
|
166
|
+
_SerializerV1AutoSubtitleGeneratorCreateBodyAssets,
|
|
167
|
+
)
|
|
168
|
+
from .v1_auto_subtitle_generator_create_body_style import (
|
|
169
|
+
V1AutoSubtitleGeneratorCreateBodyStyle,
|
|
170
|
+
_SerializerV1AutoSubtitleGeneratorCreateBodyStyle,
|
|
171
|
+
)
|
|
172
|
+
from .v1_auto_subtitle_generator_create_body_style_custom_config import (
|
|
173
|
+
V1AutoSubtitleGeneratorCreateBodyStyleCustomConfig,
|
|
174
|
+
_SerializerV1AutoSubtitleGeneratorCreateBodyStyleCustomConfig,
|
|
175
|
+
)
|
|
176
|
+
from .v1_auto_subtitle_generator_generate_body_assets import (
|
|
177
|
+
V1AutoSubtitleGeneratorGenerateBodyAssets,
|
|
178
|
+
)
|
|
179
|
+
from .v1_face_detection_create_body import (
|
|
180
|
+
V1FaceDetectionCreateBody,
|
|
181
|
+
_SerializerV1FaceDetectionCreateBody,
|
|
182
|
+
)
|
|
183
|
+
from .v1_face_detection_create_body_assets import (
|
|
184
|
+
V1FaceDetectionCreateBodyAssets,
|
|
185
|
+
_SerializerV1FaceDetectionCreateBodyAssets,
|
|
186
|
+
)
|
|
187
|
+
from .v1_face_detection_generate_body_assets import V1FaceDetectionGenerateBodyAssets
|
|
188
|
+
from .v1_face_swap_create_body import (
|
|
189
|
+
V1FaceSwapCreateBody,
|
|
190
|
+
_SerializerV1FaceSwapCreateBody,
|
|
191
|
+
)
|
|
192
|
+
from .v1_face_swap_create_body_assets import (
|
|
193
|
+
V1FaceSwapCreateBodyAssets,
|
|
194
|
+
_SerializerV1FaceSwapCreateBodyAssets,
|
|
195
|
+
)
|
|
196
|
+
from .v1_face_swap_create_body_assets_face_mappings_item import (
|
|
197
|
+
V1FaceSwapCreateBodyAssetsFaceMappingsItem,
|
|
198
|
+
_SerializerV1FaceSwapCreateBodyAssetsFaceMappingsItem,
|
|
199
|
+
)
|
|
200
|
+
from .v1_face_swap_create_body_style import (
|
|
201
|
+
V1FaceSwapCreateBodyStyle,
|
|
202
|
+
_SerializerV1FaceSwapCreateBodyStyle,
|
|
203
|
+
)
|
|
204
|
+
from .v1_face_swap_generate_body_assets import V1FaceSwapGenerateBodyAssets
|
|
205
|
+
from .v1_face_swap_generate_body_assets_face_mappings_item import (
|
|
206
|
+
V1FaceSwapGenerateBodyAssetsFaceMappingsItem,
|
|
207
|
+
)
|
|
208
|
+
from .v1_face_swap_photo_create_body import (
|
|
209
|
+
V1FaceSwapPhotoCreateBody,
|
|
210
|
+
_SerializerV1FaceSwapPhotoCreateBody,
|
|
211
|
+
)
|
|
212
|
+
from .v1_face_swap_photo_create_body_assets import (
|
|
213
|
+
V1FaceSwapPhotoCreateBodyAssets,
|
|
214
|
+
_SerializerV1FaceSwapPhotoCreateBodyAssets,
|
|
215
|
+
)
|
|
216
|
+
from .v1_face_swap_photo_create_body_assets_face_mappings_item import (
|
|
217
|
+
V1FaceSwapPhotoCreateBodyAssetsFaceMappingsItem,
|
|
218
|
+
_SerializerV1FaceSwapPhotoCreateBodyAssetsFaceMappingsItem,
|
|
219
|
+
)
|
|
220
|
+
from .v1_face_swap_photo_generate_body_assets import V1FaceSwapPhotoGenerateBodyAssets
|
|
221
|
+
from .v1_face_swap_photo_generate_body_assets_face_mappings_item import (
|
|
222
|
+
V1FaceSwapPhotoGenerateBodyAssetsFaceMappingsItem,
|
|
223
|
+
)
|
|
224
|
+
from .v1_files_upload_urls_create_body import (
|
|
225
|
+
V1FilesUploadUrlsCreateBody,
|
|
226
|
+
_SerializerV1FilesUploadUrlsCreateBody,
|
|
227
|
+
)
|
|
228
|
+
from .v1_files_upload_urls_create_body_items_item import (
|
|
229
|
+
V1FilesUploadUrlsCreateBodyItemsItem,
|
|
230
|
+
_SerializerV1FilesUploadUrlsCreateBodyItemsItem,
|
|
231
|
+
)
|
|
232
|
+
from .v1_image_background_remover_create_body import (
|
|
233
|
+
V1ImageBackgroundRemoverCreateBody,
|
|
234
|
+
_SerializerV1ImageBackgroundRemoverCreateBody,
|
|
235
|
+
)
|
|
236
|
+
from .v1_image_background_remover_create_body_assets import (
|
|
237
|
+
V1ImageBackgroundRemoverCreateBodyAssets,
|
|
238
|
+
_SerializerV1ImageBackgroundRemoverCreateBodyAssets,
|
|
239
|
+
)
|
|
240
|
+
from .v1_image_background_remover_generate_body_assets import (
|
|
241
|
+
V1ImageBackgroundRemoverGenerateBodyAssets,
|
|
119
242
|
)
|
|
120
|
-
from .
|
|
121
|
-
|
|
122
|
-
|
|
243
|
+
from .v1_image_to_video_create_body import (
|
|
244
|
+
V1ImageToVideoCreateBody,
|
|
245
|
+
_SerializerV1ImageToVideoCreateBody,
|
|
123
246
|
)
|
|
124
|
-
from .
|
|
125
|
-
|
|
126
|
-
|
|
247
|
+
from .v1_image_to_video_create_body_assets import (
|
|
248
|
+
V1ImageToVideoCreateBodyAssets,
|
|
249
|
+
_SerializerV1ImageToVideoCreateBodyAssets,
|
|
127
250
|
)
|
|
128
|
-
from .
|
|
129
|
-
|
|
130
|
-
|
|
251
|
+
from .v1_image_to_video_create_body_style import (
|
|
252
|
+
V1ImageToVideoCreateBodyStyle,
|
|
253
|
+
_SerializerV1ImageToVideoCreateBodyStyle,
|
|
131
254
|
)
|
|
255
|
+
from .v1_image_to_video_generate_body_assets import V1ImageToVideoGenerateBodyAssets
|
|
256
|
+
from .v1_lip_sync_create_body import V1LipSyncCreateBody, _SerializerV1LipSyncCreateBody
|
|
257
|
+
from .v1_lip_sync_create_body_assets import (
|
|
258
|
+
V1LipSyncCreateBodyAssets,
|
|
259
|
+
_SerializerV1LipSyncCreateBodyAssets,
|
|
260
|
+
)
|
|
261
|
+
from .v1_lip_sync_create_body_style import (
|
|
262
|
+
V1LipSyncCreateBodyStyle,
|
|
263
|
+
_SerializerV1LipSyncCreateBodyStyle,
|
|
264
|
+
)
|
|
265
|
+
from .v1_lip_sync_generate_body_assets import V1LipSyncGenerateBodyAssets
|
|
266
|
+
from .v1_photo_colorizer_create_body import (
|
|
267
|
+
V1PhotoColorizerCreateBody,
|
|
268
|
+
_SerializerV1PhotoColorizerCreateBody,
|
|
269
|
+
)
|
|
270
|
+
from .v1_photo_colorizer_create_body_assets import (
|
|
271
|
+
V1PhotoColorizerCreateBodyAssets,
|
|
272
|
+
_SerializerV1PhotoColorizerCreateBodyAssets,
|
|
273
|
+
)
|
|
274
|
+
from .v1_photo_colorizer_generate_body_assets import V1PhotoColorizerGenerateBodyAssets
|
|
275
|
+
from .v1_text_to_video_create_body import (
|
|
276
|
+
V1TextToVideoCreateBody,
|
|
277
|
+
_SerializerV1TextToVideoCreateBody,
|
|
278
|
+
)
|
|
279
|
+
from .v1_text_to_video_create_body_style import (
|
|
280
|
+
V1TextToVideoCreateBodyStyle,
|
|
281
|
+
_SerializerV1TextToVideoCreateBodyStyle,
|
|
282
|
+
)
|
|
283
|
+
from .v1_video_to_video_create_body import (
|
|
284
|
+
V1VideoToVideoCreateBody,
|
|
285
|
+
_SerializerV1VideoToVideoCreateBody,
|
|
286
|
+
)
|
|
287
|
+
from .v1_video_to_video_create_body_assets import (
|
|
288
|
+
V1VideoToVideoCreateBodyAssets,
|
|
289
|
+
_SerializerV1VideoToVideoCreateBodyAssets,
|
|
290
|
+
)
|
|
291
|
+
from .v1_video_to_video_create_body_style import (
|
|
292
|
+
V1VideoToVideoCreateBodyStyle,
|
|
293
|
+
_SerializerV1VideoToVideoCreateBodyStyle,
|
|
294
|
+
)
|
|
295
|
+
from .v1_video_to_video_generate_body_assets import V1VideoToVideoGenerateBodyAssets
|
|
132
296
|
|
|
133
297
|
|
|
134
298
|
__all__ = [
|
|
135
|
-
"
|
|
136
|
-
"
|
|
137
|
-
"
|
|
138
|
-
"
|
|
139
|
-
"
|
|
140
|
-
"
|
|
141
|
-
"
|
|
142
|
-
"
|
|
143
|
-
"
|
|
144
|
-
"
|
|
145
|
-
"
|
|
146
|
-
"
|
|
147
|
-
"
|
|
148
|
-
"
|
|
149
|
-
"
|
|
150
|
-
"
|
|
151
|
-
"
|
|
152
|
-
"
|
|
153
|
-
"
|
|
154
|
-
"
|
|
155
|
-
"
|
|
156
|
-
"
|
|
157
|
-
"
|
|
158
|
-
"
|
|
159
|
-
"
|
|
160
|
-
"
|
|
161
|
-
"
|
|
162
|
-
"
|
|
163
|
-
"
|
|
164
|
-
"
|
|
165
|
-
"
|
|
166
|
-
"
|
|
167
|
-
"
|
|
168
|
-
"
|
|
169
|
-
"
|
|
170
|
-
"
|
|
171
|
-
"
|
|
172
|
-
"
|
|
173
|
-
"
|
|
174
|
-
"
|
|
175
|
-
"
|
|
176
|
-
"
|
|
177
|
-
"
|
|
178
|
-
"
|
|
179
|
-
"
|
|
180
|
-
"
|
|
181
|
-
"
|
|
182
|
-
"
|
|
183
|
-
"
|
|
184
|
-
"
|
|
185
|
-
"
|
|
186
|
-
"
|
|
187
|
-
"
|
|
188
|
-
"
|
|
189
|
-
"
|
|
190
|
-
"
|
|
191
|
-
"
|
|
192
|
-
"
|
|
193
|
-
"
|
|
194
|
-
"
|
|
195
|
-
"
|
|
196
|
-
"
|
|
197
|
-
"
|
|
198
|
-
"
|
|
199
|
-
"
|
|
200
|
-
"
|
|
201
|
-
"
|
|
202
|
-
"
|
|
203
|
-
"
|
|
204
|
-
"
|
|
299
|
+
"V1AiClothesChangerCreateBody",
|
|
300
|
+
"V1AiClothesChangerCreateBodyAssets",
|
|
301
|
+
"V1AiClothesChangerGenerateBodyAssets",
|
|
302
|
+
"V1AiFaceEditorCreateBody",
|
|
303
|
+
"V1AiFaceEditorCreateBodyAssets",
|
|
304
|
+
"V1AiFaceEditorCreateBodyStyle",
|
|
305
|
+
"V1AiFaceEditorGenerateBodyAssets",
|
|
306
|
+
"V1AiGifGeneratorCreateBody",
|
|
307
|
+
"V1AiGifGeneratorCreateBodyStyle",
|
|
308
|
+
"V1AiHeadshotGeneratorCreateBody",
|
|
309
|
+
"V1AiHeadshotGeneratorCreateBodyAssets",
|
|
310
|
+
"V1AiHeadshotGeneratorCreateBodyStyle",
|
|
311
|
+
"V1AiHeadshotGeneratorGenerateBodyAssets",
|
|
312
|
+
"V1AiImageEditorCreateBody",
|
|
313
|
+
"V1AiImageEditorCreateBodyAssets",
|
|
314
|
+
"V1AiImageEditorCreateBodyStyle",
|
|
315
|
+
"V1AiImageEditorGenerateBodyAssets",
|
|
316
|
+
"V1AiImageGeneratorCreateBody",
|
|
317
|
+
"V1AiImageGeneratorCreateBodyStyle",
|
|
318
|
+
"V1AiImageUpscalerCreateBody",
|
|
319
|
+
"V1AiImageUpscalerCreateBodyAssets",
|
|
320
|
+
"V1AiImageUpscalerCreateBodyStyle",
|
|
321
|
+
"V1AiImageUpscalerGenerateBodyAssets",
|
|
322
|
+
"V1AiMemeGeneratorCreateBody",
|
|
323
|
+
"V1AiMemeGeneratorCreateBodyStyle",
|
|
324
|
+
"V1AiPhotoEditorCreateBody",
|
|
325
|
+
"V1AiPhotoEditorCreateBodyAssets",
|
|
326
|
+
"V1AiPhotoEditorCreateBodyStyle",
|
|
327
|
+
"V1AiPhotoEditorGenerateBodyAssets",
|
|
328
|
+
"V1AiQrCodeGeneratorCreateBody",
|
|
329
|
+
"V1AiQrCodeGeneratorCreateBodyStyle",
|
|
330
|
+
"V1AiTalkingPhotoCreateBody",
|
|
331
|
+
"V1AiTalkingPhotoCreateBodyAssets",
|
|
332
|
+
"V1AiTalkingPhotoCreateBodyStyle",
|
|
333
|
+
"V1AiTalkingPhotoGenerateBodyAssets",
|
|
334
|
+
"V1AiVoiceClonerCreateBody",
|
|
335
|
+
"V1AiVoiceClonerCreateBodyAssets",
|
|
336
|
+
"V1AiVoiceClonerCreateBodyStyle",
|
|
337
|
+
"V1AiVoiceClonerGenerateBodyAssets",
|
|
338
|
+
"V1AiVoiceGeneratorCreateBody",
|
|
339
|
+
"V1AiVoiceGeneratorCreateBodyStyle",
|
|
340
|
+
"V1AnimationCreateBody",
|
|
341
|
+
"V1AnimationCreateBodyAssets",
|
|
342
|
+
"V1AnimationCreateBodyStyle",
|
|
343
|
+
"V1AnimationGenerateBodyAssets",
|
|
344
|
+
"V1AutoSubtitleGeneratorCreateBody",
|
|
345
|
+
"V1AutoSubtitleGeneratorCreateBodyAssets",
|
|
346
|
+
"V1AutoSubtitleGeneratorCreateBodyStyle",
|
|
347
|
+
"V1AutoSubtitleGeneratorCreateBodyStyleCustomConfig",
|
|
348
|
+
"V1AutoSubtitleGeneratorGenerateBodyAssets",
|
|
349
|
+
"V1FaceDetectionCreateBody",
|
|
350
|
+
"V1FaceDetectionCreateBodyAssets",
|
|
351
|
+
"V1FaceDetectionGenerateBodyAssets",
|
|
352
|
+
"V1FaceSwapCreateBody",
|
|
353
|
+
"V1FaceSwapCreateBodyAssets",
|
|
354
|
+
"V1FaceSwapCreateBodyAssetsFaceMappingsItem",
|
|
355
|
+
"V1FaceSwapCreateBodyStyle",
|
|
356
|
+
"V1FaceSwapGenerateBodyAssets",
|
|
357
|
+
"V1FaceSwapGenerateBodyAssetsFaceMappingsItem",
|
|
358
|
+
"V1FaceSwapPhotoCreateBody",
|
|
359
|
+
"V1FaceSwapPhotoCreateBodyAssets",
|
|
360
|
+
"V1FaceSwapPhotoCreateBodyAssetsFaceMappingsItem",
|
|
361
|
+
"V1FaceSwapPhotoGenerateBodyAssets",
|
|
362
|
+
"V1FaceSwapPhotoGenerateBodyAssetsFaceMappingsItem",
|
|
363
|
+
"V1FilesUploadUrlsCreateBody",
|
|
364
|
+
"V1FilesUploadUrlsCreateBodyItemsItem",
|
|
365
|
+
"V1ImageBackgroundRemoverCreateBody",
|
|
366
|
+
"V1ImageBackgroundRemoverCreateBodyAssets",
|
|
367
|
+
"V1ImageBackgroundRemoverGenerateBodyAssets",
|
|
368
|
+
"V1ImageToVideoCreateBody",
|
|
369
|
+
"V1ImageToVideoCreateBodyAssets",
|
|
370
|
+
"V1ImageToVideoCreateBodyStyle",
|
|
371
|
+
"V1ImageToVideoGenerateBodyAssets",
|
|
372
|
+
"V1LipSyncCreateBody",
|
|
373
|
+
"V1LipSyncCreateBodyAssets",
|
|
374
|
+
"V1LipSyncCreateBodyStyle",
|
|
375
|
+
"V1LipSyncGenerateBodyAssets",
|
|
376
|
+
"V1PhotoColorizerCreateBody",
|
|
377
|
+
"V1PhotoColorizerCreateBodyAssets",
|
|
378
|
+
"V1PhotoColorizerGenerateBodyAssets",
|
|
379
|
+
"V1TextToVideoCreateBody",
|
|
380
|
+
"V1TextToVideoCreateBodyStyle",
|
|
381
|
+
"V1VideoToVideoCreateBody",
|
|
382
|
+
"V1VideoToVideoCreateBodyAssets",
|
|
383
|
+
"V1VideoToVideoCreateBodyStyle",
|
|
384
|
+
"V1VideoToVideoGenerateBodyAssets",
|
|
385
|
+
"_SerializerV1AiClothesChangerCreateBody",
|
|
386
|
+
"_SerializerV1AiClothesChangerCreateBodyAssets",
|
|
387
|
+
"_SerializerV1AiFaceEditorCreateBody",
|
|
388
|
+
"_SerializerV1AiFaceEditorCreateBodyAssets",
|
|
389
|
+
"_SerializerV1AiFaceEditorCreateBodyStyle",
|
|
390
|
+
"_SerializerV1AiGifGeneratorCreateBody",
|
|
391
|
+
"_SerializerV1AiGifGeneratorCreateBodyStyle",
|
|
392
|
+
"_SerializerV1AiHeadshotGeneratorCreateBody",
|
|
393
|
+
"_SerializerV1AiHeadshotGeneratorCreateBodyAssets",
|
|
394
|
+
"_SerializerV1AiHeadshotGeneratorCreateBodyStyle",
|
|
395
|
+
"_SerializerV1AiImageEditorCreateBody",
|
|
396
|
+
"_SerializerV1AiImageEditorCreateBodyAssets",
|
|
397
|
+
"_SerializerV1AiImageEditorCreateBodyStyle",
|
|
398
|
+
"_SerializerV1AiImageGeneratorCreateBody",
|
|
399
|
+
"_SerializerV1AiImageGeneratorCreateBodyStyle",
|
|
400
|
+
"_SerializerV1AiImageUpscalerCreateBody",
|
|
401
|
+
"_SerializerV1AiImageUpscalerCreateBodyAssets",
|
|
402
|
+
"_SerializerV1AiImageUpscalerCreateBodyStyle",
|
|
403
|
+
"_SerializerV1AiMemeGeneratorCreateBody",
|
|
404
|
+
"_SerializerV1AiMemeGeneratorCreateBodyStyle",
|
|
405
|
+
"_SerializerV1AiPhotoEditorCreateBody",
|
|
406
|
+
"_SerializerV1AiPhotoEditorCreateBodyAssets",
|
|
407
|
+
"_SerializerV1AiPhotoEditorCreateBodyStyle",
|
|
408
|
+
"_SerializerV1AiQrCodeGeneratorCreateBody",
|
|
409
|
+
"_SerializerV1AiQrCodeGeneratorCreateBodyStyle",
|
|
410
|
+
"_SerializerV1AiTalkingPhotoCreateBody",
|
|
411
|
+
"_SerializerV1AiTalkingPhotoCreateBodyAssets",
|
|
412
|
+
"_SerializerV1AiTalkingPhotoCreateBodyStyle",
|
|
413
|
+
"_SerializerV1AiVoiceClonerCreateBody",
|
|
414
|
+
"_SerializerV1AiVoiceClonerCreateBodyAssets",
|
|
415
|
+
"_SerializerV1AiVoiceClonerCreateBodyStyle",
|
|
416
|
+
"_SerializerV1AiVoiceGeneratorCreateBody",
|
|
417
|
+
"_SerializerV1AiVoiceGeneratorCreateBodyStyle",
|
|
418
|
+
"_SerializerV1AnimationCreateBody",
|
|
419
|
+
"_SerializerV1AnimationCreateBodyAssets",
|
|
420
|
+
"_SerializerV1AnimationCreateBodyStyle",
|
|
421
|
+
"_SerializerV1AutoSubtitleGeneratorCreateBody",
|
|
422
|
+
"_SerializerV1AutoSubtitleGeneratorCreateBodyAssets",
|
|
423
|
+
"_SerializerV1AutoSubtitleGeneratorCreateBodyStyle",
|
|
424
|
+
"_SerializerV1AutoSubtitleGeneratorCreateBodyStyleCustomConfig",
|
|
425
|
+
"_SerializerV1FaceDetectionCreateBody",
|
|
426
|
+
"_SerializerV1FaceDetectionCreateBodyAssets",
|
|
427
|
+
"_SerializerV1FaceSwapCreateBody",
|
|
428
|
+
"_SerializerV1FaceSwapCreateBodyAssets",
|
|
429
|
+
"_SerializerV1FaceSwapCreateBodyAssetsFaceMappingsItem",
|
|
430
|
+
"_SerializerV1FaceSwapCreateBodyStyle",
|
|
431
|
+
"_SerializerV1FaceSwapPhotoCreateBody",
|
|
432
|
+
"_SerializerV1FaceSwapPhotoCreateBodyAssets",
|
|
433
|
+
"_SerializerV1FaceSwapPhotoCreateBodyAssetsFaceMappingsItem",
|
|
434
|
+
"_SerializerV1FilesUploadUrlsCreateBody",
|
|
435
|
+
"_SerializerV1FilesUploadUrlsCreateBodyItemsItem",
|
|
436
|
+
"_SerializerV1ImageBackgroundRemoverCreateBody",
|
|
437
|
+
"_SerializerV1ImageBackgroundRemoverCreateBodyAssets",
|
|
438
|
+
"_SerializerV1ImageToVideoCreateBody",
|
|
439
|
+
"_SerializerV1ImageToVideoCreateBodyAssets",
|
|
440
|
+
"_SerializerV1ImageToVideoCreateBodyStyle",
|
|
441
|
+
"_SerializerV1LipSyncCreateBody",
|
|
442
|
+
"_SerializerV1LipSyncCreateBodyAssets",
|
|
443
|
+
"_SerializerV1LipSyncCreateBodyStyle",
|
|
444
|
+
"_SerializerV1PhotoColorizerCreateBody",
|
|
445
|
+
"_SerializerV1PhotoColorizerCreateBodyAssets",
|
|
446
|
+
"_SerializerV1TextToVideoCreateBody",
|
|
447
|
+
"_SerializerV1TextToVideoCreateBodyStyle",
|
|
448
|
+
"_SerializerV1VideoToVideoCreateBody",
|
|
449
|
+
"_SerializerV1VideoToVideoCreateBodyAssets",
|
|
450
|
+
"_SerializerV1VideoToVideoCreateBodyStyle",
|
|
205
451
|
]
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import pydantic
|
|
2
|
+
import typing
|
|
3
|
+
import typing_extensions
|
|
4
|
+
|
|
5
|
+
from .v1_ai_clothes_changer_create_body_assets import (
|
|
6
|
+
V1AiClothesChangerCreateBodyAssets,
|
|
7
|
+
_SerializerV1AiClothesChangerCreateBodyAssets,
|
|
8
|
+
)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class V1AiClothesChangerCreateBody(typing_extensions.TypedDict):
|
|
12
|
+
"""
|
|
13
|
+
V1AiClothesChangerCreateBody
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
assets: typing_extensions.Required[V1AiClothesChangerCreateBodyAssets]
|
|
17
|
+
"""
|
|
18
|
+
Provide the assets for clothes changer
|
|
19
|
+
"""
|
|
20
|
+
|
|
21
|
+
name: typing_extensions.NotRequired[str]
|
|
22
|
+
"""
|
|
23
|
+
The name of image. This value is mainly used for your own identification of the image.
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
class _SerializerV1AiClothesChangerCreateBody(pydantic.BaseModel):
|
|
28
|
+
"""
|
|
29
|
+
Serializer for V1AiClothesChangerCreateBody handling case conversions
|
|
30
|
+
and file omissions as dictated by the API
|
|
31
|
+
"""
|
|
32
|
+
|
|
33
|
+
model_config = pydantic.ConfigDict(
|
|
34
|
+
populate_by_name=True,
|
|
35
|
+
)
|
|
36
|
+
|
|
37
|
+
assets: _SerializerV1AiClothesChangerCreateBodyAssets = pydantic.Field(
|
|
38
|
+
alias="assets",
|
|
39
|
+
)
|
|
40
|
+
name: typing.Optional[str] = pydantic.Field(alias="name", default=None)
|