diff --git a/tt/plugins/default_plugins/llm_plugin.py b/tt/plugins/default_plugins/llm_plugin.py index c1c5a4890..ddb2136a4 100644 --- a/tt/plugins/default_plugins/llm_plugin.py +++ b/tt/plugins/default_plugins/llm_plugin.py @@ -38,7 +38,7 @@ async def handle_message(self, msg): command_mapping = { settings.bot_command_info: self.llm.get_info, - settings.bot_command_aimode: self.llm.switch_continous_mode, + # settings.bot_command_aimode: self.llm.switch_continous_mode, settings.bot_command_aiclear: self.llm.clear_chat_history, settings.bot_command_aiexport: self.llm.export_chat_history, settings.bot_command_aichat: lambda: self.llm.chat(str(args)),