Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -10,4 +10,4 @@ def infer(prompt):
|
|
| 10 |
image = pipe(prompt).images[0]
|
| 11 |
return image
|
| 12 |
|
| 13 |
-
gr.Interface(fn=infer, inputs="text", outputs="image").launch()
|
|
|
|
| 10 |
image = pipe(prompt).images[0]
|
| 11 |
return image
|
| 12 |
|
| 13 |
+
gr.Interface(fn=infer, inputs="text", outputs="image").launch(share=True)
|