tonyassi commited on
Commit
c2deaca
·
verified ·
1 Parent(s): c4bca75

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -8,6 +8,6 @@ with gr.Blocks() as demo:
8
  img = gr.Image()
9
  textbox = gr.Textbox()
10
  button = gr.Button("Run")
11
- btn.click(fn=generate, inputs=img, outputs=textbox)
12
 
13
  demo.launch()
 
8
  img = gr.Image()
9
  textbox = gr.Textbox()
10
  button = gr.Button("Run")
11
+ button.click(fn=generate, inputs=img, outputs=textbox)
12
 
13
  demo.launch()