Spaces:
Running
on
Zero
Running
on
Zero
Commit
·
3dbefd3
1
Parent(s):
226c5b4
Update app.py
Browse files
app.py
CHANGED
|
@@ -31,7 +31,7 @@ with gr.Blocks() as demo:
|
|
| 31 |
gr.Markdown("## Demo for ['MarioGPT: Open-Ended Text2Level Generation through Large Language Models'](https://github.com/shyamsn97/mario-gpt). Enter a text prompt or select parameters from below!")
|
| 32 |
|
| 33 |
text_prompt = gr.Textbox(value="", label="Enter your MarioGPT prompt. ex: 'many pipes, many enemies, some blocks, low elevation', or compose your prompts below")
|
| 34 |
-
gr.Accordion(label="Compose your prompt", open=False):
|
| 35 |
pipes = gr.Radio(["no", "little", "some", "many"], label="pipes")
|
| 36 |
enemies = gr.Radio(["no", "little", "some", "many"], label="enemies")
|
| 37 |
blocks = gr.Radio(["little", "some", "many"], label="blocks")
|
|
|
|
| 31 |
gr.Markdown("## Demo for ['MarioGPT: Open-Ended Text2Level Generation through Large Language Models'](https://github.com/shyamsn97/mario-gpt). Enter a text prompt or select parameters from below!")
|
| 32 |
|
| 33 |
text_prompt = gr.Textbox(value="", label="Enter your MarioGPT prompt. ex: 'many pipes, many enemies, some blocks, low elevation', or compose your prompts below")
|
| 34 |
+
with gr.Accordion(label="Compose your prompt", open=False):
|
| 35 |
pipes = gr.Radio(["no", "little", "some", "many"], label="pipes")
|
| 36 |
enemies = gr.Radio(["no", "little", "some", "many"], label="enemies")
|
| 37 |
blocks = gr.Radio(["little", "some", "many"], label="blocks")
|