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

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

    while not reply:
        reply = recognize()
    communicator.send_to_ui("user", reply)
    return reply.lower()
示例#3
0
def say(what):
    command = {
        "Darwin": "say",
        "Linux": "espeak"
    }[platform.system()]

    call([command, what])
    communicator.send_to_ui("jeeves", what)
示例#4
0
def user_input(message):
    print(message)
    reply = None

    while not reply:
        reply = recognize()
    communicator.send_to_ui("user", reply)
    return reply
示例#5
0
 def __init__(self, sentence):
     communicator.send_to_ui("user", sentence)
     self.words = nltk.word_tokenize(sentence)
示例#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
示例#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
示例#8
0
文件: say.py 项目: sudhamshk/jeeves
def say(what):
    command = {"Darwin": "say", "Linux": "espeak"}[platform.system()]

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