Exemple #1
0
def user_input(message="Hello"):
    reply = None

    while not reply:
        reply = recognize()
    communicator.send_to_ui("user", reply)
    return reply.lower()
Exemple #2
0
def user_input(message="Hello"):
    reply = None

    while not reply:
        reply = recognize()
    communicator.send_to_ui("user", reply)
    return reply.lower()
Exemple #3
0
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)
Exemple #6
0
 def __init__(self, sentence):
     communicator.send_to_ui("user", sentence)
     sentence = self.command_exists(sentence)
     self.words = nltk.word_tokenize(sentence)
     print self.words
Exemple #7
0
 def __init__(self, sentence):
     communicator.send_to_ui("user", sentence)
     sentence = self.command_exists(sentence)
     self.words = nltk.word_tokenize(sentence)
     print self.words
Exemple #8
0
def say(what):
    command = {"Darwin": "say", "Linux": "espeak"}[platform.system()]

    call([command, what])
    communicator.send_to_ui("jeeves", what)
Exemple #9
0
 def __init__(self, sentence):
     communicator.send_to_ui("user", sentence)
     self.words = nltk.word_tokenize(sentence)