Hi There!
I have a chatbot which contains n
number of AIML files. each AIML files are related to different topics. but it may contain same patterns which causing a conflict while getting a reply from the chatbot. I wanna identify which topic the user is looking for.
So how can I configure my chatbot according to this requirement?
AIML file 1
<category>
<pattern>ABC</pattern>
<template>abcdefghijklmnopqrstuvwxyz</template>
</category>
AIML file 2
<category>
<pattern>ABC</pattern>
<template>1234567890ABCD</template>
</category>
Both are associated with a single chatbot. So as an end user I want to get the answer from AIML file 2
. How can I make my chatbot to understand my needs using program-o