Compare commits

...

6 Commits

Author SHA1 Message Date
zong.xiangrui
8c04b8462b
Merge ba98b43b7f into 451af70154 2026-01-21 13:04:03 +01:00
Alexander Piskun
451af70154
fix(api-nodes-Vidu): allow passing up to 7 subjects in Vidu Reference node (#12002)
Some checks are pending
Python Linting / Run Ruff (push) Waiting to run
Python Linting / Run Pylint (push) Waiting to run
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.10, [self-hosted Linux], stable) (push) Waiting to run
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.11, [self-hosted Linux], stable) (push) Waiting to run
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.12, [self-hosted Linux], stable) (push) Waiting to run
Full Comfy CI Workflow Runs / test-unix-nightly (12.1, , linux, 3.11, [self-hosted Linux], nightly) (push) Waiting to run
Execution Tests / test (macos-latest) (push) Waiting to run
Execution Tests / test (ubuntu-latest) (push) Waiting to run
Execution Tests / test (windows-latest) (push) Waiting to run
Test server launches without errors / test (push) Waiting to run
Unit Tests / test (macos-latest) (push) Waiting to run
Unit Tests / test (ubuntu-latest) (push) Waiting to run
Unit Tests / test (windows-2022) (push) Waiting to run
2026-01-21 04:03:45 -08:00
zong.xiangrui
ba98b43b7f
Merge branch 'master' into master 2026-01-19 14:26:29 +08:00
zong.xiangrui
97a00f0065
Merge branch 'master' into master 2026-01-18 11:33:35 +08:00
zong.xiangrui
16dd721cd6
Merge branch 'master' into master 2026-01-18 11:04:08 +08:00
zong.xiangrui
aa0dbc4b19 Update dependency versions in requirements.txt
Specified minimum versions for torch, SQLAlchemy, pydantic, and pydantic-settings to ensure compatibility and stability. This helps prevent issues with incompatible or outdated package versions.
2026-01-15 20:59:28 +08:00
2 changed files with 6 additions and 6 deletions

View File

@ -703,7 +703,7 @@ class Vidu2ReferenceVideoNode(IO.ComfyNode):
"subjects",
template=IO.Autogrow.TemplateNames(
IO.Image.Input("reference_images"),
names=["subject1", "subject2", "subject3"],
names=["subject1", "subject2", "subject3", "subject4", "subject5", "subject6", "subject7"],
min=1,
),
tooltip="For each subject, provide up to 3 reference images (7 images total across all subjects). "
@ -738,7 +738,7 @@ class Vidu2ReferenceVideoNode(IO.ComfyNode):
control_after_generate=True,
),
IO.Combo.Input("aspect_ratio", options=["16:9", "9:16", "4:3", "3:4", "1:1"]),
IO.Combo.Input("resolution", options=["720p"]),
IO.Combo.Input("resolution", options=["720p", "1080p"]),
IO.Combo.Input(
"movement_amplitude",
options=["auto", "small", "medium", "large"],

View File

@ -1,7 +1,7 @@
comfyui-frontend-package==1.37.11
comfyui-workflow-templates==0.8.15
comfyui-embedded-docs==0.4.0
torch
torch>=2.4.0
torchsde
torchvision
torchaudio
@ -19,12 +19,12 @@ scipy
tqdm
psutil
alembic
SQLAlchemy
SQLAlchemy>=2.0.0
av>=14.2.0
comfy-kitchen>=0.2.7
#non essential dependencies:
kornia>=0.7.1
spandrel
pydantic~=2.0
pydantic-settings~=2.0
pydantic>=2.10.0
pydantic-settings>=2.10.0