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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -13
app.py CHANGED
@@ -228,19 +228,18 @@ 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.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)
 
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)