Commit
·
f1bbd17
1
Parent(s):
4cdf1fd
fix wrong reference pipe
Browse files- handler.py +1 -1
handler.py
CHANGED
@@ -107,7 +107,7 @@ class EndpointHandler():
|
|
107 |
image = self.decode_base64_image(image_depth_map)
|
108 |
|
109 |
# run inference pipeline
|
110 |
-
out =
|
111 |
prompt=prompt,
|
112 |
negative_prompt=negative_prompt,
|
113 |
image=image,
|
|
|
107 |
image = self.decode_base64_image(image_depth_map)
|
108 |
|
109 |
# run inference pipeline
|
110 |
+
out = pipe(
|
111 |
prompt=prompt,
|
112 |
negative_prompt=negative_prompt,
|
113 |
image=image,
|