Omnibus commited on
Commit
09b1b4d
·
1 Parent(s): 19fa835

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -12
app.py CHANGED
@@ -228,18 +228,19 @@ with gr.Blocks(css="cake.css") as myface:
228
  gr.Textbox(label="", lines=8, interactive=True)
229
 
230
  with gr.Box(visible=True) as timo:
231
- with gr.Column():
232
- input_text=gr.Textbox(label="Short Prompt")
233
- prompt=gr.Textbox(label="Text to Image",visible=True)
234
- with gr.Column():
235
- with gr.Row():
236
- with gr.Column():
237
- see_prompts=gr.Button("Magic Prompt")
238
- with gr.Row():
239
- with gr.Column():
240
- run=gr.Button("Launch")
241
- with gr.Column():
242
- clear_btn=gr.Button("Clear")
 
243
  with gr.Row():
244
  output1=gr.Image(label=(f"{model_1}"),visible=True)
245
  output2=gr.Image(label=(f"{model_2}"),visible=True)
 
228
  gr.Textbox(label="", lines=8, interactive=True)
229
 
230
  with gr.Box(visible=True) as timo:
231
+ with gr.Row():
232
+ with gr.Column():
233
+ input_text=gr.Textbox(label="Short Prompt")
234
+ prompt=gr.Textbox(label="Text to Image",visible=True)
235
+ with gr.Column():
236
+ with gr.Row():
237
+ with gr.Column():
238
+ see_prompts=gr.Button("Magic Prompt")
239
+ with gr.Row():
240
+ with gr.Column():
241
+ run=gr.Button("Launch")
242
+ with gr.Column():
243
+ clear_btn=gr.Button("Clear")
244
  with gr.Row():
245
  output1=gr.Image(label=(f"{model_1}"),visible=True)
246
  output2=gr.Image(label=(f"{model_2}"),visible=True)