File size: 612 Bytes
b95388b
 
 
26f62c4
b95388b
 
 
26f62c4
b95388b
 
 
26f62c4
b95388b
 
 
26f62c4
b95388b
 
 
26f62c4
b95388b
 
 
26f62c4
b95388b
26f62c4
e5d2292
66b707b
e5d2292
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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)