Martial667 commited on
Commit
672ee53
·
verified ·
1 Parent(s): fd14677

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -71,8 +71,13 @@ chatbot = gr.ChatInterface(
71
  )
72
 
73
  with gr.Blocks(theme=theme, css=css) as demo:
 
 
 
74
  with gr.Sidebar():
75
- gr.LoginButton()
 
 
76
  chatbot.render()
77
 
78
 
 
71
  )
72
 
73
  with gr.Blocks(theme=theme, css=css) as demo:
74
+ gr.Markdown("# ✨ Le Chatbot qu'il vous faut")
75
+ gr.Markdown("Une interface intelligente propulsée par DeepSeek AI.", elem_classes="description")
76
+
77
  with gr.Sidebar():
78
+ gr.Markdown("### 🔐 Authentification")
79
+ gr.LoginButton(value="Connexion HF")
80
+ gr.Markdown("Connectez-vous pour utiliser le modèle.")
81
  chatbot.render()
82
 
83