File size: 525 Bytes
b95388b
 
 
26f62c4
b95388b
 
 
26f62c4
b95388b
 
 
26f62c4
b95388b
 
 
26f62c4
b95388b
 
 
26f62c4
b95388b
 
 
26f62c4
b95388b
26f62c4
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
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)