Update app.py
Browse files
app.py
CHANGED
|
@@ -185,6 +185,9 @@ def create_ui():
|
|
| 185 |
fn=generate_with_auth,
|
| 186 |
inputs=[prompt_input],
|
| 187 |
outputs=[video_output, status_output],
|
|
|
|
|
|
|
|
|
|
| 188 |
)
|
| 189 |
|
| 190 |
# Image -> Video UI
|
|
@@ -211,6 +214,9 @@ def create_ui():
|
|
| 211 |
fn=generate_with_auth_image,
|
| 212 |
inputs=[img_prompt_input, image_input],
|
| 213 |
outputs=[video_output_img, status_output_img],
|
|
|
|
|
|
|
|
|
|
| 214 |
)
|
| 215 |
|
| 216 |
# Example usage guidance
|
|
|
|
| 185 |
fn=generate_with_auth,
|
| 186 |
inputs=[prompt_input],
|
| 187 |
outputs=[video_output, status_output],
|
| 188 |
+
show_progress="full",
|
| 189 |
+
api_name=False,
|
| 190 |
+
show_api=False
|
| 191 |
)
|
| 192 |
|
| 193 |
# Image -> Video UI
|
|
|
|
| 214 |
fn=generate_with_auth_image,
|
| 215 |
inputs=[img_prompt_input, image_input],
|
| 216 |
outputs=[video_output_img, status_output_img],
|
| 217 |
+
show_progress="full",
|
| 218 |
+
api_name=False,
|
| 219 |
+
show_api=False
|
| 220 |
)
|
| 221 |
|
| 222 |
# Example usage guidance
|