наверняка простой вопрос, но только начинаю писать, и ничего не могу найти в интеренте пишу простую клаву, но callback_data не работает
import config
import telebot
import types
import sqlite3
from telebot import types
bot = telebot.TeleBot(config.token)
@bot.message_handler(content_types=["text"])
def phone(message):
    bot.send_message(message.chat.id, message.text)
    keyboard = types.InlineKeyboardMarkup()
    callback_button2 = types.InlineKeyboardButton(text="Нажми меня2", callback_data='sadsasdasdd')
    callback_button = types.InlineKeyboardButton(text="Нажми меня", callback_data='sadsad')
    keyboard.add(callback_button2, callback_button)
    bot.send_message(message.chat.id, "Привет! Нажми на кнопку.",
                                 reply_markup=keyboard)
if __name__ == '__main__':
  bot.polling()