Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -602,14 +602,15 @@ with gr.Blocks(css=css) as demo:
|
|
| 602 |
turn_video_btn = gr.Button("🎬 Turn into Video", variant="secondary", size="sm", visible=False)
|
| 603 |
output_video = gr.Video(label="Generated Video", autoplay=True, visible=False)
|
| 604 |
|
| 605 |
-
with gr.Row():
|
| 606 |
gr.Markdown("### 📜 History")
|
| 607 |
clear_history_button = gr.Button("🗑️ Clear History", size="sm", variant="stop")
|
| 608 |
|
| 609 |
history_gallery = gr.Gallery(
|
| 610 |
label="Click any image to use as input",
|
| 611 |
interactive=False,
|
| 612 |
-
show_label=True
|
|
|
|
| 613 |
)
|
| 614 |
|
| 615 |
gr.Examples(examples=[
|
|
|
|
| 602 |
turn_video_btn = gr.Button("🎬 Turn into Video", variant="secondary", size="sm", visible=False)
|
| 603 |
output_video = gr.Video(label="Generated Video", autoplay=True, visible=False)
|
| 604 |
|
| 605 |
+
with gr.Row(visible=False):
|
| 606 |
gr.Markdown("### 📜 History")
|
| 607 |
clear_history_button = gr.Button("🗑️ Clear History", size="sm", variant="stop")
|
| 608 |
|
| 609 |
history_gallery = gr.Gallery(
|
| 610 |
label="Click any image to use as input",
|
| 611 |
interactive=False,
|
| 612 |
+
show_label=True,
|
| 613 |
+
visible=False
|
| 614 |
)
|
| 615 |
|
| 616 |
gr.Examples(examples=[
|