cancel
Showing results for 
Search instead for 
Did you mean: 

FAQ Chatbot - Names in questions

former_member6661
Participant
0 Kudos
183

Hello! I created a FAQ Chatbot... Questions have names of persons... chatbot failed when try to do questions about of persons...

View Entire Topic
former_member523146
Participant
0 Kudos

Besides the points shared by @gabriele.buchner, the FAQ bot relies on actual natural language questions (and answers 😉 ) that go beyond keywords as shown in your screenshots and thus, is not the correct tool for the job at hand.

Your usecase seems to be better suited for an intent/entity-based bot. Names and dates should be recognizable as PERSON and DATE entities. You could create skills that trigger different actions depending on the values of PERSON and DATE entities to define the correct response. Additionally, you could add custom restricted entities to handle edge-cases. Another established pattern would be to maintain the mapping (Name, Date) -> Task in your backend, let CAI take care of recognizing the PERSON & DATE entities and fetch the task from your backend.

However, those solutions are sadly more work than just uploading a CSV file to a FAQ bot.