makhtar7186 commited on
Commit
204e70e
·
verified ·
1 Parent(s): 9a835b3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -12,8 +12,10 @@ web_app = Flask(__name__)
12
 
13
  @web_app.route('/')
14
  def home():
15
- return "Bot Telegram RAG actif sur Hugging Face \n\n chatbot link : https://t.me/Emfaye01Bot"
16
-
 
 
17
  def keep_alive():
18
  Thread(target=lambda: web_app.run(host="0.0.0.0", port=7860)).start()
19
 
 
12
 
13
  @web_app.route('/')
14
  def home():
15
+ return """
16
+ <h2>🤖 Bot Telegram RAG actif sur Hugging Face</h2>
17
+ <p>Chatbot link : <a href="https://t.me/Emfaye01Bot" target="_blank">https://t.me/Emfaye01Bot</a></p>
18
+ """
19
  def keep_alive():
20
  Thread(target=lambda: web_app.run(host="0.0.0.0", port=7860)).start()
21