Update app.py
Browse files
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=
|
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()
|