diff --git a/src/telegram/telegram_bot.py b/src/telegram/telegram_bot.py index ddd24ed..cb8f2a3 100644 --- a/src/telegram/telegram_bot.py +++ b/src/telegram/telegram_bot.py @@ -32,7 +32,7 @@ def __init__(self, context_filepath, telegram_token, authorized_users): # Handle commands command_handlers = [ - (["new"], self.new_conversation_command_handler), + (["new", "n"], self.new_conversation_command_handler), (["retry", "r"], self.retry_command_handler), (["reply", "rep"], self.reply_command_handler), (["undo", "u"], self.undo_command_handler),