@@ -46,22 +46,22 @@ class Txt2ImageParametersField(BaseModel):
4646 n : int = Field (1 , description = "Number of images to generate." ) # we support only value=1
4747 seed : int = Field (..., ge = 0 , le = 2147483647 )
4848 prompt_extend : bool = Field (True )
49- watermark : bool = Field (True )
49+ watermark : bool = Field (False )
5050
5151
5252class Image2ImageParametersField (BaseModel ):
5353 size : str | None = Field (None )
5454 n : int = Field (1 , description = "Number of images to generate." ) # we support only value=1
5555 seed : int = Field (..., ge = 0 , le = 2147483647 )
56- watermark : bool = Field (True )
56+ watermark : bool = Field (False )
5757
5858
5959class Text2VideoParametersField (BaseModel ):
6060 size : str = Field (...)
6161 seed : int = Field (..., ge = 0 , le = 2147483647 )
6262 duration : int = Field (5 , ge = 5 , le = 15 )
6363 prompt_extend : bool = Field (True )
64- watermark : bool = Field (True )
64+ watermark : bool = Field (False )
6565 audio : bool = Field (False , description = "Whether to generate audio automatically." )
6666 shot_type : str = Field ("single" )
6767
@@ -71,7 +71,7 @@ class Image2VideoParametersField(BaseModel):
7171 seed : int = Field (..., ge = 0 , le = 2147483647 )
7272 duration : int = Field (5 , ge = 5 , le = 15 )
7373 prompt_extend : bool = Field (True )
74- watermark : bool = Field (True )
74+ watermark : bool = Field (False )
7575 audio : bool = Field (False , description = "Whether to generate audio automatically." )
7676 shot_type : str = Field ("single" )
7777
@@ -208,7 +208,7 @@ def define_schema(cls):
208208 ),
209209 IO .Boolean .Input (
210210 "watermark" ,
211- default = True ,
211+ default = False ,
212212 tooltip = "Whether to add an AI-generated watermark to the result." ,
213213 optional = True ,
214214 ),
@@ -234,7 +234,7 @@ async def execute(
234234 height : int = 1024 ,
235235 seed : int = 0 ,
236236 prompt_extend : bool = True ,
237- watermark : bool = True ,
237+ watermark : bool = False ,
238238 ):
239239 initial_response = await sync_op (
240240 cls ,
@@ -327,7 +327,7 @@ def define_schema(cls):
327327 ),
328328 IO .Boolean .Input (
329329 "watermark" ,
330- default = True ,
330+ default = False ,
331331 tooltip = "Whether to add an AI-generated watermark to the result." ,
332332 optional = True ,
333333 ),
@@ -353,7 +353,7 @@ async def execute(
353353 # width: int = 1024,
354354 # height: int = 1024,
355355 seed : int = 0 ,
356- watermark : bool = True ,
356+ watermark : bool = False ,
357357 ):
358358 n_images = get_number_of_images (image )
359359 if n_images not in (1 , 2 ):
@@ -476,7 +476,7 @@ def define_schema(cls):
476476 ),
477477 IO .Boolean .Input (
478478 "watermark" ,
479- default = True ,
479+ default = False ,
480480 tooltip = "Whether to add an AI-generated watermark to the result." ,
481481 optional = True ,
482482 ),
@@ -512,7 +512,7 @@ async def execute(
512512 seed : int = 0 ,
513513 generate_audio : bool = False ,
514514 prompt_extend : bool = True ,
515- watermark : bool = True ,
515+ watermark : bool = False ,
516516 shot_type : str = "single" ,
517517 ):
518518 if "480p" in size and model == "wan2.6-t2v" :
@@ -637,7 +637,7 @@ def define_schema(cls):
637637 ),
638638 IO .Boolean .Input (
639639 "watermark" ,
640- default = True ,
640+ default = False ,
641641 tooltip = "Whether to add an AI-generated watermark to the result." ,
642642 optional = True ,
643643 ),
@@ -674,7 +674,7 @@ async def execute(
674674 seed : int = 0 ,
675675 generate_audio : bool = False ,
676676 prompt_extend : bool = True ,
677- watermark : bool = True ,
677+ watermark : bool = False ,
678678 shot_type : str = "single" ,
679679 ):
680680 if get_number_of_images (image ) != 1 :
0 commit comments