Skip to content

Commit 451af70

Browse files
authored
fix(api-nodes-Vidu): allow passing up to 7 subjects in Vidu Reference node (Comfy-Org#12002)
1 parent 0fc1570 commit 451af70

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

comfy_api_nodes/nodes_vidu.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -703,7 +703,7 @@ def define_schema(cls):
703703
"subjects",
704704
template=IO.Autogrow.TemplateNames(
705705
IO.Image.Input("reference_images"),
706-
names=["subject1", "subject2", "subject3"],
706+
names=["subject1", "subject2", "subject3", "subject4", "subject5", "subject6", "subject7"],
707707
min=1,
708708
),
709709
tooltip="For each subject, provide up to 3 reference images (7 images total across all subjects). "
@@ -738,7 +738,7 @@ def define_schema(cls):
738738
control_after_generate=True,
739739
),
740740
IO.Combo.Input("aspect_ratio", options=["16:9", "9:16", "4:3", "3:4", "1:1"]),
741-
IO.Combo.Input("resolution", options=["720p"]),
741+
IO.Combo.Input("resolution", options=["720p", "1080p"]),
742742
IO.Combo.Input(
743743
"movement_amplitude",
744744
options=["auto", "small", "medium", "large"],

0 commit comments

Comments
 (0)