ericjedha commited on
Commit
da5e56d
·
1 Parent(s): 63a6899

button label

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -13,7 +13,7 @@ with gr.Blocks() as demo:
13
  sms = gr.Textbox(label = "SMS à checker")
14
  spam_check_btn = gr.Button(label="Check")
15
  with gr.Column():
16
- result = gr.Textbox(label="Résultat de l'Analyse")
17
 
18
  spam_check_btn.click(check_spam, input = sms, outputs = result)
19
 
 
13
  sms = gr.Textbox(label = "SMS à checker")
14
  spam_check_btn = gr.Button(label="Check")
15
  with gr.Column():
16
+ result = gr.Textbox(value="Résultat de l'Analyse")
17
 
18
  spam_check_btn.click(check_spam, input = sms, outputs = result)
19