Mrlongpro commited on
Commit
35e2e09
1 Parent(s): 3ec3d92

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -5
app.py CHANGED
@@ -22,12 +22,11 @@ iface = gr.Interface(
22
  fn=run_scripts,
23
  inputs=[
24
  "files",
25
- "file",
26
- gr.inputs.Checkbox(default=False, label="Use only Face Enhancer") # New checkbox input
27
  ],
28
- outputs="files",
29
- title="Face swapper",
30
- description="Upload a target image/video and a source image to swap faces.",
31
  live=False
32
  )
33
 
 
22
  fn=run_scripts,
23
  inputs=[
24
  "files",
25
+ "file"
 
26
  ],
27
+ outputs=["files"],
28
+ title="swapper",
29
+ description="Upload a target image/video and a source image .",
30
  live=False
31
  )
32