not-lain commited on
Commit
ff8d629
·
1 Parent(s): 59e31ff
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -217,7 +217,7 @@ def rmbg(image, url):
217
  return image
218
 
219
 
220
- def placeholder(img):
221
  return img
222
 
223
 
@@ -226,7 +226,7 @@ rmbg_tab = gr.Interface(
226
  )
227
 
228
  outpaint_tab = gr.Interface(
229
- fn=placeholder, inputs=["image"], outputs=["image"], api_name="outpainting"
230
  )
231
 
232
  demo = gr.TabbedInterface(
 
217
  return image
218
 
219
 
220
+ def placeholder(img,*args):
221
  return img
222
 
223
 
 
226
  )
227
 
228
  outpaint_tab = gr.Interface(
229
+ fn=placeholder, inputs=["image","text",gr.Dropdown(["down","up","left","right","middle"])], outputs=["image"], api_name="outpainting"
230
  )
231
 
232
  demo = gr.TabbedInterface(