Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -457,22 +457,16 @@ h1{text-align:center}
|
|
457 |
|
458 |
with gr.Blocks(css=css, theme="YTheme/Minecraft") as demo:
|
459 |
gr.Markdown(DESCRIPTION)
|
460 |
-
gr.
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
max_lines=1,
|
471 |
-
placeholder="Enter your prompt",
|
472 |
-
container=False,
|
473 |
-
)
|
474 |
-
run_button = gr.Button("Run", scale=0)
|
475 |
-
result = gr.Gallery(label="Result", columns=1, show_label=False)
|
476 |
|
477 |
with gr.Row(visible=True):
|
478 |
grid_size_selection = gr.Dropdown(
|
|
|
457 |
|
458 |
with gr.Blocks(css=css, theme="YTheme/Minecraft") as demo:
|
459 |
gr.Markdown(DESCRIPTION)
|
460 |
+
with gr.Row():
|
461 |
+
prompt = gr.Text(
|
462 |
+
label="Prompt",
|
463 |
+
show_label=False,
|
464 |
+
max_lines=1,
|
465 |
+
placeholder="Enter your prompt",
|
466 |
+
container=False,
|
467 |
+
)
|
468 |
+
run_button = gr.Button("Run", scale=0)
|
469 |
+
result = gr.Gallery(label="Result", columns=1, show_label=False)
|
|
|
|
|
|
|
|
|
|
|
|
|
470 |
|
471 |
with gr.Row(visible=True):
|
472 |
grid_size_selection = gr.Dropdown(
|