Added some more stop words.

This commit is contained in:
Jeremy Fincher 2004-09-30 20:00:41 +00:00
parent 6ce21297de
commit a30ad667ed
1 changed files with 18 additions and 12 deletions

View File

@ -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',
}