olegchomp / TDDiffusionAPI

TouchDesigner interface for AUTOMATIC1111
170 stars 6 forks source link

Seeds above 2147483647, are not accepted. #8

Closed dichbg closed 10 months ago

dichbg commented 1 year ago

Seed parameter does not need to be an integer, it can be a string.

"seed": int(self.tda.par.T2isd) if self.tda.par.Srandomseed == False else self.randomseed(), can be replaced with: "seed": str(self.tda.par.T2isd),

You don't really need a random seed function, as you can supply -1 as seed input and use the built in auto1111 function.

Thank you for this contribution, this tox file is amazing!

olegchomp commented 10 months ago

fixed