button label
Browse files
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(
|
| 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 |
|