the parameter 'seed' of Flux Sampler Parameters shoule be converted to type 'str' , not int
miketangok opened this issue · 0 comments
miketangok commented
current converted result
fluxsamplerparams_26 = fluxsamplerparams.execute(
seed=random.randint(1, 2**64),
sampler="euler",
scheduler="beta",
steps="20",
guidance="3",
max_shift="",
base_shift="",
denoise="0.8",
model=get_value_at_index(unetloadergguf_27, 0),
conditioning=get_value_at_index(cliptextencode_6, 0),
latent_image=get_value_at_index(vaeencode_24, 0),
)
should be seed=str( random.randint(1, 2**64) ),