fffiloni commited on
Commit
a2ddcd6
1 Parent(s): 37beecb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -30,11 +30,13 @@ def infer(image_in):
30
  return img_var
31
 
32
  gr.Interface(
 
 
33
  fn = infer,
34
  inputs = [
35
- gr.Image(type="filepath")
36
  ],
37
  outputs = [
38
- gr.Image()
39
  ]
40
  ).launch()
 
30
  return img_var
31
 
32
  gr.Interface(
33
+ title = "Supa Fast Image Variation",
34
+ description = "Get quick image variation from image input, using moondream1 for caption, and LCM SDXL for image generation",
35
  fn = infer,
36
  inputs = [
37
+ gr.Image(type="filepath", label="Image input")
38
  ],
39
  outputs = [
40
+ gr.Image(label="LCM Image variation")
41
  ]
42
  ).launch()