Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -543,16 +543,15 @@ with gr.Blocks() as demo:
|
|
543 |
|
544 |
btn.click(fn=generate_video, inputs=[image, prompt, max_tokens], outputs=video)
|
545 |
|
546 |
-
#
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
)
|
556 |
|
557 |
if __name__ == "__main__":
|
558 |
demo.launch()
|
|
|
543 |
|
544 |
btn.click(fn=generate_video, inputs=[image, prompt, max_tokens], outputs=video)
|
545 |
|
546 |
+
# gr.Examples(
|
547 |
+
# examples=[
|
548 |
+
# ["demo_1.jpg", "List all the text.", 80],
|
549 |
+
# ],
|
550 |
+
# inputs=[image, prompt, max_tokens],
|
551 |
+
# outputs=video,
|
552 |
+
# fn=generate_video,
|
553 |
+
# cache_examples=True
|
554 |
+
# )
|
|
|
555 |
|
556 |
if __name__ == "__main__":
|
557 |
demo.launch()
|