feat(api-nodes): add KlingAvatar node (#12591)

This commit is contained in:
Alexander Piskun
2026-02-23 21:27:16 +02:00
committed by GitHub
parent caa43d2395
commit dba2766e53
2 changed files with 107 additions and 0 deletions
+7
View File
@@ -134,6 +134,13 @@ class ImageToVideoWithAudioRequest(BaseModel):
shot_type: str | None = Field(None)
class KlingAvatarRequest(BaseModel):
image: str = Field(...)
sound_file: str = Field(...)
prompt: str | None = Field(None)
mode: str = Field(...)
class MotionControlRequest(BaseModel):
prompt: str = Field(...)
image_url: str = Field(...)