pepereeee commited on
Commit
0352e1e
1 Parent(s): 3dd37c8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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