Update app.py
Browse files
app.py
CHANGED
@@ -393,7 +393,7 @@ with gr.Blocks() as demo:
|
|
393 |
like_btn.click(lambda x: vote("π", x), inputs=[chatbot], outputs=feedback_text)
|
394 |
dislike_btn.click(lambda x: vote("π", x), inputs=[chatbot], outputs=feedback_text)
|
395 |
|
396 |
-
|
397 |
gr.Markdown("# Statistiques d'utilisation π")
|
398 |
stats_button = gr.Button("Charger les statistiques")
|
399 |
total_interactions = gr.Textbox(label="Statistiques globales")
|
|
|
393 |
like_btn.click(lambda x: vote("π", x), inputs=[chatbot], outputs=feedback_text)
|
394 |
dislike_btn.click(lambda x: vote("π", x), inputs=[chatbot], outputs=feedback_text)
|
395 |
|
396 |
+
with gr.Tab("Statistiques"):
|
397 |
gr.Markdown("# Statistiques d'utilisation π")
|
398 |
stats_button = gr.Button("Charger les statistiques")
|
399 |
total_interactions = gr.Textbox(label="Statistiques globales")
|