We are trying to resolve a use case which responds to FAQs. We tried 2 approaches
- Knowledge Collection.
We added questions and responses like acronyms and definitions. for e.g.
Question is : ACH
Response is: Automated Clearing House
So when user asks What is ACH, Explain ACH, Tell me about ACH etc… the response comes back with Automated Clearing House.
Now if the user asks How do I calculate ACH or What is the role of ACH, the response should be a standard message “Am Sorry, I cannot answer this question”. But the bot responds with “Automate Clearing House” because that’s what matches.
How Do I implement this in Knowledge Collection.
- Dialog Tasks
We tried to do this by creating an Intent which has the utterances like Explain, Tell me about, What is etc… and we created an Entity with Lookup Values which has some of the acronyms like ACH and many more.
Even in this case, when the user asks How do I calculate ACH or What is the role of ACH, the response should be a standard message “Am Sorry, I cannot answer this question”. But the bot responds with “Automate Clearing House” because that’s what matches.
Unable to implement this using Knowledge Collection and Dialog Tasks. Can someone please help???