Nahrawy commited on
Commit
4c873c8
1 Parent(s): d3b5973

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -114,12 +114,12 @@ with gr.Blocks() as demo:
114
  with gr.Row():
115
  btn = gr.Button("Run")
116
  with gr.Row():
 
117
  gr.Examples(examples=examples,
118
  inputs=[prompts,negative_prompts, in_image],
119
  outputs=out_image,
120
  fn=infer,
121
  cache_examples=True)
122
- gr.Markdown(info)
123
  btn.click(fn=infer, inputs=[prompts,negative_prompts, in_image] , outputs=out_image)
124
 
125
  demo.launch()
 
114
  with gr.Row():
115
  btn = gr.Button("Run")
116
  with gr.Row():
117
+ gr.Markdown(info)
118
  gr.Examples(examples=examples,
119
  inputs=[prompts,negative_prompts, in_image],
120
  outputs=out_image,
121
  fn=infer,
122
  cache_examples=True)
 
123
  btn.click(fn=infer, inputs=[prompts,negative_prompts, in_image] , outputs=out_image)
124
 
125
  demo.launch()