ChatBot / telegram_bot.py
syedmoinms's picture
Update telegram_bot.py
04fd1be verified
raw
history blame contribute delete
363 Bytes
import telebot
import requests
TOKEN = "7881901341:AAEaE5gndeORmCuyzSwOyf2ELFLXHneCpiw"
bot = telebot.TeleBot(TOKEN)
@bot.message_handler(func=lambda message: True)
def chat(message):
response = requests.get(f"https://syedmoinms-chatbot.hf.space/chat?msg={message.text}").json()
bot.reply_to(message, response["response"])
bot.polling()