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()