File size: 541 Bytes
b6b08f6
af2f25b
b6b08f6
 
af2f25b
bf18b4c
af2f25b
8c0c91d
 
af2f25b
 
 
 
 
 
 
 
 
8c0c91d
6cf3239
af2f25b
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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(value="Q",visible=False)
def ac(h=h):
    print(h)
    print(o)
    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()
    elif h != o:
        print("no")
        pass
ac()