Update GBConversationalService.ts

This commit is contained in:
PH Nascimento 2020-12-07 18:25:00 -03:00 committed by GitHub
parent 886897fd7d
commit 1c5434eb9f

View file

@ -580,7 +580,9 @@ export class GBConversationalService {
}
text = text.toLowerCase();
text = text.replace('who´s', 'who is');
text = text.replace('who\'s', 'who is');
text = text.replace('what´s', 'what is');
text = text.replace('what\'s', 'what is');
text = text.replace('?', ' ');
text = text.replace('!', ' ');