Update app.py
Browse files
app.py
CHANGED
|
@@ -131,7 +131,7 @@ def generate_end_frame(start_frame, edit_prompt: str):
|
|
| 131 |
image_input = handle_file(str(start_frame))
|
| 132 |
|
| 133 |
# Call Qwen Image Edit
|
| 134 |
-
result, _
|
| 135 |
images=[{"image":image_input}],
|
| 136 |
prompt=edit_prompt,
|
| 137 |
api_name="/infer"
|
|
|
|
| 131 |
image_input = handle_file(str(start_frame))
|
| 132 |
|
| 133 |
# Call Qwen Image Edit
|
| 134 |
+
result, _= image_edit_client.predict(
|
| 135 |
images=[{"image":image_input}],
|
| 136 |
prompt=edit_prompt,
|
| 137 |
api_name="/infer"
|