I'm starting a project with Python which uses AIML, when I run the script It gives me a 'Not match found' error. This is the Python code:
import aiml
kernel = aiml.Kernel()
kernel.learn("bot.aiml")
while True:
print kernel.respond(raw_input("\n>>"))
Just a simple AIML kernel. Is it something wrong with it?