Update handler.py
Browse files- handler.py +1 -1
handler.py
CHANGED
@@ -98,7 +98,7 @@ class EndpointHandler():
|
|
98 |
negative_prompt = data.pop("negative_prompt", None)
|
99 |
height = data.pop("height", None)
|
100 |
width = data.pop("width", None)
|
101 |
-
controlnet_conditioning_scale = data.pop("controlnet_conditioning_scale",
|
102 |
|
103 |
# process image
|
104 |
image = self.decode_base64_image(image)
|
|
|
98 |
negative_prompt = data.pop("negative_prompt", None)
|
99 |
height = data.pop("height", None)
|
100 |
width = data.pop("width", None)
|
101 |
+
controlnet_conditioning_scale = data.pop("controlnet_conditioning_scale", 0.8)
|
102 |
|
103 |
# process image
|
104 |
image = self.decode_base64_image(image)
|