def clear_state(chatbot, *args): return chatbot.clear_state(*args) def send_system_nofification(chatbot, *args): return chatbot.send_system_nofification(*args) def build_knowledge_base(chatbot, *args): return chatbot.build_knowledge_base(*args) def change_md(chatbot, *args): return chatbot.change_md(*args) def get_index_file(chatbot, *args): return chatbot.get_index_file(*args) def user(chatbot, *args): return chatbot.user(*args) def bot(chatbot, *args): return chatbot.bot(*args)