mix1009 / sdwebuiapi

Python API client for AUTOMATIC1111/stable-diffusion-webui
MIT License
1.37k stars 183 forks source link

Any support for not using a preprocessor in controlnet? #159

Closed Piper8x7b closed 6 months ago

Piper8x7b commented 7 months ago

I have a precomputed normal map im trying to use with the api's controlnet. But I don't see an option to disable the preprocessor. Is this not supported?

Theroniya commented 6 months ago

Simply ControlNetUnit(... module="none" ...). As "none" is the default, you can omit the module parameter.

Piper8x7b commented 6 months ago

Thanks!