Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -193,7 +193,7 @@ def play_turn(human_response, loc, player, cur, custom_token, request: gr.Reques
|
|
| 193 |
# --------------------------------------------------------------------------
|
| 194 |
# LAYOUT DESIGN WITH INTEGRATED GALLERY BUILDER
|
| 195 |
# --------------------------------------------------------------------------
|
| 196 |
-
with gr.Blocks(
|
| 197 |
gr.Markdown("# ⚔️ RPG Sandbox")
|
| 198 |
gr.Markdown("## You can find your adventure recap below.")
|
| 199 |
|
|
@@ -253,4 +253,4 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
|
| 253 |
user_input.submit(**turn_config)
|
| 254 |
|
| 255 |
if __name__ == "__main__":
|
| 256 |
-
demo.queue().launch(share=True)
|
|
|
|
| 193 |
# --------------------------------------------------------------------------
|
| 194 |
# LAYOUT DESIGN WITH INTEGRATED GALLERY BUILDER
|
| 195 |
# --------------------------------------------------------------------------
|
| 196 |
+
with gr.Blocks() as demo:
|
| 197 |
gr.Markdown("# ⚔️ RPG Sandbox")
|
| 198 |
gr.Markdown("## You can find your adventure recap below.")
|
| 199 |
|
|
|
|
| 253 |
user_input.submit(**turn_config)
|
| 254 |
|
| 255 |
if __name__ == "__main__":
|
| 256 |
+
demo.queue().launch(share=True, theme=gr.themes.Soft())
|