NLP with AIML
Dear All,
I am implementing chatbot NLP with AIML. when user will send sentences I will tag it with POS tagging (verbs, nouns, pronouns etc) here on based on tagging I need write AIML files with new fashion based on Subject and Action (this will analyzed by POS Tagging). then AIML give responses to end user. for example.
What services provides?==> POS tagging==>find subject and Action==>AIML Layer Responses
My question How I write AIML for this situations
lastly I had written AIML (without NLP) with Database queries like
<category>
show me all restaurants in the state *
</pattern>
<template>
@select * from restaurants where state = ‘<star>’@
</template>
</category> OR can you tell me optimized solution for NLP with AIML