def user_input(message="Hello"): reply = None while not reply: reply = recognize() communicator.send_to_ui("user", reply) return reply.lower()
def say(what): command = { "Darwin": "say", "Linux": "espeak" }[platform.system()] call([command, what]) communicator.send_to_ui("jeeves", what)
def user_input(message): print(message) reply = None while not reply: reply = recognize() communicator.send_to_ui("user", reply) return reply
def __init__(self, sentence): communicator.send_to_ui("user", sentence) self.words = nltk.word_tokenize(sentence)
def __init__(self, sentence): communicator.send_to_ui("user", sentence) sentence = self.command_exists(sentence) self.words = nltk.word_tokenize(sentence) print self.words
def say(what): command = {"Darwin": "say", "Linux": "espeak"}[platform.system()] call([command, what]) communicator.send_to_ui("jeeves", what)