feat(api-nodes): add Kling Motion Control node (#11493)

This commit is contained in:
Alexander Piskun
2025-12-27 05:16:21 +02:00
committed by GitHub
parent 1e4e342f54
commit 865568b7fc
2 changed files with 96 additions and 0 deletions

View File

@@ -102,3 +102,12 @@ class ImageToVideoWithAudioRequest(BaseModel):
prompt: str = Field(...)
mode: str = Field("pro")
sound: str = Field(..., description="'on' or 'off'")
class MotionControlRequest(BaseModel):
prompt: str = Field(...)
image_url: str = Field(...)
video_url: str = Field(...)
keep_original_sound: str = Field(...)
character_orientation: str = Field(...)
mode: str = Field(..., description="'pro' or 'std'")