rajistics commited on
Commit
564ec1c
·
1 Parent(s): d250ad6

fixed b2 error

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -30,9 +30,9 @@ with demo:
30
  text = gr.Textbox()
31
  b1.click(speech_to_text, inputs=audio_file, outputs=text)
32
 
33
- stext = gr.Textbox()
34
  b2 = gr.Button("Summarize Text")
35
- b3.click(summarize_text, inputs=text, outputs=stext)
 
36
 
37
  b3 = gr.Button("Classify Sentiment")
38
  label = gr.Label()
 
30
  text = gr.Textbox()
31
  b1.click(speech_to_text, inputs=audio_file, outputs=text)
32
 
 
33
  b2 = gr.Button("Summarize Text")
34
+ stext = gr.Textbox()
35
+ b2.click(summarize_text, inputs=text, outputs=stext)
36
 
37
  b3 = gr.Button("Classify Sentiment")
38
  label = gr.Label()