I have this code:
def initiate_sticker_set(update, context):
context.bot.send_message(update.message.chat.id, "initiate sticker set")
initiate_sticker_set_handler = MessageHandler(Filters.text("hello"), initiate_sticker_set)
dispatcher.add_handler(initiate_sticker_set_handler)
I want this Filter to catch not only plain text messages, but also documents with description "hello". How to do it?