hra commited on
Commit
39e49d8
1 Parent(s): 48e0d06

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -187,11 +187,12 @@ with gr.Blocks() as demo:
187
  btn = gr.Button("Generate")
188
  with gr.Column():
189
  output_image1 = gr.components.Image(label="Your tee shirt")
 
190
  output_image2 = gr.components.Image(label="Your tee shirt")
191
 
192
 
193
  btn.click(getadvertisement,inputs=[textbox], outputs=[output_image1,output_image2])
194
- examples = gr.Examples(examples=['anime art of man fighting','intricate skull concept art','heavy metal band album cover','abstract art of plants',],
195
  inputs=[textbox])
196
 
197
 
 
187
  btn = gr.Button("Generate")
188
  with gr.Column():
189
  output_image1 = gr.components.Image(label="Your tee shirt")
190
+ with gr.Column():
191
  output_image2 = gr.components.Image(label="Your tee shirt")
192
 
193
 
194
  btn.click(getadvertisement,inputs=[textbox], outputs=[output_image1,output_image2])
195
+ examples = gr.Examples(examples=['anime art of tokyo','intricate skull concept art','heavy metal band album cover','abstract art of plants',],
196
  inputs=[textbox])
197
 
198