import telebot
from telebot import types
bot = telebot.TeleBot('')
@bot.message_handler(content_types=["text"])
def any_msg(message):
keyboard = types.InlineKeyboardMarkup()
switch_button = types.InlineKeyboardButton(text="Нажми меня", switch_inline_query='')
keyboard.add(switch_button)
bot.send_message(message.chat.id, "Я – сообщение из обычного режима", reply_markup=keyboard)
bot.polling(none_stop=True)