Update app.py
Browse files
app.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
-
sky =
|
| 4 |
-
|
| 5 |
star = 'https://huggingface.co/spaces/Omnibus/game-test/resolve/main/assets/star.png'
|
| 6 |
bomb = 'https://huggingface.co/spaces/Omnibus/game-test/resolve/main/assets/bomb.png'
|
| 7 |
dude = 'https://huggingface.co/spaces/Omnibus/game-test/resolve/main/assets/dude.png'
|
|
@@ -10,7 +10,7 @@ with gr.Blocks() as app:
|
|
| 10 |
|
| 11 |
<div id="demo">
|
| 12 |
<iframe
|
| 13 |
-
src="https://omnibus-game-test-static.static.hf.space?sky={sky}&
|
| 14 |
frameborder="0"
|
| 15 |
width="100%"
|
| 16 |
></iframe>
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
+
sky = "https://huggingface.co/spaces/Omnibus/game-test/resolve/main/assets/sky.png"
|
| 4 |
+
platform = 'https://huggingface.co/spaces/Omnibus/game-test/resolve/main/assets/platform.png'
|
| 5 |
star = 'https://huggingface.co/spaces/Omnibus/game-test/resolve/main/assets/star.png'
|
| 6 |
bomb = 'https://huggingface.co/spaces/Omnibus/game-test/resolve/main/assets/bomb.png'
|
| 7 |
dude = 'https://huggingface.co/spaces/Omnibus/game-test/resolve/main/assets/dude.png'
|
|
|
|
| 10 |
|
| 11 |
<div id="demo">
|
| 12 |
<iframe
|
| 13 |
+
src="https://omnibus-game-test-static.static.hf.space?sky={sky}&platform={platform}&star={star}&bomb={bomb}&dude={dude}"
|
| 14 |
frameborder="0"
|
| 15 |
width="100%"
|
| 16 |
></iframe>
|