Spaces:
Runtime error
Runtime error
File size: 363 Bytes
b74435b 04fd1be b74435b |
1 2 3 4 5 6 7 8 9 10 11 12 |
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() |