Hey guys…. I would like to restate my earlier AIML question…
How do I get these 3 statements and responses?
1 Hi => Hello
2 Hi can we talk => yes, let’s talk
3 Can we talk about you => I would prefer to talk about you
These rules:
<category>HI ^</pattern><template>Hello</template></category>
<category>^ CAN WE TALK ^</pattern><template>Yes, let’s talk</template></category>
gives
1 Hi => Hello
2 Hi can we talk => Hello
<category>HI ^</pattern><template>Hello</template></category>
<category># CAN WE TALK #</pattern><template>Yes, let’s talk</template></category>
1 Hi => Hello
2 Hi can we talk => yes, let’s talk
If I add a rule…
<category># CAN WE TALK ABOUT YOU #</pattern>
<template>I would prefer we talk about you.</template></category>
1 Hi => Hello
2 Hi can we talk => yes, let’s talk
3 can we talk about you? => yes, let’s talk
I can’t find a way to get third response.