Paper2Agent commited on
Commit
86821cb
·
verified ·
1 Parent(s): d586f36

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -0
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()