MaxMilan1 commited on
Commit
f0f8ecd
·
1 Parent(s): fa0ee64
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -20,7 +20,7 @@ with gr.Blocks(_TITLE) as ShoeGen:
20
  prompt = gr.Textbox(lines=3, label="Enter a prompt")
21
  neg_prompt = gr.Textbox(lines=3, label="Enter a negative prompt")
22
  with gr.Column():
23
- button_gen = gr.Button(label="Generate Image")
24
  output = gr.Image(label="Generated Image")
25
 
26
  button_gen.click(generate_image, inputs=[prompt, neg_prompt], outputs=output)
 
20
  prompt = gr.Textbox(lines=3, label="Enter a prompt")
21
  neg_prompt = gr.Textbox(lines=3, label="Enter a negative prompt")
22
  with gr.Column():
23
+ button_gen = gr.Button("Generate Image")
24
  output = gr.Image(label="Generated Image")
25
 
26
  button_gen.click(generate_image, inputs=[prompt, neg_prompt], outputs=output)