xp3857's picture
Update app.py
af2f25b
raw
history blame
No virus
478 Bytes
import gradio as gr
import os
name = "runwayml/stable-diffusion-v1-5"
model = gr.Interface.load(f"models/{name}")
o = os.getenv("P")
h = gr.Textbox(visible=False)
def ac(h=h):
if h == o:
def im_fn(put):
return model(put)
with gr.Blocks() as b:
put = gr.Textbox()
out = gr.Image()
btn = gr.Button()
btn.click(im_fn,put,out)
b.queue(concurrency_count=100).launch()
else:
pass
ac()