Commit
·
80b4d52
1
Parent(s):
7c8a4c3
webui.py
CHANGED
|
@@ -11,7 +11,7 @@ with block:
|
|
| 11 |
with gr.Column():
|
| 12 |
prompt = gr.Textbox(label="Prompt", value='a handsome man in forest')
|
| 13 |
run_button = gr.Button(label="Run")
|
| 14 |
-
result_gallery = gr.Gallery(label='Output', show_label=False, elem_id="gallery", height=
|
| 15 |
run_button.click(fn=generate_clicked, inputs=[prompt], outputs=[result_gallery])
|
| 16 |
|
| 17 |
|
|
|
|
| 11 |
with gr.Column():
|
| 12 |
prompt = gr.Textbox(label="Prompt", value='a handsome man in forest')
|
| 13 |
run_button = gr.Button(label="Run")
|
| 14 |
+
result_gallery = gr.Gallery(label='Output', show_label=False, elem_id="gallery", height=1280)
|
| 15 |
run_button.click(fn=generate_clicked, inputs=[prompt], outputs=[result_gallery])
|
| 16 |
|
| 17 |
|