Omnibus commited on
Commit
6634db1
1 Parent(s): fc4fade

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -0
app.py ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+
4
+ with gr.Blocks() as app:
5
+ gr.HTML("""
6
+ <div id="demo">
7
+ <iframe
8
+ src="https://omnibus-game-test-static.static.hf.space"
9
+ frameborder="0"
10
+ width="850"
11
+ height="450"
12
+ ></iframe>
13
+ </div>
14
+ """)
15
+
16
+ app.launch()