fix(basic.gblib): update ChatServices.ts #420

Closed
eltociear wants to merge 2540 commits from patch-1 into main
Showing only changes of commit 88630e6b7e - Show all commits

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('!', ' ');