Update app.py
Browse files
app.py
CHANGED
|
@@ -212,8 +212,7 @@ def create_ui():
|
|
| 212 |
fn=generate_with_auth,
|
| 213 |
inputs=[prompt_input],
|
| 214 |
outputs=[video_output, status_output],
|
| 215 |
-
|
| 216 |
-
show_api=False,
|
| 217 |
)
|
| 218 |
|
| 219 |
# Image -> Video UI
|
|
@@ -240,8 +239,7 @@ def create_ui():
|
|
| 240 |
fn=generate_with_auth_image,
|
| 241 |
inputs=[img_prompt_input, image_input],
|
| 242 |
outputs=[video_output_img, status_output_img],
|
| 243 |
-
|
| 244 |
-
show_api=False,
|
| 245 |
)
|
| 246 |
|
| 247 |
# Example usage guidance
|
|
|
|
| 212 |
fn=generate_with_auth,
|
| 213 |
inputs=[prompt_input],
|
| 214 |
outputs=[video_output, status_output],
|
| 215 |
+
queue=False
|
|
|
|
| 216 |
)
|
| 217 |
|
| 218 |
# Image -> Video UI
|
|
|
|
| 239 |
fn=generate_with_auth_image,
|
| 240 |
inputs=[img_prompt_input, image_input],
|
| 241 |
outputs=[video_output_img, status_output_img],
|
| 242 |
+
queue=False
|
|
|
|
| 243 |
)
|
| 244 |
|
| 245 |
# Example usage guidance
|