SunderAli17 commited on
Commit
5022ba1
1 Parent(s): 5bddc8c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -126,7 +126,7 @@ def infer(prompt,
126
 
127
 
128
  examples = [
129
- ["image/SunderAli_Khowaja.png", "wearing a full suit sitting in a restaurant with candle lights"]
130
  ]
131
 
132
 
@@ -214,7 +214,7 @@ with gr.Blocks(js = js_func, theme = theme) as SAK:
214
  gr.Examples(
215
  fn = infer,
216
  examples = examples,
217
- inputs = [image, prompt],
218
  outputs = [result, seed_used],
219
  )
220
 
 
126
 
127
 
128
  examples = [
129
+ ["wearing a full suit sitting in a restaurant with candle lights", "image/SunderAli_Khowaja.png"]
130
  ]
131
 
132
 
 
214
  gr.Examples(
215
  fn = infer,
216
  examples = examples,
217
+ inputs = [prompt, image],
218
  outputs = [result, seed_used],
219
  )
220