mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 19:19:32 +01:00
Added some more stop words.
This commit is contained in:
parent
6ce21297de
commit
a30ad667ed
@ -101,19 +101,25 @@ confirms = ['10-4',
|
||||
'Got it',
|
||||
'Gotcha',
|
||||
'I hear ya']
|
||||
initialIs = {'who': '<reply>',
|
||||
'what': '<reply>',
|
||||
'when': '<reply>',
|
||||
'where': '<reply>',
|
||||
'why': '<reply>',
|
||||
'it': '<reply>',
|
||||
NORESPONSE = '<reply>'
|
||||
initialIs = {'who': NORESPONSE,
|
||||
'what': NORESPONSE,
|
||||
'when': NORESPONSE,
|
||||
'where': NORESPONSE,
|
||||
'why': NORESPONSE,
|
||||
'it': NORESPONSE,
|
||||
'that': NORESPONSE,
|
||||
'this': NORESPONSE,
|
||||
}
|
||||
initialAre = {'who': '<reply>',
|
||||
'what': '<reply>',
|
||||
'when': '<reply>',
|
||||
'where': '<reply>',
|
||||
'why': '<reply>',
|
||||
'it': '<reply>',
|
||||
initialAre = {'who': NORESPONSE,
|
||||
'what': NORESPONSE,
|
||||
'when': NORESPONSE,
|
||||
'where': NORESPONSE,
|
||||
'why': NORESPONSE,
|
||||
'it': NORESPONSE,
|
||||
'they': NORESPONSE,
|
||||
'these': NORESPONSE,
|
||||
'those': NORESPONSE,
|
||||
'roses': 'red',
|
||||
'violets': 'blue',
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user