ChenyuRabbitLove's picture
feat:add test API feature
e5d2292
raw
history blame
611 Bytes
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)
def video_bot(video_chatbot, *args):
return video_chatbot.answer_question(*args)