Update handler.py
Browse files- handler.py +4 -1
handler.py
CHANGED
@@ -167,7 +167,10 @@ class EndpointHandler:
|
|
167 |
with torch.inference_mode():
|
168 |
output = self.pipeline(
|
169 |
prompt=config.prompt,
|
170 |
-
|
|
|
|
|
|
|
171 |
num_frames=config.num_frames,
|
172 |
height=config.height,
|
173 |
width=config.width,
|
|
|
167 |
with torch.inference_mode():
|
168 |
output = self.pipeline(
|
169 |
prompt=config.prompt,
|
170 |
+
|
171 |
+
# Failed to generate video: HunyuanVideoPipeline.__call__() got an unexpected keyword argument 'negative_prompt'
|
172 |
+
#negative_prompt=config.negative_prompt,
|
173 |
+
|
174 |
num_frames=config.num_frames,
|
175 |
height=config.height,
|
176 |
width=config.width,
|