Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -2,4 +2,4 @@ import gradio as gr
|
|
2 |
title = "Text to image with SDv1.5 in Gradio"
|
3 |
description = "Type input area your prompt and wait till return an image about your prompt"
|
4 |
text_to_image = gr.Interface.load("huggingface/runwayml/stable-diffusion-v1-5")
|
5 |
-
gr.Interface(fn=text_to_image, inputs="text", outputs="image", title=title, description=description).launch()
|
|
|
2 |
title = "Text to image with SDv1.5 in Gradio"
|
3 |
description = "Type input area your prompt and wait till return an image about your prompt"
|
4 |
text_to_image = gr.Interface.load("huggingface/runwayml/stable-diffusion-v1-5")
|
5 |
+
gr.Interface(fn=text_to_image, inputs="text", outputs="image", title=title, description=description).launch(share=True)
|