Create app.py
Browse files
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()
|