Spaces:
Running
Running
Upload app.py
Browse files
app.py
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
|
| 3 |
+
def show_video():
|
| 4 |
+
return "AlphaGenome Agent Demo 1 with Chatbot interface.mp4"
|
| 5 |
+
|
| 6 |
+
iface = gr.Interface(
|
| 7 |
+
fn=show_video,
|
| 8 |
+
inputs=None,
|
| 9 |
+
outputs=gr.Video(label="AlphaGenome Agent Demo 1 with Chatbot interface")
|
| 10 |
+
)
|
| 11 |
+
|
| 12 |
+
iface.launch()
|