dejinlee commited on
Commit
d8715a2
1 Parent(s): a0c661f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -6,5 +6,5 @@ def draw(sets):
6
  image = pipe(prompt, guidance_scale=10).images[0]
7
  return image
8
 
9
- iface = gr.Interface(fn=greet, inputs="text", outputs="image")
10
  iface.launch()
 
6
  image = pipe(prompt, guidance_scale=10).images[0]
7
  return image
8
 
9
+ iface = gr.Interface(fn=draw, inputs="text", outputs="image")
10
  iface.launch()