Vivien Chappelier commited on
Commit
ed6eb7f
Β·
1 Parent(s): 812de95
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -7,11 +7,11 @@ pipe.compile()
7
 
8
  prompt = "sailing ship in storm by Rembrandt"
9
 
10
- def greet(name):
11
  output = pipe(prompt, num_inference_steps=50, output_type="pil")
12
  output.images[0].save("result.png")
13
  return output.images[0]
14
 
15
- iface = gr.Interface(fn=greet, inputs=[gr.Textbox(label="Prompt", default=prompt)], outputs=[gr.Image(type="pil")])
16
  iface.launch()
17
 
 
7
 
8
  prompt = "sailing ship in storm by Rembrandt"
9
 
10
+ def generate(name):
11
  output = pipe(prompt, num_inference_steps=50, output_type="pil")
12
  output.images[0].save("result.png")
13
  return output.images[0]
14
 
15
+ iface = gr.Interface(fn=generate, inputs=[gr.Textbox(label="Prompt", value=prompt)], outputs=[gr.Image(type="pil")])
16
  iface.launch()
17