@dp.message_handler(content_types = ["text"])
async def send_text(message):
if message.text.lower() == "hello":
await bot.send_message(message.chat.id, "hi there")
elif message.text.lower() == 'bye':
await bot.send_message(message.chat.id, 'bb :(')