bot = TelegramClient('bot', api_id, api_hash).start(bot_token='******')
@bot.on(events.NewMessage())
async def support(message):
await bot.send_message(
entity=*****,
file=message.media,
message=message.text,
parse_mode='md',
link_preview=False,
buttons=Button.inline('Click me', 'https://habr.com/'))
bot.run_until_disconnected()