a | b/modules/chatbot/const.py | ||
---|---|---|---|
1 | CONTRACTIONS = { |
||
2 | "won't": "will not", |
||
3 | "can't": "can not", |
||
4 | "n't": " not", |
||
5 | "'re": " are", |
||
6 | "'s": " is", |
||
7 | "'d": " would", |
||
8 | "'ll": " will", |
||
9 | "'ve": " have", |
||
10 | "'m": " am", |
||
11 | "won\’t": "will not", |
||
12 | "can\’t": "can not", |
||
13 | "n\’t": " not", |
||
14 | "\’re": " are", |
||
15 | "\’s": " is", |
||
16 | "\’d": " would", |
||
17 | "\’ll": " will", |
||
18 | "\’ve": " have", |
||
19 | "\’m": " am", |
||
20 | } |