storresbusquets commited on
Commit
eeb493a
·
1 Parent(s): 9d6a48d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -44,7 +44,7 @@ with gr.Blocks() as demo:
44
  text = gr.Textbox(label="Text")
45
  summary = gr.Textbox(label="Summary")
46
  greet_btn = gr.Button("Submit")
47
- clear = gr.ClearnButton([text, summary])
48
  greet_btn.click(fn=greet, inputs=text, outputs=summary, api_name="greet")
49
 
50
 
 
44
  text = gr.Textbox(label="Text")
45
  summary = gr.Textbox(label="Summary")
46
  greet_btn = gr.Button("Submit")
47
+ clear = gr.ClearButton([text, summary])
48
  greet_btn.click(fn=greet, inputs=text, outputs=summary, api_name="greet")
49
 
50