import aiml k=aiml.Kernel() #k.bootstrap(learnFiles="aiml_files/std-startup.xml", commands="load aiml b") k.bootstrap(learnFiles="aiml_files/blackjack.aiml", commands="blackjack") #k.bootstrap(learnFiles="aiml_files/German-standalone.aiml") while True: print k.respond(raw_input("> ")) """ from twisted.python import log from kippo.core import honeypot learnFiles="std-startup.xml" class HalCommand(honeypot.HoneyPotCommand): k = None @staticmethod def init(): HalCommand.k = aiml.Kernel() HalCommand.k.bootstrap(learnFiles=learnFiles, commands="load aiml b") def start(self): from random import randint token = "token_%s" % (0,10000) self.write("HAL: Am I playing a man or a machine?... This is a character that thinks rather than acts\n") self.write("You: ") self.callbacks = [ lambda line: self.respond(line, token) ] def respond(self,line,token) resp = "HAL: %s" % HalCommand.k.respond(line, sessionID=token) self.write(resp) self.callbacks.append(lambda line: self.respond(line, token)) def lineReceived(self,line): self.callbacks.pop(0)(line) HalCommand.init() """