Added some more stop words.

This commit is contained in:
Jeremy Fincher 2004-09-30 20:00:41 +00:00
parent 6ce21297de
commit a30ad667ed

View File

@ -101,19 +101,25 @@ confirms = ['10-4',
'Got it', 'Got it',
'Gotcha', 'Gotcha',
'I hear ya'] 'I hear ya']
initialIs = {'who': '<reply>', NORESPONSE = '<reply>'
'what': '<reply>', initialIs = {'who': NORESPONSE,
'when': '<reply>', 'what': NORESPONSE,
'where': '<reply>', 'when': NORESPONSE,
'why': '<reply>', 'where': NORESPONSE,
'it': '<reply>', 'why': NORESPONSE,
'it': NORESPONSE,
'that': NORESPONSE,
'this': NORESPONSE,
} }
initialAre = {'who': '<reply>', initialAre = {'who': NORESPONSE,
'what': '<reply>', 'what': NORESPONSE,
'when': '<reply>', 'when': NORESPONSE,
'where': '<reply>', 'where': NORESPONSE,
'why': '<reply>', 'why': NORESPONSE,
'it': '<reply>', 'it': NORESPONSE,
'they': NORESPONSE,
'these': NORESPONSE,
'those': NORESPONSE,
'roses': 'red', 'roses': 'red',
'violets': 'blue', 'violets': 'blue',
} }