Spaces:
Runtime error
Runtime error
| import telebot | |
| import requests | |
| TOKEN = "7881901341:AAEaE5gndeORmCuyzSwOyf2ELFLXHneCpiw" | |
| bot = telebot.TeleBot(TOKEN) | |
| 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() |