Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -2,7 +2,6 @@ import gradio as gr
|
|
2 |
import os
|
3 |
from share_btn import community_icon_html, loading_icon_html, share_js
|
4 |
|
5 |
-
|
6 |
text_gen = gr.Interface.load(name="spaces/Gustavosta/MagicPrompt-Stable-Diffusion")
|
7 |
stable_diffusion = gr.Blocks.load(name="spaces/runwayml/stable-diffusion-v1-5")
|
8 |
|
@@ -12,7 +11,6 @@ stable_diffusion = gr.Blocks.load(name="spaces/runwayml/stable-diffusion-v1-5")
|
|
12 |
def get_images(prompt):
|
13 |
gallery_dir = stable_diffusion(prompt, fn_index=2)
|
14 |
sd_output = [os.path.join(gallery_dir, image) for image in os.listdir(gallery_dir)]
|
15 |
-
|
16 |
return sd_output, gr.update(visible=True), gr.update(visible=True), gr.update(visible=True)
|
17 |
|
18 |
def get_prompts(prompt_text):
|
|
|
2 |
import os
|
3 |
from share_btn import community_icon_html, loading_icon_html, share_js
|
4 |
|
|
|
5 |
text_gen = gr.Interface.load(name="spaces/Gustavosta/MagicPrompt-Stable-Diffusion")
|
6 |
stable_diffusion = gr.Blocks.load(name="spaces/runwayml/stable-diffusion-v1-5")
|
7 |
|
|
|
11 |
def get_images(prompt):
|
12 |
gallery_dir = stable_diffusion(prompt, fn_index=2)
|
13 |
sd_output = [os.path.join(gallery_dir, image) for image in os.listdir(gallery_dir)]
|
|
|
14 |
return sd_output, gr.update(visible=True), gr.update(visible=True), gr.update(visible=True)
|
15 |
|
16 |
def get_prompts(prompt_text):
|