From 5ea1f87ca1a048302a63997dc5337412e77da101 Mon Sep 17 00:00:00 2001 From: bigcat88 Date: Mon, 27 Apr 2026 16:35:32 +0300 Subject: [PATCH] fix: allow durations up to 15 s Signed-off-by: bigcat88 --- comfy_api_nodes/apis/wan.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy_api_nodes/apis/wan.py b/comfy_api_nodes/apis/wan.py index 4ee704bc9..c64acae97 100644 --- a/comfy_api_nodes/apis/wan.py +++ b/comfy_api_nodes/apis/wan.py @@ -118,7 +118,7 @@ class Wan27ReferenceVideoInputField(BaseModel): class Wan27ReferenceVideoParametersField(BaseModel): resolution: str = Field(...) ratio: str | None = Field(None) - duration: int = Field(5, ge=2, le=10) + duration: int = Field(5, ge=2, le=15) watermark: bool = Field(False) seed: int = Field(..., ge=0, le=2147483647)