Spaces:
Runtime error
Runtime error
Update template/app.py
Browse files- template/app.py +2 -2
template/app.py
CHANGED
@@ -107,9 +107,9 @@ with gr.Blocks(css=css) as demo:
|
|
107 |
|
108 |
with gr.Column(scale=55):
|
109 |
with gr.Group():
|
110 |
-
with gr.Row(
|
111 |
prompt = gr.Textbox(label="Prompt", show_label=False, max_lines=2,placeholder=f"{prefix} [your prompt]").style(container=False)
|
112 |
-
generate = gr.Button(value="Generate")
|
113 |
|
114 |
image_out = gr.Image(height=512)
|
115 |
error_output = gr.Markdown()
|
|
|
107 |
|
108 |
with gr.Column(scale=55):
|
109 |
with gr.Group():
|
110 |
+
with gr.Row():
|
111 |
prompt = gr.Textbox(label="Prompt", show_label=False, max_lines=2,placeholder=f"{prefix} [your prompt]").style(container=False)
|
112 |
+
generate = gr.Button(value="Generate").style(rounded=(False, True, True, False))
|
113 |
|
114 |
image_out = gr.Image(height=512)
|
115 |
error_output = gr.Markdown()
|