Update app.py
Browse files
app.py
CHANGED
@@ -2,7 +2,7 @@ import gradio as gr
|
|
2 |
|
3 |
proc1 = gr.Interface.load("models/prompthero/funko-diffusion",live=True,preprocess=True, postprocess=False)
|
4 |
|
5 |
-
def send_it1(inputs,proc1=proc1):
|
6 |
output1= await proc1(inputs)
|
7 |
print(output1)
|
8 |
return output1
|
|
|
2 |
|
3 |
proc1 = gr.Interface.load("models/prompthero/funko-diffusion",live=True,preprocess=True, postprocess=False)
|
4 |
|
5 |
+
async def send_it1(inputs,proc1=proc1):
|
6 |
output1= await proc1(inputs)
|
7 |
print(output1)
|
8 |
return output1
|